Commit a3da057b authored by Ilya Dryomov's avatar Ilya Dryomov

libceph: clear con->peer_global_seq on RESETSESSION

con->peer_global_seq is part of session state.  Clear it when
the server tells us to reset, not just in ceph_con_close().
Signed-off-by: default avatarIlya Dryomov <idryomov@gmail.com>
parent 5963c3d0
......@@ -659,11 +659,12 @@ static void ceph_con_reset_session(struct ceph_connection *con)
WARN_ON(con->out_msg);
ceph_msg_remove_list(&con->out_queue);
ceph_msg_remove_list(&con->out_sent);
con->connect_seq = 0;
con->out_seq = 0;
con->in_seq = 0;
con->in_seq_acked = 0;
con->connect_seq = 0;
con->peer_global_seq = 0;
}
/*
......@@ -682,7 +683,6 @@ void ceph_con_close(struct ceph_connection *con)
ceph_con_reset_protocol(con);
ceph_con_reset_session(con);
con->peer_global_seq = 0;
cancel_con(con);
mutex_unlock(&con->mutex);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment