Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95275
b: refs/heads/master
c: 4dbf930
h: refs/heads/master
i:
  95273: 23f49bb
  95271: 63ca88d
v: v3
  • Loading branch information
Miklos Szeredi authored and Linus Torvalds committed Apr 30, 2008
1 parent ce77f11 commit 4393318
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5559b8f4d1f630b8614b6c8e13b8bf6c9c45d7d7
refs/heads/master: 4dbf930ed6c1f8aa992937d0461f8f70d4004aad
4 changes: 3 additions & 1 deletion trunk/fs/fuse/dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ static void request_end(struct fuse_conn *fc, struct fuse_req *req)

static void wait_answer_interruptible(struct fuse_conn *fc,
struct fuse_req *req)
__releases(fc->lock) __acquires(fc->lock)
{
if (signal_pending(current))
return;
Expand All @@ -315,8 +316,8 @@ static void queue_interrupt(struct fuse_conn *fc, struct fuse_req *req)
kill_fasync(&fc->fasync, SIGIO, POLL_IN);
}

/* Called with fc->lock held. Releases, and then reacquires it. */
static void request_wait_answer(struct fuse_conn *fc, struct fuse_req *req)
__releases(fc->lock) __acquires(fc->lock)
{
if (!fc->no_interrupt) {
/* Any signal may interrupt this */
Expand Down Expand Up @@ -987,6 +988,7 @@ static void end_requests(struct fuse_conn *fc, struct list_head *head)
* locked).
*/
static void end_io_requests(struct fuse_conn *fc)
__releases(fc->lock) __acquires(fc->lock)
{
while (!list_empty(&fc->io)) {
struct fuse_req *req =
Expand Down

0 comments on commit 4393318

Please sign in to comment.