diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-27 21:15:56 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-07-27 21:15:56 +0200 |
commit | a9355cf8e68baac964f815079b820d2680756300 (patch) | |
tree | 2b12b884520ea72e51dceeff4e474f0593c73754 | |
parent | update the comment in kthread_stop() (diff) | |
parent | jfs: Fix early release of acl in jfs_get_acl (diff) | |
download | linux-a9355cf8e68baac964f815079b820d2680756300.tar.xz linux-a9355cf8e68baac964f815079b820d2680756300.zip |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6:
jfs: Fix early release of acl in jfs_get_acl
-rw-r--r-- | fs/jfs/acl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/jfs/acl.c b/fs/jfs/acl.c index 91fa3ad6e8c2..a29c7c3e3fb8 100644 --- a/fs/jfs/acl.c +++ b/fs/jfs/acl.c @@ -67,10 +67,8 @@ static struct posix_acl *jfs_get_acl(struct inode *inode, int type) acl = posix_acl_from_xattr(value, size); } kfree(value); - if (!IS_ERR(acl)) { + if (!IS_ERR(acl)) set_cached_acl(inode, type, acl); - posix_acl_release(acl); - } return acl; } |