]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mon: remove unused attribute notified_global_id
authorJohn Spray <john.spray@redhat.com>
Fri, 4 Jul 2014 14:55:44 +0000 (15:55 +0100)
committerJohn Spray <john.spray@redhat.com>
Mon, 14 Jul 2014 13:12:36 +0000 (14:12 +0100)
Signed-off-by: John Spray <john.spray@redhat.com>
src/mon/Session.h

index 6da8c9ba0a345bb099d116b8d714bcc854b333fd..e794d6fdb1af9acbf613070d7c6514de3f32565e 100644 (file)
@@ -48,7 +48,6 @@ struct MonSession : public RefCountedObject {
   MonCap caps;
   uint64_t auid;
   uint64_t global_id;
-  uint64_t notified_global_id;
 
   map<string, Subscription*> sub_map;
 
@@ -60,7 +59,7 @@ struct MonSession : public RefCountedObject {
   MonSession(const entity_inst_t& i, Connection *c) :
     con(c), inst(i), closed(false), item(this),
     auid(0),
-    global_id(0), notified_global_id(0), auth_handler(NULL),
+    global_id(0), auth_handler(NULL),
     proxy_con(NULL), proxy_tid(0) {
     time_established = ceph_clock_now(g_ceph_context);
   }