summaryrefslogtreecommitdiffstats
path: root/fs/ext2/symlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext2/symlink.c')
-rw-r--r--fs/ext2/symlink.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ext2/symlink.c b/fs/ext2/symlink.c
index d5589ddcc281..00cdb8679486 100644
--- a/fs/ext2/symlink.c
+++ b/fs/ext2/symlink.c
@@ -23,6 +23,7 @@
23 23
24const struct inode_operations ext2_symlink_inode_operations = { 24const struct inode_operations ext2_symlink_inode_operations = {
25 .get_link = page_get_link, 25 .get_link = page_get_link,
26 .getattr = ext2_getattr,
26 .setattr = ext2_setattr, 27 .setattr = ext2_setattr,
27#ifdef CONFIG_EXT2_FS_XATTR 28#ifdef CONFIG_EXT2_FS_XATTR
28 .listxattr = ext2_listxattr, 29 .listxattr = ext2_listxattr,
@@ -31,6 +32,7 @@ const struct inode_operations ext2_symlink_inode_operations = {
31 32
32const struct inode_operations ext2_fast_symlink_inode_operations = { 33const struct inode_operations ext2_fast_symlink_inode_operations = {
33 .get_link = simple_get_link, 34 .get_link = simple_get_link,
35 .getattr = ext2_getattr,
34 .setattr = ext2_setattr, 36 .setattr = ext2_setattr,
35#ifdef CONFIG_EXT2_FS_XATTR 37#ifdef CONFIG_EXT2_FS_XATTR
36 .listxattr = ext2_listxattr, 38 .listxattr = ext2_listxattr,