mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-10-23 07:23:12 +02:00
Bluetooth: L2CAP: copy RX timestamp to new fragments
Copy timestamp too when allocating new skb for received fragment.
Fixes missing RX timestamps with fragmentation.
Fixes: 4d7ea8ee90
("Bluetooth: L2CAP: Fix handling fragmented length")
Signed-off-by: Pauli Virtanen <pav@iki.fi>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This commit is contained in:
parent
1c7664957e
commit
3908feb1bd
|
@ -7415,6 +7415,9 @@ static int l2cap_recv_frag(struct l2cap_conn *conn, struct sk_buff *skb,
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
/* Init rx_len */
|
/* Init rx_len */
|
||||||
conn->rx_len = len;
|
conn->rx_len = len;
|
||||||
|
|
||||||
|
skb_set_delivery_time(conn->rx_skb, skb->tstamp,
|
||||||
|
skb->tstamp_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Copy as much as the rx_skb can hold */
|
/* Copy as much as the rx_skb can hold */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user