浏览代码

ipvs: ip_vs_ftp: local functions should not be exposed globally

Functions not referenced outside of a source file should be marked
static to prevent it from being exposed globally.

This quiets the sparse warnings:

warning: symbol 'ip_vs_ftp_init' was not declared. Should it be static?

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
H Hartley Sweeten 13 年之前
父节点
当前提交
d5cce20874
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      net/netfilter/ipvs/ip_vs_ftp.c

+ 1 - 1
net/netfilter/ipvs/ip_vs_ftp.c

@@ -485,7 +485,7 @@ static struct pernet_operations ip_vs_ftp_ops = {
 	.exit = __ip_vs_ftp_exit,
 	.exit = __ip_vs_ftp_exit,
 };
 };
 
 
-int __init ip_vs_ftp_init(void)
+static int __init ip_vs_ftp_init(void)
 {
 {
 	int rv;
 	int rv;