summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstephen hemminger2010-10-01 15:58:00 +0200
committerDavid S. Miller2010-10-04 06:50:51 +0200
commitddcb4541e917780ef7ccc68dd8df18ca0bc055d0 (patch)
tree82aac826df08481cb661ad753eaad0bf96c83a3d
parentenic: Update MAINTAINERS (diff)
downloadkernel-qcow2-linux-ddcb4541e917780ef7ccc68dd8df18ca0bc055d0.tar.gz
kernel-qcow2-linux-ddcb4541e917780ef7ccc68dd8df18ca0bc055d0.tar.xz
kernel-qcow2-linux-ddcb4541e917780ef7ccc68dd8df18ca0bc055d0.zip
gre: protocol table can be static
This table is only used in gre.c Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/ipv4/gre.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/gre.c b/net/ipv4/gre.c
index b546736da2e1..caea6885fdbd 100644
--- a/net/ipv4/gre.c
+++ b/net/ipv4/gre.c
@@ -22,7 +22,7 @@
#include <net/gre.h>
-const struct gre_protocol *gre_proto[GREPROTO_MAX] __read_mostly;
+static const struct gre_protocol *gre_proto[GREPROTO_MAX] __read_mostly;
static DEFINE_SPINLOCK(gre_proto_lock);
int gre_add_protocol(const struct gre_protocol *proto, u8 version)