~ubuntu-branches/ubuntu/raring/ceph/raring

« back to all changes in this revision

Viewing changes to src/messages/MStatfs.h

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2012-02-05 10:07:38 UTC
  • mfrom: (1.1.7) (0.1.11 sid)
  • Revision ID: package-import@ubuntu.com-20120205100738-00s0bxx93mamy8tk
Tags: 0.41-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
class MStatfs : public PaxosServiceMessage {
23
23
public:
24
 
  ceph_fsid_t fsid;
 
24
  uuid_d fsid;
25
25
 
26
26
  MStatfs() : PaxosServiceMessage(CEPH_MSG_STATFS, 0) {}
27
 
  MStatfs(const ceph_fsid_t& f, tid_t t, version_t v) :
 
27
  MStatfs(const uuid_d& f, tid_t t, version_t v) :
28
28
    PaxosServiceMessage(CEPH_MSG_STATFS, v), fsid(f) {
29
29
    set_tid(t);
30
30
  }