net: Remove gso_send_check as an offload callback
The send_check logic was only interesting in cases of TCP offload and UDP UFO where the checksum needed to be initialized to the pseudo header checksum. Now we've moved that logic into the related gso_segment functions so gso_send_check is no longer needed. Signed-off-by: Tom Herbert <therbert@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
f71470b37e
commit
53e5039896
@@ -65,15 +65,9 @@ out:
|
||||
return segs;
|
||||
}
|
||||
|
||||
static int mpls_gso_send_check(struct sk_buff *skb)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct packet_offload mpls_mc_offload = {
|
||||
.type = cpu_to_be16(ETH_P_MPLS_MC),
|
||||
.callbacks = {
|
||||
.gso_send_check = mpls_gso_send_check,
|
||||
.gso_segment = mpls_gso_segment,
|
||||
},
|
||||
};
|
||||
@@ -81,7 +75,6 @@ static struct packet_offload mpls_mc_offload = {
|
||||
static struct packet_offload mpls_uc_offload = {
|
||||
.type = cpu_to_be16(ETH_P_MPLS_UC),
|
||||
.callbacks = {
|
||||
.gso_send_check = mpls_gso_send_check,
|
||||
.gso_segment = mpls_gso_segment,
|
||||
},
|
||||
};
|
||||
|
Reference in New Issue
Block a user