]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ocfs2: set i_mode on disk during acl operations
authorMark Fasheh <mfasheh@suse.com>
Mon, 15 Mar 2010 22:39:00 +0000 (15:39 -0700)
committerJoel Becker <joel.becker@oracle.com>
Wed, 17 Mar 2010 19:28:22 +0000 (12:28 -0700)
commitfcefd25ac89239cb57fa198f125a79ff85468c75
treebe758d25079055bebe26dd9ad9a7db6121158a75
parent6527f8f848ec84b9daf1cb07601266126b8507ab
ocfs2: set i_mode on disk during acl operations

ocfs2_set_acl() and ocfs2_init_acl() were setting i_mode on the in-memory
inode, but never setting it on the disk copy. Thus, acls were some times not
getting propagated between nodes. This patch fixes the issue by adding a
helper function ocfs2_acl_set_mode() which does this the right way.
ocfs2_set_acl() and ocfs2_init_acl() are then updated to call
ocfs2_acl_set_mode().

Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
fs/ocfs2/acl.c