]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-client.git/commitdiff
ceph: let osd client clean up for interrupted request
authorAlex Elder <elder@inktank.com>
Mon, 15 Apr 2013 16:18:01 +0000 (11:18 -0500)
committerAlex Elder <elder@inktank.com>
Thu, 18 Apr 2013 02:16:07 +0000 (21:16 -0500)
In ceph_sync_write(), if a safe callback is supplied with a request,
and an error is returned by ceph_osdc_wait_request(), a block of
code is executed to remove the request from the unsafe writes list
and drop references to capabilities acquired just prior to a call to
ceph_osdc_wait_request().

The only function used for this callback is sync_write_commit(),
and it does *exactly* what that block of error handling code does.

Now in ceph_osdc_wait_request(), if an error occurs (due to an
interupt during a wait_for_completion_interruptible() call),
complete_request() gets called, and that calls the request's
safe_callback method if it's defined.

So this means that this cleanup activity gets called twice in this
case, which is erroneous (and in fact leads to a crash).

Fix this by just letting the osd client handle the cleanup in
the event of an interrupt.

This resolves one problem mentioned in:
    http://tracker.ceph.com/issues/4706

Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Yan, Zheng <zheng.z.yan@intel.com>
fs/ceph/file.c

index b7e6caa0ac65121146273094b1ab2367922d7b08..1d8d430dc74ddffb2fe6e2c471bbe6f58e10fa2e 100644 (file)
@@ -595,12 +595,6 @@ more:
                }
                
                ret = ceph_osdc_wait_request(&fsc->client->osdc, req);
-               if (ret < 0 && req->r_safe_callback) {
-                       spin_lock(&ci->i_unsafe_lock);
-                       list_del_init(&req->r_unsafe_item);
-                       spin_unlock(&ci->i_unsafe_lock);
-                       ceph_put_cap_refs(ci, CEPH_CAP_FILE_WR);
-               }
        }
 
        if (file->f_flags & O_DIRECT)