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

« back to all changes in this revision

Viewing changes to src/mds/events/EImportFinish.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum, Clint Byrum, Micah Gersten
  • Date: 2011-02-12 22:50:26 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110212225026-yyyw4tk0msgql3ul
Tags: 0.24.2-0ubuntu1
[ Clint Byrum <clint@ubuntu.com> ]
* New upstream release. (LP: #658670, LP: #684011)
* debian/patches/fix-mkcephfs.patch: dropped (applied upstream)
* Removed .la files from libceph1-dev, libcrush1-dev and 
  librados1-dev (per Debian policy v3.9.1 10.2).
* debian/control: adding pkg-config as a build dependency
* debian/control: depend on libcrypto++-dev instead of libssl-dev
* debian/watch: added watch file

[ Micah Gersten <micahg@ubuntu.com> ]
* debian/control: add Homepage

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
  }
41
41
 
42
42
  void encode(bufferlist& bl) const {
43
 
    __u8 struct_v = 1;
 
43
    __u8 struct_v = 2;
44
44
    ::encode(struct_v, bl);
 
45
    ::encode(stamp, bl);
45
46
    ::encode(base, bl);
46
47
    ::encode(success, bl);
47
48
  }
48
49
  void decode(bufferlist::iterator &bl) {
49
50
    __u8 struct_v;
50
51
    ::decode(struct_v, bl);
 
52
    if (struct_v >= 2)
 
53
      ::decode(stamp, bl);
51
54
    ::decode(base, bl);
52
55
    ::decode(success, bl);
53
56
  }