From: Eric Dumazet Date: Mon, 29 Mar 2010 06:07:20 +0000 (-0700) Subject: net: __netif_receive_skb should be static X-Git-Tag: v2.6.35-rc1~473^2~678 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=10f744d205dde72a0016dbdb11e239da8269958b;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git net: __netif_receive_skb should be static Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/net/core/dev.c b/net/core/dev.c index bcb3ed2..887aa84 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2621,7 +2621,7 @@ void netif_nit_deliver(struct sk_buff *skb) rcu_read_unlock(); } -int __netif_receive_skb(struct sk_buff *skb) +static int __netif_receive_skb(struct sk_buff *skb) { struct packet_type *ptype, *pt_prev; struct net_device *orig_dev;