diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-21 02:29:32 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-04-21 02:29:32 -0700 |
commit | 280a34c87fe07cb15df19bd798b23740223350fb (patch) | |
tree | 17283892a24c9cd6e79b0ca751004f1b7851e3d1 /net/ipv6/route.c | |
parent | 1f29b0584dcb695589407a11bb7533fe21fa47c4 (diff) | |
download | op-kernel-dev-280a34c87fe07cb15df19bd798b23740223350fb.zip op-kernel-dev-280a34c87fe07cb15df19bd798b23740223350fb.tar.gz |
[IPV6]: Make struct ip6_prohibit_entry_template static.
This patch makes the needlessly global struct
ip6_prohibit_entry_template static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r-- | net/ipv6/route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 210a079..1f42bc9 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -150,7 +150,7 @@ static struct rt6_info ip6_null_entry_template = { static int ip6_pkt_prohibit(struct sk_buff *skb); static int ip6_pkt_prohibit_out(struct sk_buff *skb); -struct rt6_info ip6_prohibit_entry_template = { +static struct rt6_info ip6_prohibit_entry_template = { .u = { .dst = { .__refcnt = ATOMIC_INIT(1), |