[PATCH v2 10/25] xattr: use is_fscaps_xattr()
Seth Forshee (DigitalOcean)
sforshee at kernel.org
Wed Feb 21 21:24:41 UTC 2024
Signed-off-by: Seth Forshee (DigitalOcean) <sforshee at kernel.org>
---
fs/xattr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/xattr.c b/fs/xattr.c
index 09d927603433..06290e4ebc03 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -310,7 +310,7 @@ vfs_setxattr(struct mnt_idmap *idmap, struct dentry *dentry,
const void *orig_value = value;
int error;
- if (size && strcmp(name, XATTR_NAME_CAPS) == 0) {
+ if (size && is_fscaps_xattr(name)) {
error = cap_convert_nscap(idmap, dentry, &value, size);
if (error < 0)
return error;
--
2.43.0
More information about the Linux-security-module-archive
mailing list