net: ethernet: rmnet: Always subtract MAP header
Commit e1d9a90a9bfd ("net: ethernet: rmnet: Support for ingress MAPv5 checksum offload") broke ingress handling for devices where RMNET_FLAGS_INGRESS_MAP_CKSUMV5 or RMNET_FLAGS_INGRESS_MAP_CKSUMV4 are not set. Unless either of these flags are set, the MAP header is not removed. This commit restores the original logic by ensuring that the MAP header is removed for all MAP packets. Fixes: e1d9a90a9bfd ("net: ethernet: rmnet: Support for ingress MAPv5 checksum offload") Signed-off-by: Kristian Evensen <kristian.evensen@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6fb566c927
commit
8b8701d0b4
@ -88,11 +88,12 @@ __rmnet_map_ingress_handler(struct sk_buff *skb,
|
||||
goto free_skb;
|
||||
skb_pull(skb, sizeof(*map_header));
|
||||
rmnet_set_skb_proto(skb);
|
||||
} else if (port->data_format & RMNET_FLAGS_INGRESS_MAP_CKSUMV4) {
|
||||
} else {
|
||||
/* Subtract MAP header */
|
||||
skb_pull(skb, sizeof(*map_header));
|
||||
rmnet_set_skb_proto(skb);
|
||||
if (!rmnet_map_checksum_downlink_packet(skb, len + pad))
|
||||
if (port->data_format & RMNET_FLAGS_INGRESS_MAP_CKSUMV4 &&
|
||||
!rmnet_map_checksum_downlink_packet(skb, len + pad))
|
||||
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user