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

« back to all changes in this revision

Viewing changes to src/mds/LogEvent.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:
51
51
  __u32 _type;
52
52
  loff_t _start_off,_end_off;
53
53
 
 
54
protected:
 
55
  utime_t stamp;
 
56
 
54
57
  friend class MDLog;
55
58
 
56
59
 public:
63
66
  int get_type() { return _type; }
64
67
  loff_t get_start_off() { return _start_off; }
65
68
  loff_t get_end_off() { return _end_off; }
 
69
  utime_t get_stamp() const { return stamp; }
 
70
 
 
71
  void set_stamp(utime_t t) { stamp = t; }
66
72
 
67
73
  // encoding
68
74
  virtual void encode(bufferlist& bl) const = 0;