mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 22:24:11 +08:00
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>
This commit is contained in:
parent
9c43ff4490
commit
a341131eb3
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user