1
0
Fork 0

ceph: make sure request isn't in any waiting list when kicking request.

we may corrupt waiting list if a request in the waiting list is kicked.

Signed-off-by: Yan, Zheng <zyan@redhat.com>
Reviewed-by: Sage Weil <sage@redhat.com>
hifive-unleashed-5.1
Yan, Zheng 2014-09-11 14:28:56 +08:00 committed by Ilya Dryomov
parent 656e438294
commit 03974e8177
1 changed files with 1 additions and 0 deletions

View File

@ -2078,6 +2078,7 @@ static void kick_requests(struct ceph_mds_client *mdsc, int mds)
if (req->r_session &&
req->r_session->s_mds == mds) {
dout(" kicking tid %llu\n", req->r_tid);
list_del_init(&req->r_wait);
__do_request(mdsc, req);
}
}