From mboxrd@z Thu Jan 1 00:00:00 1970 From: Or Gerlitz Subject: [PATCH net-next V2 2/3] net: Export gro_find_by_type helpers Date: Tue, 7 Jan 2014 17:29:53 +0200 Message-ID: <1389108594-665-3-git-send-email-ogerlitz@mellanox.com> References: <1389108594-665-1-git-send-email-ogerlitz@mellanox.com> Cc: netdev@vger.kernel.org, davem@davemloft.net, yanb@mellanox.com, shlomop@mellanox.com, Or Gerlitz To: hkchu@google.com, edumazet@google.com, herbert@gondor.apana.org.au Return-path: Received: from mailp.voltaire.com ([193.47.165.129]:36876 "EHLO mellanox.co.il" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1751574AbaAGPaI (ORCPT ); Tue, 7 Jan 2014 10:30:08 -0500 In-Reply-To: <1389108594-665-1-git-send-email-ogerlitz@mellanox.com> Sender: netdev-owner@vger.kernel.org List-ID: 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 --- net/core/dev.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/net/core/dev.c b/net/core/dev.c index ca520ed..03c249f 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -3935,6 +3935,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) { @@ -3948,6 +3949,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) { -- 1.7.1