hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/fs/ext2/symlink.c
....@@ -23,16 +23,14 @@
2323
2424 const struct inode_operations ext2_symlink_inode_operations = {
2525 .get_link = page_get_link,
26
+ .getattr = ext2_getattr,
2627 .setattr = ext2_setattr,
27
-#ifdef CONFIG_EXT2_FS_XATTR
2828 .listxattr = ext2_listxattr,
29
-#endif
3029 };
3130
3231 const struct inode_operations ext2_fast_symlink_inode_operations = {
3332 .get_link = simple_get_link,
33
+ .getattr = ext2_getattr,
3434 .setattr = ext2_setattr,
35
-#ifdef CONFIG_EXT2_FS_XATTR
3635 .listxattr = ext2_listxattr,
37
-#endif
3836 };