mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-05 21:58:11 +07:00
6lowpan: next header is not properly set upon decompression of a UDP header.
This causes a drop of the UDP packet. Signed-off-by: Tony Cheneau <tony.cheneau@amnesiak.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8d879a3f98
commit
f5c20f58d9
@ -918,9 +918,11 @@ lowpan_process_data(struct sk_buff *skb)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* UDP data uncompression */
|
/* UDP data uncompression */
|
||||||
if (iphc0 & LOWPAN_IPHC_NH_C)
|
if (iphc0 & LOWPAN_IPHC_NH_C) {
|
||||||
if (lowpan_uncompress_udp_header(skb))
|
if (lowpan_uncompress_udp_header(skb))
|
||||||
goto drop;
|
goto drop;
|
||||||
|
hdr.nexthdr = UIP_PROTO_UDP;
|
||||||
|
}
|
||||||
|
|
||||||
/* Not fragmented package */
|
/* Not fragmented package */
|
||||||
hdr.payload_len = htons(skb->len);
|
hdr.payload_len = htons(skb->len);
|
||||||
|
Loading…
Reference in New Issue
Block a user