diff options
author | Sage Weil <sage@newdream.net> | 2009-12-01 20:23:54 (GMT) |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-12-01 20:23:54 (GMT) |
commit | 34b43a56b9b103a7a820032177131532d9dbdbe8 (patch) | |
tree | 526dc10d39f89589da61c3b9bd82ae35cd1ce385 | |
parent | 75eb3592811028e5b01835126483d115532a3aa1 (diff) | |
download | linux-fsl-qoriq-34b43a56b9b103a7a820032177131532d9dbdbe8.tar.xz |
ceph: plug leak of request_mutex
Fix leak of osd client request_mutex on receiving dup ack.
Signed-off-by: Sage Weil <sage@newdream.net>
-rw-r--r-- | fs/ceph/osd_client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ceph/osd_client.c b/fs/ceph/osd_client.c index 5d30d59..d600073 100644 --- a/fs/ceph/osd_client.c +++ b/fs/ceph/osd_client.c @@ -739,6 +739,7 @@ static void handle_reply(struct ceph_osd_client *osdc, struct ceph_msg *msg) req->r_got_reply = 1; } else if ((flags & CEPH_OSD_FLAG_ONDISK) == 0) { dout("handle_reply tid %llu dup ack\n", tid); + mutex_unlock(&osdc->request_mutex); goto done; } |