aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/tcp_offload.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/tcp_offload.c b/net/ipv4/tcp_offload.c
index 3a7525e6c086..8e3113f46ec1 100644
--- a/net/ipv4/tcp_offload.c
+++ b/net/ipv4/tcp_offload.c
@@ -14,7 +14,7 @@
14#include <net/tcp.h> 14#include <net/tcp.h>
15#include <net/protocol.h> 15#include <net/protocol.h>
16 16
17struct sk_buff *tcp_tso_segment(struct sk_buff *skb, 17struct sk_buff *tcp_gso_segment(struct sk_buff *skb,
18 netdev_features_t features) 18 netdev_features_t features)
19{ 19{
20 struct sk_buff *segs = ERR_PTR(-EINVAL); 20 struct sk_buff *segs = ERR_PTR(-EINVAL);
@@ -139,7 +139,7 @@ struct sk_buff *tcp_tso_segment(struct sk_buff *skb,
139out: 139out:
140 return segs; 140 return segs;
141} 141}
142EXPORT_SYMBOL(tcp_tso_segment); 142EXPORT_SYMBOL(tcp_gso_segment);
143 143
144struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb) 144struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb)
145{ 145{
@@ -320,7 +320,7 @@ static int tcp4_gro_complete(struct sk_buff *skb)
320static const struct net_offload tcpv4_offload = { 320static const struct net_offload tcpv4_offload = {
321 .callbacks = { 321 .callbacks = {
322 .gso_send_check = tcp_v4_gso_send_check, 322 .gso_send_check = tcp_v4_gso_send_check,
323 .gso_segment = tcp_tso_segment, 323 .gso_segment = tcp_gso_segment,
324 .gro_receive = tcp4_gro_receive, 324 .gro_receive = tcp4_gro_receive,
325 .gro_complete = tcp4_gro_complete, 325 .gro_complete = tcp4_gro_complete,
326 }, 326 },