From: John Spray Date: Thu, 30 Oct 2014 13:32:13 +0000 (+0000) Subject: ceph: remove unused `map_waiters` from osdc client X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1e617cf48027e0e7c635abddbb636bc78963dfeb;p=ceph-client.git ceph: remove unused `map_waiters` from osdc client This is initialized but never used. Signed-off-by: John Spray --- diff --git a/include/linux/ceph/osd_client.h b/include/linux/ceph/osd_client.h index 03aeb27fcc69..7cb5cea386c8 100644 --- a/include/linux/ceph/osd_client.h +++ b/include/linux/ceph/osd_client.h @@ -197,7 +197,6 @@ struct ceph_osd_client { struct ceph_osdmap *osdmap; /* current map */ struct rw_semaphore map_sem; - struct completion map_waiters; u64 last_requested_map; struct mutex request_mutex; diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c index f3fc54eac09d..bcbd850a1743 100644 --- a/net/ceph/osd_client.c +++ b/net/ceph/osd_client.c @@ -2537,7 +2537,6 @@ int ceph_osdc_init(struct ceph_osd_client *osdc, struct ceph_client *client) osdc->client = client; osdc->osdmap = NULL; init_rwsem(&osdc->map_sem); - init_completion(&osdc->map_waiters); osdc->last_requested_map = 0; mutex_init(&osdc->request_mutex); osdc->last_tid = 0;