.get_link       = f2fs_encrypted_get_link,
        .getattr        = f2fs_getattr,
        .setattr        = f2fs_setattr,
-#ifdef CONFIG_F2FS_FS_XATTR
        .listxattr      = f2fs_listxattr,
-#endif
 };
 
 const struct inode_operations f2fs_dir_inode_operations = {
        .setattr        = f2fs_setattr,
        .get_acl        = f2fs_get_acl,
        .set_acl        = f2fs_set_acl,
-#ifdef CONFIG_F2FS_FS_XATTR
        .listxattr      = f2fs_listxattr,
-#endif
        .fiemap         = f2fs_fiemap,
 };
 
        .get_link       = f2fs_get_link,
        .getattr        = f2fs_getattr,
        .setattr        = f2fs_setattr,
-#ifdef CONFIG_F2FS_FS_XATTR
        .listxattr      = f2fs_listxattr,
-#endif
 };
 
 const struct inode_operations f2fs_special_inode_operations = {
        .setattr        = f2fs_setattr,
        .get_acl        = f2fs_get_acl,
        .set_acl        = f2fs_set_acl,
-#ifdef CONFIG_F2FS_FS_XATTR
        .listxattr      = f2fs_listxattr,
-#endif
 };
 
 #else
 
 #define f2fs_xattr_handlers    NULL
+#define f2fs_listxattr         NULL
 static inline int f2fs_setxattr(struct inode *inode, int index,
                const char *name, const void *value, size_t size,
                struct page *page, int flags)
 {
        return -EOPNOTSUPP;
 }
-static inline ssize_t f2fs_listxattr(struct dentry *dentry, char *buffer,
-               size_t buffer_size)
-{
-       return -EOPNOTSUPP;
-}
 static inline int f2fs_init_xattr_caches(struct f2fs_sb_info *sbi) { return 0; }
 static inline void f2fs_destroy_xattr_caches(struct f2fs_sb_info *sbi) { }
 #endif