diff options
author | Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> | 2016-06-02 20:05:39 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-04 01:37:21 +0200 |
commit | 57c05650394b384605f5183747991d19ee543759 (patch) | |
tree | 8f12d716a8a2cc0032cfc9873f70a5d5aab923ce /net | |
parent | loopback: make use of NETIF_F_GSO_SOFTWARE (diff) | |
download | linux-57c05650394b384605f5183747991d19ee543759.tar.xz linux-57c05650394b384605f5183747991d19ee543759.zip |
skbuff: export skb_gro_receive
sctp GSO requires it and sctp can be compiled as a module, so we need to
export this function.
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Tested-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/skbuff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index f2b77e549c03..4724bcf9b0ca 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -3438,6 +3438,7 @@ done: NAPI_GRO_CB(skb)->same_flow = 1; return 0; } +EXPORT_SYMBOL_GPL(skb_gro_receive); void __init skb_init(void) { |