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

« back to all changes in this revision

Viewing changes to src/mds/events/ESession.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:
47
47
    inos(i), inotablev(iv) { }
48
48
 
49
49
  void encode(bufferlist &bl) const {
50
 
    __u8 struct_v = 1;
 
50
    __u8 struct_v = 2;
51
51
    ::encode(struct_v, bl);
 
52
    ::encode(stamp, bl);
52
53
    ::encode(client_inst, bl);
53
54
    ::encode(open, bl);
54
55
    ::encode(cmapv, bl);
58
59
  void decode(bufferlist::iterator &bl) {
59
60
    __u8 struct_v;
60
61
    ::decode(struct_v, bl);
 
62
    if (struct_v >= 2)
 
63
      ::decode(stamp, bl);
61
64
    ::decode(client_inst, bl);
62
65
    ::decode(open, bl);
63
66
    ::decode(cmapv, bl);