bcm47xx compile fix for .21, thanks to noz
[openwrt.git] / package / madwifi / patches / 118-txstop_workaround.patch
index f478ea6..8719a6d 100644 (file)
@@ -1,55 +1,36 @@
 diff -ur madwifi.old/ath/if_ath.c madwifi.dev/ath/if_ath.c
---- madwifi.old/ath/if_ath.c   2007-05-15 16:26:02.721036296 +0200
-+++ madwifi.dev/ath/if_ath.c   2007-05-16 15:43:23.095362056 +0200
-@@ -1711,6 +1711,7 @@
-                       } 
- #endif
-                       ATH_SCHEDULE_TQUEUE(&sc->sc_txtq, &needmark);
-+                      sc->sc_tx_start = 0;
-               }
-               if (status & HAL_INT_BMISS) {
-                       sc->sc_stats.ast_bmiss++;
-@@ -2261,6 +2262,25 @@
+--- madwifi.old/ath/if_ath.c   2007-05-21 07:45:03.185429104 +0200
++++ madwifi.dev/ath/if_ath.c   2007-05-21 07:45:55.867420224 +0200
+@@ -2206,6 +2206,17 @@
                txq->axq_link = &lastds->ds_link;
                ath_hal_txstart(ah, txq->axq_qnum);
                sc->sc_dev->trans_start = jiffies;
 +              if ((sc->sc_opmode == HAL_M_IBSS) || (sc->sc_opmode == HAL_M_HOSTAP)) {
-+                      unsigned long last;
-+                      ATH_LOCK(sc);
-+                      last = sc->sc_tx_start;
-+                      ATH_UNLOCK(sc);
-+                      if (last) {
-+                              if (jiffies > last + 2 * HZ) {
++                      if (sc->sc_tx_start && (ath_hal_numtxpending(ah, txq->axq_qnum) > 2)) {
++                              if (jiffies > sc->sc_tx_start + 2 * HZ) {
 +                                      printk("%s: Tx queue stuck. Resetting hardware...\n", sc->sc_dev->name);
 +                                      ath_reset(sc->sc_dev);
-+                                      ATH_LOCK(sc);
 +                                      sc->sc_tx_start = 0;
-+                                      ATH_UNLOCK(sc);
 +                              }
 +                      } else {
-+                              ATH_LOCK(sc);
 +                              sc->sc_tx_start = jiffies;
-+                              ATH_UNLOCK(sc);
 +                      }
 +              }
        }
        ATH_TXQ_UNLOCK(txq);
  
-@@ -7289,6 +7309,10 @@
-                       break;
-               }
-+              ATH_LOCK(sc);
+@@ -7246,6 +7257,7 @@
+                       __func__, ds);
+ #else
+               ds = bf->bf_desc;               /* NB: last descriptor */
 +              sc->sc_tx_start = 0;
-+              ATH_UNLOCK(sc);
-+
- #ifdef ATH_SUPERG_FF
-               ds = &bf->bf_desc[bf->bf_numdescff];
-               DPRINTF(sc, ATH_DEBUG_TX_PROC, "%s: frame's last desc: %p\n",
+ #endif
+               ts = &bf->bf_dsstatus.ds_txstat;
+               status = ath_hal_txprocdesc(ah, ds, ts);
 diff -ur madwifi.old/ath/if_athvar.h madwifi.dev/ath/if_athvar.h
---- madwifi.old/ath/if_athvar.h        2007-05-04 23:09:29.000000000 +0200
-+++ madwifi.dev/ath/if_athvar.h        2007-05-15 16:26:28.911054808 +0200
-@@ -689,6 +689,14 @@
+--- madwifi.old/ath/if_athvar.h        2007-05-18 13:19:16.000000000 +0200
++++ madwifi.dev/ath/if_athvar.h        2007-05-21 07:45:37.720179024 +0200
+@@ -684,6 +684,14 @@
  #endif
        u_int sc_slottimeconf;                  /* manual override for slottime */
        int16_t sc_channoise;                   /* Measured noise of current channel (dBm) */
This page took 0.022046 seconds and 4 git commands to generate.