提交 e2885f06 编写于 作者: S Sage Weil

ceph: make mds ops interruptible

Signed-off-by: NSage Weil <sage@newdream.net>
上级 cf3e5c40
......@@ -1597,14 +1597,17 @@ int ceph_mdsc_do_request(struct ceph_mds_client *mdsc,
if (!req->r_reply) {
mutex_unlock(&mdsc->mutex);
if (req->r_timeout) {
err = wait_for_completion_timeout(&req->r_completion,
req->r_timeout);
if (err > 0)
err = 0;
else if (err == 0)
err = (long)wait_for_completion_interruptible_timeout(
&req->r_completion, req->r_timeout);
if (err == 0)
req->r_reply = ERR_PTR(-EIO);
else if (err < 0)
req->r_reply = ERR_PTR(err);
} else {
wait_for_completion(&req->r_completion);
err = wait_for_completion_interruptible(
&req->r_completion);
if (err)
req->r_reply = ERR_PTR(err);
}
mutex_lock(&mdsc->mutex);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册