|
@@ -130,21 +130,30 @@ static void fuse_req_init_context(struct fuse_req *req)
|
|
|
req->in.h.pid = current->pid;
|
|
|
}
|
|
|
|
|
|
+static bool fuse_block_alloc(struct fuse_conn *fc, bool for_background)
|
|
|
+{
|
|
|
+ return !fc->initialized || (for_background && fc->blocked);
|
|
|
+}
|
|
|
+
|
|
|
static struct fuse_req *__fuse_get_req(struct fuse_conn *fc, unsigned npages,
|
|
|
bool for_background)
|
|
|
{
|
|
|
struct fuse_req *req;
|
|
|
- sigset_t oldset;
|
|
|
- int intr;
|
|
|
int err;
|
|
|
-
|
|
|
atomic_inc(&fc->num_waiting);
|
|
|
- block_sigs(&oldset);
|
|
|
- intr = wait_event_interruptible(fc->blocked_waitq, !fc->blocked);
|
|
|
- restore_sigs(&oldset);
|
|
|
- err = -EINTR;
|
|
|
- if (intr)
|
|
|
- goto out;
|
|
|
+
|
|
|
+ if (fuse_block_alloc(fc, for_background)) {
|
|
|
+ sigset_t oldset;
|
|
|
+ int intr;
|
|
|
+
|
|
|
+ block_sigs(&oldset);
|
|
|
+ intr = wait_event_interruptible(fc->blocked_waitq,
|
|
|
+ !fuse_block_alloc(fc, for_background));
|
|
|
+ restore_sigs(&oldset);
|
|
|
+ err = -EINTR;
|
|
|
+ if (intr)
|
|
|
+ goto out;
|
|
|
+ }
|
|
|
|
|
|
err = -ENOTCONN;
|
|
|
if (!fc->connected)
|
|
@@ -239,7 +248,7 @@ struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
|
|
|
struct fuse_req *req;
|
|
|
|
|
|
atomic_inc(&fc->num_waiting);
|
|
|
- wait_event(fc->blocked_waitq, !fc->blocked);
|
|
|
+ wait_event(fc->blocked_waitq, fc->initialized);
|
|
|
req = fuse_request_alloc(0);
|
|
|
if (!req)
|
|
|
req = get_reserved_req(fc, file);
|
|
@@ -2106,6 +2115,7 @@ int fuse_dev_release(struct inode *inode, struct file *file)
|
|
|
spin_lock(&fc->lock);
|
|
|
fc->connected = 0;
|
|
|
fc->blocked = 0;
|
|
|
+ fc->initialized = 1;
|
|
|
end_queued_requests(fc);
|
|
|
end_polls(fc);
|
|
|
wake_up_all(&fc->blocked_waitq);
|