summarylogtreecommitdiffstats
path: root/kernel-5.15-backport.patch
diff options
context:
space:
mode:
Diffstat (limited to 'kernel-5.15-backport.patch')
-rw-r--r--kernel-5.15-backport.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/kernel-5.15-backport.patch b/kernel-5.15-backport.patch
deleted file mode 100644
index 40a6bd1babf8..000000000000
--- a/kernel-5.15-backport.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/ntfs_fs.h
-+++ b/ntfs_fs.h
-@@ -836,7 +836,7 @@
-
- /* globals from xattr.c */
- #ifdef CONFIG_NTFS3_FS_POSIX_ACL
--struct posix_acl *ntfs_get_acl(struct inode *inode, int type, bool rcu);
-+struct posix_acl *ntfs_get_acl(struct inode *inode, int type);
- int ntfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
- struct posix_acl *acl, int type);
- int ntfs_init_acl(struct user_namespace *mnt_userns, struct inode *inode,
-
---- a/xattr.c
-+++ b/xattr.c
-@@ -532,11 +532,8 @@
- /*
- * ntfs_get_acl - inode_operations::get_acl
- */
--struct posix_acl *ntfs_get_acl(struct inode *inode, int type, bool rcu)
-+struct posix_acl *ntfs_get_acl(struct inode *inode, int type)
- {
-- if (rcu)
-- return ERR_PTR(-ECHILD);
--
- /* TODO: init_user_ns? */
- return ntfs_get_acl_ex(&init_user_ns, inode, type, 0);
- }
-@@ -634,7 +634,7 @@
- return -EOPNOTSUPP;
- }
-
-- acl = ntfs_get_acl(inode, type, false);
-+ acl = ntfs_get_acl(inode, type);
- if (IS_ERR(acl))
- return PTR_ERR(acl);
-