Author: nbd
Date: 2014-06-06 01:33:57 +0200 (Fri, 06 Jun 2014)
New Revision: 41029

Added:
   trunk/package/kernel/mac80211/patches/563-ath9k_rxorn_intr_fix.patch
Log:
ath9k: add a fix for rx overrun processing

Signed-off-by: Felix Fietkau <[email protected]>

Added: trunk/package/kernel/mac80211/patches/563-ath9k_rxorn_intr_fix.patch
===================================================================
--- trunk/package/kernel/mac80211/patches/563-ath9k_rxorn_intr_fix.patch        
                        (rev 0)
+++ trunk/package/kernel/mac80211/patches/563-ath9k_rxorn_intr_fix.patch        
2014-06-05 23:33:57 UTC (rev 41029)
@@ -0,0 +1,12 @@
+--- a/drivers/net/wireless/ath/ath9k/main.c
++++ b/drivers/net/wireless/ath/ath9k/main.c
+@@ -628,8 +628,7 @@ irqreturn_t ath_isr(int irq, void *dev)
+        * If a FATAL or RXORN interrupt is received, we have to reset the
+        * chip immediately.
+        */
+-      if ((status & ATH9K_INT_FATAL) || ((status & ATH9K_INT_RXORN) &&
+-          !(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)))
++      if (status & ATH9K_INT_FATAL)
+               goto chip_reset;
+ 
+       if ((ah->config.hw_hang_checks & HW_BB_WATCHDOG) &&
_______________________________________________
openwrt-commits mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits

Reply via email to