aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/osd_client.c
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2009-12-22 13:29:39 -0500
committerSage Weil <sage@newdream.net>2009-12-23 11:17:19 -0500
commit529cfcc46ffa2cbe4d07641c11e65f67fe7b66e4 (patch)
tree4666fb5c64a1e2d0ebcc8dff5825a882aff86796 /fs/ceph/osd_client.c
parente0e3271074e1ebd0b80a912a457ce03c971bcd66 (diff)
ceph: unregister canceled/timed out osd requests
Canceled or timed out osd requests were getting left in the request list and never deallocated (until umount). Unregister if they are canceled (control-c) or time out. Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/osd_client.c')
-rw-r--r--fs/ceph/osd_client.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ceph/osd_client.c b/fs/ceph/osd_client.c
index b474b3ad61f0..a1800fb63237 100644
--- a/fs/ceph/osd_client.c
+++ b/fs/ceph/osd_client.c
@@ -1071,8 +1071,9 @@ int ceph_osdc_wait_request(struct ceph_osd_client *osdc,
1071 if (rc < 0) { 1071 if (rc < 0) {
1072 mutex_lock(&osdc->request_mutex); 1072 mutex_lock(&osdc->request_mutex);
1073 __cancel_request(req); 1073 __cancel_request(req);
1074 __unregister_request(osdc, req);
1074 mutex_unlock(&osdc->request_mutex); 1075 mutex_unlock(&osdc->request_mutex);
1075 dout("wait_request tid %llu timed out\n", req->r_tid); 1076 dout("wait_request tid %llu canceled/timed out\n", req->r_tid);
1076 return rc; 1077 return rc;
1077 } 1078 }
1078 1079