You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
vfs: Remove {get,set,remove}xattr inode operations
These inode operations are no longer used; remove them. Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
committed by
Al Viro
parent
41fefa36be
commit
fd50ecaddf
@@ -3213,10 +3213,7 @@ const struct inode_operations ll_file_inode_operations = {
|
||||
.setattr = ll_setattr,
|
||||
.getattr = ll_getattr,
|
||||
.permission = ll_inode_permission,
|
||||
.setxattr = generic_setxattr,
|
||||
.getxattr = generic_getxattr,
|
||||
.listxattr = ll_listxattr,
|
||||
.removexattr = generic_removexattr,
|
||||
.fiemap = ll_fiemap,
|
||||
.get_acl = ll_get_acl,
|
||||
};
|
||||
|
||||
@@ -1106,10 +1106,7 @@ const struct inode_operations ll_dir_inode_operations = {
|
||||
.setattr = ll_setattr,
|
||||
.getattr = ll_getattr,
|
||||
.permission = ll_inode_permission,
|
||||
.setxattr = generic_setxattr,
|
||||
.getxattr = generic_getxattr,
|
||||
.listxattr = ll_listxattr,
|
||||
.removexattr = generic_removexattr,
|
||||
.get_acl = ll_get_acl,
|
||||
};
|
||||
|
||||
@@ -1117,9 +1114,6 @@ const struct inode_operations ll_special_inode_operations = {
|
||||
.setattr = ll_setattr,
|
||||
.getattr = ll_getattr,
|
||||
.permission = ll_inode_permission,
|
||||
.setxattr = generic_setxattr,
|
||||
.getxattr = generic_getxattr,
|
||||
.listxattr = ll_listxattr,
|
||||
.removexattr = generic_removexattr,
|
||||
.get_acl = ll_get_acl,
|
||||
};
|
||||
|
||||
@@ -155,8 +155,5 @@ const struct inode_operations ll_fast_symlink_inode_operations = {
|
||||
.get_link = ll_get_link,
|
||||
.getattr = ll_getattr,
|
||||
.permission = ll_inode_permission,
|
||||
.setxattr = generic_setxattr,
|
||||
.getxattr = generic_getxattr,
|
||||
.listxattr = ll_listxattr,
|
||||
.removexattr = generic_removexattr,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user