aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_acl.h
diff options
context:
space:
mode:
authorDave Chinner <david@fromorbit.com>2022-05-04 12:36:54 +1000
committerDave Chinner <david@fromorbit.com>2022-05-04 12:36:54 +1000
commit9cf4f6160c20bbdb53f20a773d48ab6dfa3b49e3 (patch)
treea2db0e2211a394d46347b6c6df373c6b453e88da /fs/xfs/xfs_acl.h
parenta44a027a8b2a20fec30e0e9c99b0eb41c03e7420 (diff)
parentbc37e4fb5cac2925b2e286b1f1d4fc2b519f7d92 (diff)
Merge branch 'guilt/xfs-5.19-misc-2' into xfs-5.19-for-next
Diffstat (limited to 'fs/xfs/xfs_acl.h')
-rw-r--r--fs/xfs/xfs_acl.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/fs/xfs/xfs_acl.h b/fs/xfs/xfs_acl.h
index bb6abdcb265d..263404d0bfda 100644
--- a/fs/xfs/xfs_acl.h
+++ b/fs/xfs/xfs_acl.h
@@ -16,11 +16,13 @@ extern int xfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
extern int __xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
void xfs_forget_acl(struct inode *inode, const char *name);
#else
-static inline struct posix_acl *xfs_get_acl(struct inode *inode, int type, bool rcu)
+#define xfs_get_acl NULL
+#define xfs_set_acl NULL
+static inline int __xfs_set_acl(struct inode *inode, struct posix_acl *acl,
+ int type)
{
- return NULL;
+ return 0;
}
-# define xfs_set_acl NULL
static inline void xfs_forget_acl(struct inode *inode, const char *name)
{
}