Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5a06234 authored by Bart Van Assche's avatar Bart Van Assche Committed by Greg Kroah-Hartman
Browse files

kernfs: Declare two local data structures static



This was spotted by the 'sparse' static checker.

Signed-off-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
Cc: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2eed70de
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -335,7 +335,7 @@ static int kernfs_xattr_set(const struct xattr_handler *handler,
	return simple_xattr_set(&attrs->xattrs, name, value, size, flags);
}

const struct xattr_handler kernfs_trusted_xattr_handler = {
static const struct xattr_handler kernfs_trusted_xattr_handler = {
	.prefix = XATTR_TRUSTED_PREFIX,
	.get = kernfs_xattr_get,
	.set = kernfs_xattr_set,
@@ -372,7 +372,7 @@ static int kernfs_security_xattr_set(const struct xattr_handler *handler,
	return error;
}

const struct xattr_handler kernfs_security_xattr_handler = {
static const struct xattr_handler kernfs_security_xattr_handler = {
	.prefix = XATTR_SECURITY_PREFIX,
	.get = kernfs_xattr_get,
	.set = kernfs_security_xattr_set,