]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
ath9k: add sampling methods for (tx|rx) timestamp
authorLorenzo Bianconi <lorenzo.bianconi83@gmail.com>
Tue, 16 Sep 2014 00:13:12 +0000 (02:13 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 16 Sep 2014 20:18:38 +0000 (16:18 -0400)
Add sampling methods for ACK RX timestamp in ath_rx_tasklet() and for TX frame
timestamp in ath_tx_complete_aggr() and in ath_tx_process_buffer(). These
samples will be used in dynack processing for ACK timeout estimation

Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/recv.c
drivers/net/wireless/ath/ath9k/xmit.c

index 0b53b74ffb028c4af1205b78a9f7b0a8fb95b3f8..66c5fe81a03543b30c67534832b76d40e30ac254 100644 (file)
@@ -1007,6 +1007,7 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp)
        unsigned long flags;
        dma_addr_t new_buf_addr;
        unsigned int budget = 512;
+       struct ieee80211_hdr *hdr;
 
        if (edma)
                dma_type = DMA_BIDIRECTIONAL;
@@ -1136,6 +1137,10 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp)
                ath9k_apply_ampdu_details(sc, &rs, rxs);
                ath_debug_rate_stats(sc, &rs, skb);
 
+               hdr = (struct ieee80211_hdr *)skb->data;
+               if (ieee80211_is_ack(hdr->frame_control))
+                       ath_dynack_sample_ack_ts(sc->sc_ah, skb, rs.rs_tstamp);
+
                ieee80211_rx(hw, skb);
 
 requeue_drop_frag:
index 281986613fb2fe7acd705b41e36d4bbc45f5807b..93ad31be0adabc86e2dab06cb2cb92adcc72b7c2 100644 (file)
@@ -587,6 +587,10 @@ static void ath_tx_complete_aggr(struct ath_softc *sc, struct ath_txq *txq,
                                memcpy(tx_info->control.rates, rates, sizeof(rates));
                                ath_tx_rc_status(sc, bf, ts, nframes, nbad, txok);
                                rc_update = false;
+                               if (bf == bf->bf_lastbf)
+                                       ath_dynack_sample_tx_ts(sc->sc_ah,
+                                                               bf->bf_mpdu,
+                                                               ts);
                        }
 
                        ath_tx_complete_buf(sc, bf, txq, &bf_head, ts,
@@ -687,6 +691,7 @@ static void ath_tx_process_buffer(struct ath_softc *sc, struct ath_txq *txq,
                        memcpy(info->control.rates, bf->rates,
                               sizeof(info->control.rates));
                        ath_tx_rc_status(sc, bf, ts, 1, txok ? 0 : 1, txok);
+                       ath_dynack_sample_tx_ts(sc->sc_ah, bf->bf_mpdu, ts);
                }
                ath_tx_complete_buf(sc, bf, txq, bf_head, ts, txok);
        } else