Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ee166a0e authored by Jouni Malinen's avatar Jouni Malinen Committed by John W. Linville
Browse files

ath9k: Check virtual wiphy state on tx()



mac80211 should not be requesting us to transmit frames on paused
wiphys since we stop the TX queues. Just in case, add debug code to
make sure we catch if this were to happen.

Signed-off-by: default avatarJouni Malinen <jouni.malinen@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 18eb62f8
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2077,6 +2077,12 @@ static int ath9k_tx(struct ieee80211_hw *hw,
	struct ath_tx_control txctl;
	int hdrlen, padsize;

	if (aphy->state != ATH_WIPHY_ACTIVE) {
		printk(KERN_DEBUG "ath9k: %s: TX in unexpected wiphy state "
		       "%d\n", wiphy_name(hw->wiphy), aphy->state);
		goto exit;
	}

	memset(&txctl, 0, sizeof(struct ath_tx_control));

	/*