aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/dev.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/core/dev.c')
-rw-r--r--net/core/dev.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 63bd20a75929..d8c43e73f0b7 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -3063,7 +3063,7 @@ out:
3063 return netif_receive_skb(skb); 3063 return netif_receive_skb(skb);
3064} 3064}
3065 3065
3066static void napi_gro_flush(struct napi_struct *napi) 3066inline void napi_gro_flush(struct napi_struct *napi)
3067{ 3067{
3068 struct sk_buff *skb, *next; 3068 struct sk_buff *skb, *next;
3069 3069
@@ -3076,6 +3076,7 @@ static void napi_gro_flush(struct napi_struct *napi)
3076 napi->gro_count = 0; 3076 napi->gro_count = 0;
3077 napi->gro_list = NULL; 3077 napi->gro_list = NULL;
3078} 3078}
3079EXPORT_SYMBOL(napi_gro_flush);
3079 3080
3080enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb) 3081enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
3081{ 3082{