mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 15:19:26 -04:00
mt76: testmode: remove undefined behaviour in mt76_testmode_alloc_skb
Get rid of an undefined behaviour in mt76_testmode_alloc_skb routine
allocating skb frames
Fixes: 2601dda8fa ("mt76: testmode: add support to send larger packet")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
committed by
Felix Fietkau
parent
d705ae8685
commit
223cea6d3c
@@ -159,12 +159,8 @@ int mt76_testmode_alloc_skb(struct mt76_phy *phy, u32 len)
|
||||
head->len += frag->len;
|
||||
head->data_len += frag->len;
|
||||
|
||||
if (*frag_tail) {
|
||||
(*frag_tail)->next = frag;
|
||||
frag_tail = &frag;
|
||||
} else {
|
||||
*frag_tail = frag;
|
||||
}
|
||||
*frag_tail = frag;
|
||||
frag_tail = &(*frag_tail)->next;
|
||||
}
|
||||
|
||||
mt76_testmode_free_skb(phy);
|
||||
|
||||
Reference in New Issue
Block a user