]> git.baikalelectronics.ru Git - kernel.git/commit
iwlwifi: mvm: fix SKB leak on invalid queue
authorJohannes Berg <johannes.berg@intel.com>
Wed, 11 Dec 2019 09:09:56 +0000 (10:09 +0100)
committerLuca Coelho <luciano.coelho@intel.com>
Mon, 23 Dec 2019 23:34:52 +0000 (01:34 +0200)
commit9c8906bbf435cdf7ea0229d1c52631b8a5384c0e
treed092721a7fc87262793799ded5af8c0dfad5c4a1
parent62c7dd386605068fdf5bc538f43e33f489eb7117
iwlwifi: mvm: fix SKB leak on invalid queue

It used to be the case that if we got here, we wouldn't warn
but instead allocate the queue (DQA). With using the mac80211
TXQs model this changed, and we really have nothing to do with
the frame here anymore, hence the warning now.

However, clearly we missed in coding & review that this is now
a pure error path and leaks the SKB if we return 0 instead of
an indication that the SKB needs to be freed. Fix this.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Fixes: a52d6f327b4a ("iwlwifi: mvm: support mac80211 TXQs model")
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/tx.c