ath10k: fix rx buffer tracing
authorMichal Kazior <michal.kazior@tieto.com>
Thu, 23 Oct 2014 14:04:23 +0000 (17:04 +0300)
committerKalle Valo <kvalo@qca.qualcomm.com>
Fri, 24 Oct 2014 13:28:42 +0000 (16:28 +0300)
Tracing function was called before buffers were
unmapped from DMA.

Signed-off-by: Michal Kazior <michal.kazior@tieto.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath10k/htt_rx.c

index ca466ce..a7d29c8 100644 (file)
@@ -291,9 +291,6 @@ static inline struct sk_buff *ath10k_htt_rx_netbuf_pop(struct ath10k_htt *htt)
        htt->rx_ring.sw_rd_idx.msdu_payld = idx;
        htt->rx_ring.fill_cnt--;
 
-       trace_ath10k_htt_rx_pop_msdu(ar, msdu->data, msdu->len +
-                                    skb_tailroom(msdu));
-
        return msdu;
 }
 
@@ -339,6 +336,8 @@ static int ath10k_htt_rx_amsdu_pop(struct ath10k_htt *htt,
 
                ath10k_dbg_dump(ar, ATH10K_DBG_HTT_DUMP, NULL, "htt rx pop: ",
                                msdu->data, msdu->len + skb_tailroom(msdu));
+               trace_ath10k_htt_rx_pop_msdu(ar, msdu->data, msdu->len +
+                                            skb_tailroom(msdu));
 
                rx_desc = (struct htt_rx_desc *)msdu->data;
 
@@ -438,6 +437,8 @@ static int ath10k_htt_rx_amsdu_pop(struct ath10k_htt *htt,
                        ath10k_dbg_dump(ar, ATH10K_DBG_HTT_DUMP, NULL,
                                        "htt rx chained: ", next->data,
                                        next->len + skb_tailroom(next));
+                       trace_ath10k_htt_rx_pop_msdu(ar, msdu->data, msdu->len +
+                                                    skb_tailroom(msdu));
 
                        skb_trim(next, 0);
                        skb_put(next, min(msdu_len, HTT_RX_BUF_SIZE));