diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 10:08:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 10:08:10 -0700 |
commit | b80e0d271606a0f5b35c85b11f9014ce09cbc415 (patch) | |
tree | e030cdeeb857456382bd0962a584b48b7a76566e /fs | |
parent | 83826dc505e6c6f432332dd45681be4bb71635ce (diff) | |
parent | 5291658d87ac1ae60418e79e7b6bad7d5f595e0c (diff) | |
download | op-kernel-dev-b80e0d271606a0f5b35c85b11f9014ce09cbc415.zip op-kernel-dev-b80e0d271606a0f5b35c85b11f9014ce09cbc415.tar.gz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse:
fuse: fix fuse_file_lseek returning with lock held
Diffstat (limited to 'fs')
-rw-r--r-- | fs/fuse/file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/fuse/file.c b/fs/fuse/file.c index d9fdb7c..821d10f 100644 --- a/fs/fuse/file.c +++ b/fs/fuse/file.c @@ -1465,7 +1465,7 @@ static loff_t fuse_file_llseek(struct file *file, loff_t offset, int origin) case SEEK_END: retval = fuse_update_attributes(inode, NULL, file, NULL); if (retval) - return retval; + goto exit; offset += i_size_read(inode); break; case SEEK_CUR: @@ -1479,6 +1479,7 @@ static loff_t fuse_file_llseek(struct file *file, loff_t offset, int origin) } retval = offset; } +exit: mutex_unlock(&inode->i_mutex); return retval; } |