From: Adrian Bunk Date: Tue, 21 Mar 2006 01:46:56 +0000 (-0800) Subject: [IPV4] fib_rules.c: make struct fib_rules static again X-Git-Tag: v2.6.17-rc1~1175^2~186 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d15150f755bb468afe003d1afee0f45a2fc5eeeb;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git [IPV4] fib_rules.c: make struct fib_rules static again struct fib_rules became global for no good reason. Signed-off-by: Adrian Bunk Signed-off-by: David S. Miller --- diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c index 7b462a3..768e8f5 100644 --- a/net/ipv4/fib_rules.c +++ b/net/ipv4/fib_rules.c @@ -100,7 +100,7 @@ static struct fib_rule local_rule = { .r_action = RTN_UNICAST, }; -struct hlist_head fib_rules; +static struct hlist_head fib_rules; /* writer func called from netlink -- rtnl_sem hold*/