aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/namei.c
diff options
context:
space:
mode:
authorChao Yu <chao2.yu@samsung.com>2015-12-31 18:20:10 +0800
committerJaegeuk Kim <jaegeuk@kernel.org>2015-12-31 18:54:50 -0800
commit3a9e6433a367211a172cb7b4d5b727c720bd0de0 (patch)
tree41c40259ab081a27679952923dc015dbf2d88dec /fs/f2fs/namei.c
parentf2fs: introduce zombie list for fast shrinking extent trees (diff)
downloadlinux-dev-3a9e6433a367211a172cb7b4d5b727c720bd0de0.tar.xz
linux-dev-3a9e6433a367211a172cb7b4d5b727c720bd0de0.zip
f2fs crypto: check CONFIG_F2FS_FS_XATTR for encrypted symlink
Add missed CONFIG_F2FS_FS_XATTR for encrypted symlink inode in order to avoid unneeded registry of ->{get,set,remove}xattr. Signed-off-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/namei.c')
-rw-r--r--fs/f2fs/namei.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/f2fs/namei.c b/fs/f2fs/namei.c
index a629af5cb0ce..0d61a6864ab1 100644
--- a/fs/f2fs/namei.c
+++ b/fs/f2fs/namei.c
@@ -1016,10 +1016,12 @@ const struct inode_operations f2fs_encrypted_symlink_inode_operations = {
.put_link = kfree_put_link,
.getattr = f2fs_getattr,
.setattr = f2fs_setattr,
+#ifdef CONFIG_F2FS_FS_XATTR
.setxattr = generic_setxattr,
.getxattr = generic_getxattr,
.listxattr = f2fs_listxattr,
.removexattr = generic_removexattr,
+#endif
};
#endif