mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 04:53:36 +01:00
f011b313e8
When broadcasting data to multiple nodes via MHI, using skb_clone()
causes all nodes to receive the same header data. This can result in
packets being discarded by endpoints, leading to lost data.
This issue occurs when a socket is closed, and a QRTR_TYPE_DEL_CLIENT
packet is broadcasted. All nodes receive the same destination node ID,
causing the node connected to the client to discard the packet and
remain unaware of the client's deletion.
Replace skb_clone() with pskb_copy(), to create a separate copy of
the header for each sk_buff.
Fixes:
|
||
---|---|---|
.. | ||
af_qrtr.c | ||
Kconfig | ||
Makefile | ||
mhi.c | ||
ns.c | ||
qrtr.h | ||
smd.c | ||
tun.c |