aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/gre_offload.c
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2014-01-09 22:22:05 +0800
committerDavid S. Miller <davem@davemloft.net>2014-01-13 11:36:43 -0800
commitd10dbad2aafacc7e1391595596e7c5138892dd93 (patch)
treeb894f2e8a65a18272082bbae3b5cdca555ca6e8b /net/ipv4/gre_offload.c
parentMerge branch 'ip_forward_pmtu' (diff)
downloadlinux-dev-d10dbad2aafacc7e1391595596e7c5138892dd93.tar.xz
linux-dev-d10dbad2aafacc7e1391595596e7c5138892dd93.zip
gre_offload: fix sparse non static symbol warning
Fixes the following sparse warning: net/ipv4/gre_offload.c:253:5: warning: symbol 'gre_gro_complete' was not declared. Should it be static? Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/gre_offload.c')
-rw-r--r--net/ipv4/gre_offload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/gre_offload.c b/net/ipv4/gre_offload.c
index 746a7b10d434..31da9f512583 100644
--- a/net/ipv4/gre_offload.c
+++ b/net/ipv4/gre_offload.c
@@ -250,7 +250,7 @@ out:
return pp;
}
-int gre_gro_complete(struct sk_buff *skb, int nhoff)
+static int gre_gro_complete(struct sk_buff *skb, int nhoff)
{
struct gre_base_hdr *greh = (struct gre_base_hdr *)(skb->data + nhoff);
struct packet_offload *ptype;