summaryrefslogtreecommitdiffstats
path: root/include/linux/posix_acl_xattr.h
diff options
context:
space:
mode:
authorChristian Brauner <brauner@kernel.org>2022-10-28 10:00:26 +0200
committerChristian Brauner (Microsoft) <brauner@kernel.org>2022-10-28 10:00:26 +0200
commita351b1f444187312bb42479cb26e82f26fc481d2 (patch)
treeb2f8365de853c7ef3385435d0a4a031a656b9cfb /include/linux/posix_acl_xattr.h
parent0a26bde2c9db9817e2b4c0f890236f78d4d8ed7c (diff)
downloadlinux-a351b1f444187312bb42479cb26e82f26fc481d2.tar.bz2
acl: make vfs_posix_acl_to_xattr() static
After reworking posix acls this helper isn't used anywhere outside the core posix acl paths. Make it static. Signed-off-by: Christian Brauner (Microsoft) <brauner@kernel.org>
Diffstat (limited to 'include/linux/posix_acl_xattr.h')
-rw-r--r--include/linux/posix_acl_xattr.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/posix_acl_xattr.h b/include/linux/posix_acl_xattr.h
index 8daac3c5b583..54cd7a14330d 100644
--- a/include/linux/posix_acl_xattr.h
+++ b/include/linux/posix_acl_xattr.h
@@ -35,9 +35,6 @@ posix_acl_xattr_count(size_t size)
#ifdef CONFIG_FS_POSIX_ACL
struct posix_acl *posix_acl_from_xattr(struct user_namespace *user_ns,
const void *value, size_t size);
-ssize_t vfs_posix_acl_to_xattr(struct user_namespace *mnt_userns,
- struct inode *inode, const struct posix_acl *acl,
- void *buffer, size_t size);
#else
static inline struct posix_acl *
posix_acl_from_xattr(struct user_namespace *user_ns, const void *value,
@@ -45,13 +42,6 @@ posix_acl_from_xattr(struct user_namespace *user_ns, const void *value,
{
return ERR_PTR(-EOPNOTSUPP);
}
-static inline ssize_t vfs_posix_acl_to_xattr(struct user_namespace *mnt_userns,
- struct inode *inode,
- const struct posix_acl *acl,
- void *buffer, size_t size)
-{
- return 0;
-}
#endif
int posix_acl_to_xattr(struct user_namespace *user_ns,