1
0
Fork 0

libceph: drop unnecessary check from dispatch() in mon_client.c

con->private is set in ceph_con_init() and is never cleared.

Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
alistair/sunxi64-5.5-dsi
Ilya Dryomov 2019-10-14 16:25:32 +02:00
parent 219d54332a
commit d8f544c30b
1 changed files with 0 additions and 3 deletions

View File

@ -1233,9 +1233,6 @@ static void dispatch(struct ceph_connection *con, struct ceph_msg *msg)
struct ceph_mon_client *monc = con->private;
int type = le16_to_cpu(msg->hdr.type);
if (!monc)
return;
switch (type) {
case CEPH_MSG_AUTH_REPLY:
handle_auth_reply(monc, msg);