Skip to content

Commit

Permalink
fuse: no fc->lock for pqueue parts
Browse files Browse the repository at this point in the history
Remove fc->lock protection from processing queue members, now protected by
fpq->lock.

Signed-off-by: Miklos Szeredi <[email protected]>
Reviewed-by: Ashish Samant <[email protected]>
  • Loading branch information
Miklos Szeredi committed Jul 1, 2015
1 parent efe2800 commit 46c34a3
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions fs/fuse/dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,6 @@ static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
list_del_init(&req->list);
spin_unlock(&fiq->waitq.lock);

spin_lock(&fc->lock);
in = &req->in;
reqsize = in->h.len;
/* If request is too large, reply with an error and restart the read */
Expand All @@ -1286,21 +1285,18 @@ static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
/* SETXATTR is special, since it may contain too large data */
if (in->h.opcode == FUSE_SETXATTR)
req->out.h.error = -E2BIG;
spin_unlock(&fc->lock);
request_end(fc, req);
goto restart;
}
spin_lock(&fpq->lock);
list_add(&req->list, &fpq->io);
spin_unlock(&fpq->lock);
spin_unlock(&fc->lock);
cs->req = req;
err = fuse_copy_one(cs, &in->h, sizeof(in->h));
if (!err)
err = fuse_copy_args(cs, in->numargs, in->argpages,
(struct fuse_arg *) in->args, 0);
fuse_copy_finish(cs);
spin_lock(&fc->lock);
spin_lock(&fpq->lock);
clear_bit(FR_LOCKED, &req->flags);
if (!fpq->connected) {
Expand All @@ -1322,15 +1318,13 @@ static ssize_t fuse_dev_do_read(struct fuse_conn *fc, struct file *file,
smp_mb__after_atomic();
if (test_bit(FR_INTERRUPTED, &req->flags))
queue_interrupt(fiq, req);
spin_unlock(&fc->lock);

return reqsize;

out_end:
if (!test_bit(FR_PRIVATE, &req->flags))
list_del_init(&req->list);
spin_unlock(&fpq->lock);
spin_unlock(&fc->lock);
request_end(fc, req);
return err;

Expand Down Expand Up @@ -1898,7 +1892,6 @@ static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
if (oh.error <= -1000 || oh.error > 0)
goto err_finish;

spin_lock(&fc->lock);
spin_lock(&fpq->lock);
err = -ENOENT;
if (!fpq->connected)
Expand All @@ -1914,14 +1907,13 @@ static ssize_t fuse_dev_do_write(struct fuse_conn *fc,

err = -EINVAL;
if (nbytes != sizeof(struct fuse_out_header))
goto err_unlock;
goto err_finish;

if (oh.error == -ENOSYS)
fc->no_interrupt = 1;
else if (oh.error == -EAGAIN)
queue_interrupt(&fc->iq, req);

spin_unlock(&fc->lock);
fuse_copy_finish(cs);
return nbytes;
}
Expand All @@ -1934,12 +1926,10 @@ static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
cs->req = req;
if (!req->out.page_replace)
cs->move_pages = 0;
spin_unlock(&fc->lock);

err = copy_out_args(cs, &req->out, nbytes);
fuse_copy_finish(cs);

spin_lock(&fc->lock);
spin_lock(&fpq->lock);
clear_bit(FR_LOCKED, &req->flags);
if (!fpq->connected)
Expand All @@ -1949,15 +1939,13 @@ static ssize_t fuse_dev_do_write(struct fuse_conn *fc,
if (!test_bit(FR_PRIVATE, &req->flags))
list_del_init(&req->list);
spin_unlock(&fpq->lock);
spin_unlock(&fc->lock);

request_end(fc, req);

return err ? err : nbytes;

err_unlock_pq:
spin_unlock(&fpq->lock);
err_unlock:
spin_unlock(&fc->lock);
err_finish:
fuse_copy_finish(cs);
return err;
Expand Down

0 comments on commit 46c34a3

Please sign in to comment.