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

+1 -3
+1 -3
fs/jfs/acl.c
··· 67 acl = posix_acl_from_xattr(value, size); 68 } 69 kfree(value); 70 - if (!IS_ERR(acl)) { 71 set_cached_acl(inode, type, acl); 72 - posix_acl_release(acl); 73 - } 74 return acl; 75 } 76
··· 67 acl = posix_acl_from_xattr(value, size); 68 } 69 kfree(value); 70 + if (!IS_ERR(acl)) 71 set_cached_acl(inode, type, acl); 72 return acl; 73 } 74