mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
wilc1000: free resource in wilc_wlan_txq_add_net_pkt() for failure path
Before returing from wilc_wlan_txq_add_net_pkt() invoke tx_complete_fn() callback to free up allocated memory for failure cases. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20201125114059.10006-3-ajay.kathat@microchip.com
This commit is contained in:
parent
c04fabacb7
commit
dd460e2ac0
1 changed files with 6 additions and 2 deletions
|
@ -284,13 +284,17 @@ int wilc_wlan_txq_add_net_pkt(struct net_device *dev, void *priv, u8 *buffer,
|
|||
|
||||
wilc = vif->wilc;
|
||||
|
||||
if (wilc->quit)
|
||||
if (wilc->quit) {
|
||||
tx_complete_fn(priv, 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
tqe = kmalloc(sizeof(*tqe), GFP_ATOMIC);
|
||||
|
||||
if (!tqe)
|
||||
if (!tqe) {
|
||||
tx_complete_fn(priv, 0);
|
||||
return 0;
|
||||
}
|
||||
tqe->type = WILC_NET_PKT;
|
||||
tqe->buffer = buffer;
|
||||
tqe->buffer_size = buffer_size;
|
||||
|
|
Loading…
Add table
Reference in a new issue