From: John Spray Date: Fri, 4 Jul 2014 14:55:44 +0000 (+0100) Subject: mon: remove unused attribute notified_global_id X-Git-Tag: v0.84~105^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=52a2bc5f1a1e22c403a1dfcf4de1fd96834b21c5;p=ceph.git mon: remove unused attribute notified_global_id Signed-off-by: John Spray --- diff --git a/src/mon/Session.h b/src/mon/Session.h index 6da8c9ba0a34..e794d6fdb1af 100644 --- a/src/mon/Session.h +++ b/src/mon/Session.h @@ -48,7 +48,6 @@ struct MonSession : public RefCountedObject { MonCap caps; uint64_t auid; uint64_t global_id; - uint64_t notified_global_id; map 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); }