Commit 4fdd1d51 authored by Richard Weinberger's avatar Richard Weinberger

ubifs: Use XATTR_*_PREFIX_LEN

...instead of open coding it.
Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
parent 170eb55f
...@@ -267,7 +267,7 @@ static int check_namespace(const struct qstr *nm) ...@@ -267,7 +267,7 @@ static int check_namespace(const struct qstr *nm)
if (!strncmp(nm->name, XATTR_TRUSTED_PREFIX, if (!strncmp(nm->name, XATTR_TRUSTED_PREFIX,
XATTR_TRUSTED_PREFIX_LEN)) { XATTR_TRUSTED_PREFIX_LEN)) {
if (nm->name[sizeof(XATTR_TRUSTED_PREFIX) - 1] == '\0') if (nm->name[XATTR_TRUSTED_PREFIX_LEN] == '\0')
return -EINVAL; return -EINVAL;
type = TRUSTED_XATTR; type = TRUSTED_XATTR;
} else if (!strncmp(nm->name, XATTR_USER_PREFIX, } else if (!strncmp(nm->name, XATTR_USER_PREFIX,
...@@ -277,7 +277,7 @@ static int check_namespace(const struct qstr *nm) ...@@ -277,7 +277,7 @@ static int check_namespace(const struct qstr *nm)
type = USER_XATTR; type = USER_XATTR;
} else if (!strncmp(nm->name, XATTR_SECURITY_PREFIX, } else if (!strncmp(nm->name, XATTR_SECURITY_PREFIX,
XATTR_SECURITY_PREFIX_LEN)) { XATTR_SECURITY_PREFIX_LEN)) {
if (nm->name[sizeof(XATTR_SECURITY_PREFIX) - 1] == '\0') if (nm->name[XATTR_SECURITY_PREFIX_LEN] == '\0')
return -EINVAL; return -EINVAL;
type = SECURITY_XATTR; type = SECURITY_XATTR;
} else } else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment