diff mbox series

fs/namespace.c: Make to_mnt_ns static

Message ID 20190414191913.GA11798@bharath12345-Inspiron-5559 (mailing list archive)
State New, archived
Headers show
Series fs/namespace.c: Make to_mnt_ns static | expand

Commit Message

Bharath Vedartham April 14, 2019, 7:19 p.m. UTC
This patch fixes the sparse warning:
"warning: symbol 'to_mnt_ns' was not declared. Should it be static?"

Signed-off-by: Bharath Vedartham <linux.bhar@gmail.com>
---
 fs/namespace.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/fs/namespace.c b/fs/namespace.c
index c9cab30..b39a3ec 100644
--- a/fs/namespace.c
+++ b/fs/namespace.c
@@ -1732,7 +1732,7 @@  static bool is_mnt_ns_file(struct dentry *dentry)
 	       dentry->d_fsdata == &mntns_operations;
 }
 
-struct mnt_namespace *to_mnt_ns(struct ns_common *ns)
+static struct mnt_namespace *to_mnt_ns(struct ns_common *ns)
 {
 	return container_of(ns, struct mnt_namespace, ns);
 }