This patch fixes a regression introduced in commit 701396910a42dc69cf0284f4727e48f5e0f83151 [PATCH 18/29] ath9k: avoid the copy skb->cb on every RX'd skb With that change, the rx status in skb->cb was left uninitialized Signed-off-by: Felix Fietkau <nbd@xxxxxxxxxxx> --- --- a/drivers/net/wireless/ath/ath9k/common.c +++ b/drivers/net/wireless/ath/ath9k/common.c @@ -203,6 +203,7 @@ int ath9k_cmn_rx_skb_preprocess(struct a { struct ath_hw *ah = common->ah; + memset(rx_status, 0, sizeof(struct ieee80211_rx_status)); if (!ath9k_rx_accept(common, skb, rx_status, rx_stats, decrypt_error)) return -EINVAL; -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html