diff options
author | Pascal Eberhard <pascal.eberhard@se.com> | 2024-09-27 16:57:56 +0200 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2024-11-14 19:30:26 +0100 |
commit | 8214951280a25e1260ee6dbf472b261b63b29af2 (patch) | |
tree | 41bd94c7ed3d8adeb07d8c5e4de71bd4a06ecd50 /fs/ubifs/xattr.c | |
parent | 79d3e562cb47864a10851328cbdfa0ee2177d9f6 (diff) |
ubifs: xattr: remove unused anonymous enum
commit 2b88fc21cae9 ("ubifs: Switch to generic xattr handlers") removes
usage of this anonymous enum. Delete the enum as well.
Signed-off-by: Pascal Eberhard <pascal.eberhard@se.com>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs/xattr.c')
-rw-r--r-- | fs/ubifs/xattr.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/fs/ubifs/xattr.c b/fs/ubifs/xattr.c index 77ba172b6dea..c21a0c2b3e90 100644 --- a/fs/ubifs/xattr.c +++ b/fs/ubifs/xattr.c @@ -48,19 +48,6 @@ #include <linux/slab.h> #include <linux/xattr.h> -/* - * Extended attribute type constants. - * - * USER_XATTR: user extended attribute ("user.*") - * TRUSTED_XATTR: trusted extended attribute ("trusted.*) - * SECURITY_XATTR: security extended attribute ("security.*") - */ -enum { - USER_XATTR, - TRUSTED_XATTR, - SECURITY_XATTR, -}; - static const struct inode_operations empty_iops; static const struct file_operations empty_fops; |