diff options
author | Miquel Raynal <[email protected]> | 2022-01-25 13:14:24 +0100 |
---|---|---|
committer | Stefan Schmidt <[email protected]> | 2022-01-27 08:20:39 +0100 |
commit | 621b24b09eb61c63f262da0c9c5f0e93348897e5 (patch) | |
tree | 5c9e57fb4bd4fab3860de63c5978c0a211cd6d77 | |
parent | e5ce576d45bf72fd0e3dc37eff897bfcc488f6a9 (diff) |
net: ieee802154: ca8210: Stop leaking skb's
Upon error the ieee802154_xmit_complete() helper is not called. Only
ieee802154_wake_queue() is called manually. We then leak the skb
structure.
Free the skb structure upon error before returning.
Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Signed-off-by: Miquel Raynal <[email protected]>
Acked-by: Alexander Aring <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Stefan Schmidt <[email protected]>
-rw-r--r-- | drivers/net/ieee802154/ca8210.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c index ece6ff6049f6..f3438d3e104a 100644 --- a/drivers/net/ieee802154/ca8210.c +++ b/drivers/net/ieee802154/ca8210.c @@ -1771,6 +1771,7 @@ static int ca8210_async_xmit_complete( status ); if (status != MAC_TRANSACTION_OVERFLOW) { + dev_kfree_skb_any(priv->tx_skb); ieee802154_wake_queue(priv->hw); return 0; } |