diff mbox

memory clobber in rx path, maybe related to ath9k.

Message ID 4CB4BC47.7000907@candelatech.com (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Ben Greear Oct. 12, 2010, 7:51 p.m. UTC
None
diff mbox

Patch

diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c
index 8656491..f43a004 100644
--- a/drivers/net/wireless/ath/ath9k/main.c
+++ b/drivers/net/wireless/ath/ath9k/main.c
@@ -398,7 +398,7 @@  void ath_paprd_calibrate(struct work_struct *work)
                                   "Timeout waiting for paprd training on "
                                   "TX chain %d\n",
                                   chain);
-                       goto fail_paprd;
+                       break;
                 }

                 if (!ar9003_paprd_is_done(ah))
@@ -416,7 +416,6 @@  void ath_paprd_calibrate(struct work_struct *work)
                 ath_paprd_activate(sc);
         }

-fail_paprd:
         ath9k_ps_restore(sc);
  }

diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c
index 942be55..d39b4b5 100644
--- a/drivers/net/wireless/ath/ath9k/xmit.c
+++ b/drivers/net/wireless/ath/ath9k/xmit.c
@@ -1919,17 +1919,17 @@  static void ath_tx_complete_buf(struct ath_softc *sc, struct ath_buf *bf,
         dma_unmap_single(sc->dev, bf->bf_dmacontext, skb->len, DMA_TO_DEVICE);

         if (bf->bf_state.bfs_paprd) {
-               if (time_after(jiffies,
-                              bf->bf_state.bfs_paprd_timestamp +
-                              msecs_to_jiffies(ATH_PAPRD_TIMEOUT)))
-                       dev_kfree_skb_any(skb);
-               else
-                       complete(&sc->paprd_complete);
+               /* ath_paprd_calibrate owns the skb. */
+               complete(&sc->paprd_complete);
         } else {
-               ath_tx_complete(sc, skb, bf->aphy, tx_flags);
+               /* stat_tx must be called first, it references skb. */
                 ath_debug_stat_tx(sc, txq, bf, ts);
+               ath_tx_complete(sc, skb, bf->aphy, tx_flags);
         }

+       /* At this point, skb is consumed one way or another */
+       bf->bf_mpdu = NULL;
+
         /*
          * Return the list of ath_buf of this mpdu to free queue
          */