diff options
| author | Jan Kara <jack@suse.cz> | 2006-04-22 05:36:24 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-04-22 12:19:53 -0400 |
| commit | b9251b823b5e921c894eb135cb6c64abf483f50e (patch) | |
| tree | 4e2c1c24a80693a6b6d2ee0f5369ab21fef5fc16 | |
| parent | 8c4335a87c9785d2102ab23f09393038e1663314 (diff) | |
[PATCH] Fix reiserfs deadlock
reiserfs_cache_default_acl() should return whether we successfully found
the acl or not. We have to return correct value even if reiserfs_get_acl()
returns error code and not just 0. Otherwise callers such as
reiserfs_mkdir() can unnecessarily lock the xattrs and later functions such
as reiserfs_new_inode() fail to notice that we have already taken the lock
and try to take it again with obvious consequences.
Signed-off-by: Jan Kara <jack@suse.cz>
Cc: <reiserfs-dev@namesys.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | fs/reiserfs/xattr_acl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/reiserfs/xattr_acl.c b/fs/reiserfs/xattr_acl.c index 58c418fbca2c..97ae1b92bc47 100644 --- a/fs/reiserfs/xattr_acl.c +++ b/fs/reiserfs/xattr_acl.c | |||
| @@ -408,8 +408,9 @@ int reiserfs_cache_default_acl(struct inode *inode) | |||
| 408 | acl = reiserfs_get_acl(inode, ACL_TYPE_DEFAULT); | 408 | acl = reiserfs_get_acl(inode, ACL_TYPE_DEFAULT); |
| 409 | reiserfs_read_unlock_xattrs(inode->i_sb); | 409 | reiserfs_read_unlock_xattrs(inode->i_sb); |
| 410 | reiserfs_read_unlock_xattr_i(inode); | 410 | reiserfs_read_unlock_xattr_i(inode); |
| 411 | ret = acl ? 1 : 0; | 411 | ret = (acl && !IS_ERR(acl)); |
| 412 | posix_acl_release(acl); | 412 | if (ret) |
| 413 | posix_acl_release(acl); | ||
| 413 | } | 414 | } |
| 414 | 415 | ||
| 415 | return ret; | 416 | return ret; |
