[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20190614155117.28988-1-yuehaibing@huawei.com>
Date: Fri, 14 Jun 2019 23:51:17 +0800
From: YueHaibing <yuehaibing@...wei.com>
To: <tyhicks@...onical.com>, <viro@...iv.linux.org.uk>,
<agruenba@...hat.com>
CC: <linux-kernel@...r.kernel.org>, <ecryptfs@...r.kernel.org>,
YueHaibing <yuehaibing@...wei.com>
Subject: [PATCH -next] ecryptfs: Make ecryptfs_xattr_handler static
Fix sparse warning:
fs/ecryptfs/inode.c:1138:28: warning:
symbol 'ecryptfs_xattr_handler' was not declared. Should it be static?
Reported-by: Hulk Robot <hulkci@...wei.com>
Signed-off-by: YueHaibing <yuehaibing@...wei.com>
---
fs/ecryptfs/inode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c
index 1e994d7..18426f4 100644
--- a/fs/ecryptfs/inode.c
+++ b/fs/ecryptfs/inode.c
@@ -1121,7 +1121,7 @@ static int ecryptfs_xattr_set(const struct xattr_handler *handler,
}
}
-const struct xattr_handler ecryptfs_xattr_handler = {
+static const struct xattr_handler ecryptfs_xattr_handler = {
.prefix = "", /* match anything */
.get = ecryptfs_xattr_get,
.set = ecryptfs_xattr_set,
--
2.7.4
Powered by blists - more mailing lists