diff options
author | Christoph Hellwig <hch@infradead.org> | 2013-12-20 14:16:45 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-01-26 05:58:19 +0100 |
commit | a6dda0e63e97122ce9e0ba04367e37cca28315fa (patch) | |
tree | e8dec7f19884035c41b3ddd807ca5dcde65fef41 /fs/f2fs/f2fs.h | |
parent | ext2/3/4: use generic posix ACL infrastructure (diff) | |
download | linux-a6dda0e63e97122ce9e0ba04367e37cca28315fa.tar.xz linux-a6dda0e63e97122ce9e0ba04367e37cca28315fa.zip |
f2fs: use generic posix ACL infrastructure
f2fs has some weird mode bit handling, so still using the old
chmod code for now.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 89dc7508faf2..934b59cf819e 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -953,6 +953,10 @@ static inline int f2fs_readonly(struct super_block *sb) return sb->s_flags & MS_RDONLY; } +#define get_inode_mode(i) \ + ((is_inode_flag_set(F2FS_I(i), FI_ACL_MODE)) ? \ + (F2FS_I(i)->i_acl_mode) : ((i)->i_mode)) + /* * file.c */ |