~ubuntu-branches/ubuntu/quantal/ceph/quantal

« back to all changes in this revision

Viewing changes to src/messages/MOSDPGLog.h

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-07-16 09:56:24 UTC
  • mfrom: (0.3.11)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: package-import@ubuntu.com-20120716095624-azr2w4hbhei1rxmx
Tags: upstream-0.48
ImportĀ upstreamĀ versionĀ 0.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    bufferlist::iterator p = payload.begin();
71
71
    ::decode(epoch, p);
72
72
    ::decode(info, p);
73
 
    ::decode(log, p);
74
 
    ::decode(missing, p);
 
73
    log.decode(p, info.pgid.pool());
 
74
    missing.decode(p, info.pgid.pool());
75
75
    if (header.version >= 2) {
76
76
      ::decode(query_epoch, p);
77
77
    }