diff options
author | Jean Sacren | 2021-10-11 00:45:24 -0600 |
---|---|---|
committer | Ilya Dryomov | 2021-11-08 03:29:51 +0100 |
commit | a341131eb31e55c31f61c038f152a66634d16095 (patch) | |
tree | b7e6eb8f1ff1468c8e6a58e9b70bcd64e1c5d21f /net | |
parent | 9c43ff4490ef1d721877fdfdb4ff2d9bda93f391 (diff) |
libceph: drop ->monmap and err initialization
Call to build_initial_monmap() is one stone two birds. Explicitly it
initializes err variable. Implicitly it initializes ->monmap via call to
kzalloc(). We should only declare err and ->monmap is taken care of by
ceph_monc_init() prototype.
Signed-off-by: Jean Sacren <sakiwit@gmail.com>
Reviewed-by: Ilya Dryomov <idryomov@gmail.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/ceph/mon_client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ceph/mon_client.c b/net/ceph/mon_client.c index 013cbdb6cfe2..6a6898ee4049 100644 --- a/net/ceph/mon_client.c +++ b/net/ceph/mon_client.c @@ -1153,12 +1153,11 @@ static int build_initial_monmap(struct ceph_mon_client *monc) int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl) { - int err = 0; + int err; dout("init\n"); memset(monc, 0, sizeof(*monc)); monc->client = cl; - monc->monmap = NULL; mutex_init(&monc->mutex); err = build_initial_monmap(monc); |