Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 105464
b: refs/heads/master
c: f4c7da0
h: refs/heads/master
v: v3
  • Loading branch information
Ian Kent authored and Linus Torvalds committed Jul 24, 2008
1 parent 760684a commit a3efc3d
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: a1362fe92f1bde687b3a9e93d6b8d105d0a84f74
refs/heads/master: f4c7da02615bebcaf89f15a8d055922f515160b8
4 changes: 3 additions & 1 deletion trunk/fs/autofs4/waitq.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,10 @@ int autofs4_wait(struct autofs_sb_info *sbi, struct dentry *dentry,
qstr.name = name;
qstr.hash = full_name_hash(name, qstr.len);

if (mutex_lock_interruptible(&sbi->wq_mutex))
if (mutex_lock_interruptible(&sbi->wq_mutex)) {
kfree(qstr.name);
return -EINTR;
}

ret = validate_request(&wq, sbi, &qstr, dentry, notify);
if (ret <= 0) {
Expand Down

0 comments on commit a3efc3d

Please sign in to comment.