[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200728171109.28687-1-krzk@kernel.org>
Date: Tue, 28 Jul 2020 19:11:06 +0200
From: Krzysztof Kozlowski <krzk@...nel.org>
To: Alexander Viro <viro@...iv.linux.org.uk>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-mm@...ck.org
Cc: Krzysztof Kozlowski <krzk@...nel.org>
Subject: [PATCH 1/4] anon_inodes: Make _anon_inode_getfile() static
_anon_inode_getfile() function is not used outside so make it static to
fix W=1 warning:
fs/anon_inodes.c:80:14: warning: no previous prototype for '_anon_inode_getfile' [-Wmissing-prototypes]
80 | struct file *_anon_inode_getfile(const char *name,
Signed-off-by: Krzysztof Kozlowski <krzk@...nel.org>
---
fs/anon_inodes.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/fs/anon_inodes.c b/fs/anon_inodes.c
index 25d92c64411e..90b022960027 100644
--- a/fs/anon_inodes.c
+++ b/fs/anon_inodes.c
@@ -77,11 +77,11 @@ static struct inode *anon_inode_make_secure_inode(
return inode;
}
-struct file *_anon_inode_getfile(const char *name,
- const struct file_operations *fops,
- void *priv, int flags,
- const struct inode *context_inode,
- bool secure)
+static struct file *_anon_inode_getfile(const char *name,
+ const struct file_operations *fops,
+ void *priv, int flags,
+ const struct inode *context_inode,
+ bool secure)
{
struct inode *inode;
struct file *file;
--
2.17.1
Powered by blists - more mailing lists