~ubuntu-branches/ubuntu/precise/ceph/precise-proposed

« back to all changes in this revision

Viewing changes to src/messages/MExportDirNotify.h

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2011-08-28 15:56:16 UTC
  • mfrom: (1.1.4 upstream) (0.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20110828155616-h19o67xdn2sjrh10
Tags: 0.34-1
* New upstream release (closes: #638714).
* Make librbd-dev depends on librados-dev as it uses headers from the latter
  (closes: #636845).
* Add new binary packages, gceph, gceph-dbg and obsync . The libcrush ones
  removed.
* Change to quilt source format and tune packaging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
      bounds.push_back(*i);
60
60
  }
61
61
 
62
 
  void encode_payload() {
 
62
  void encode_payload(CephContext *cct) {
63
63
    ::encode(base, payload);
64
64
    ::encode(ack, payload);
65
65
    ::encode(old_auth, payload);
66
66
    ::encode(new_auth, payload);
67
67
    ::encode(bounds, payload);
68
68
  }
69
 
  void decode_payload() {
 
69
  void decode_payload(CephContext *cct) {
70
70
    bufferlist::iterator p = payload.begin();
71
71
    ::decode(base, p);
72
72
    ::decode(ack, p);