1 diff -ur madwifi.old/ath/if_ath.c madwifi.dev/ath/if_ath.c
2 --- madwifi.old/ath/if_ath.c 2007-05-15 16:26:02.721036296 +0200
3 +++ madwifi.dev/ath/if_ath.c 2007-05-16 15:43:23.095362056 +0200
7 ATH_SCHEDULE_TQUEUE(&sc->sc_txtq, &needmark);
10 if (status & HAL_INT_BMISS) {
11 sc->sc_stats.ast_bmiss++;
12 @@ -2261,6 +2262,25 @@
13 txq->axq_link = &lastds->ds_link;
14 ath_hal_txstart(ah, txq->axq_qnum);
15 sc->sc_dev->trans_start = jiffies;
16 + if ((sc->sc_opmode == HAL_M_IBSS) || (sc->sc_opmode == HAL_M_HOSTAP)) {
19 + last = sc->sc_tx_start;
22 + if (jiffies > last + 2 * HZ) {
23 + printk("%s: Tx queue stuck. Resetting hardware...\n", sc->sc_dev->name);
24 + ath_reset(sc->sc_dev);
26 + sc->sc_tx_start = 0;
31 + sc->sc_tx_start = jiffies;
38 @@ -7289,6 +7309,10 @@
43 + sc->sc_tx_start = 0;
47 ds = &bf->bf_desc[bf->bf_numdescff];
48 DPRINTF(sc, ATH_DEBUG_TX_PROC, "%s: frame's last desc: %p\n",
49 diff -ur madwifi.old/ath/if_athvar.h madwifi.dev/ath/if_athvar.h
50 --- madwifi.old/ath/if_athvar.h 2007-05-04 23:09:29.000000000 +0200
51 +++ madwifi.dev/ath/if_athvar.h 2007-05-15 16:26:28.911054808 +0200
54 u_int sc_slottimeconf; /* manual override for slottime */
55 int16_t sc_channoise; /* Measured noise of current channel (dBm) */
58 + * Several MiniPCI cards and most SoC revs frequently cease all transmission
59 + * when operating in IBSS mode. The reason for this is unknown and could potentially
60 + * be a hardware bug. This variable contains the timestamp of the last successful
61 + * transmission and is checked when enqueueing new frames
63 + unsigned long sc_tx_start;
66 typedef void (*ath_callback) (struct ath_softc *);