From: Or Gerlitz Date: Mon, 20 Jan 2014 11:59:20 +0000 (+0200) Subject: net: Export gro_find_by_type helpers X-Git-Tag: v4.9.8~7055^2~55^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e27a2f839598e48bb345f9fc86d4d54c3944db50;p=platform%2Fkernel%2Flinux-rpi3.git net: Export gro_find_by_type helpers Export the gro_find_receive/complete_by_type helpers to they can be invoked by the gro callbacks of encapsulation protocols such as vxlan. Signed-off-by: Or Gerlitz Signed-off-by: David S. Miller --- diff --git a/net/core/dev.c b/net/core/dev.c index da92305..d89931b 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -3984,6 +3984,7 @@ struct packet_offload *gro_find_receive_by_type(__be16 type) } return NULL; } +EXPORT_SYMBOL(gro_find_receive_by_type); struct packet_offload *gro_find_complete_by_type(__be16 type) { @@ -3997,6 +3998,7 @@ struct packet_offload *gro_find_complete_by_type(__be16 type) } return NULL; } +EXPORT_SYMBOL(gro_find_complete_by_type); static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb) {