Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/rc.c

Issue 6393011: ath9k: Add pktlog support Base URL: ssh://git@gitrw.chromium.org:9222/kernel.git@master
Patch Set: add missing files Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/rc.c
diff --git a/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/rc.c b/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/rc.c
index 5f825cec5b4d5523f12efbcebfc442171bf33def..6bc9b811f93f344f4568e78a3e2f67943329e42e 100644
--- a/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/rc.c
+++ b/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/rc.c
@@ -610,7 +610,7 @@ static u8 ath_rc_setvalid_htrates(struct ath_rate_priv *ath_rc_priv,
static u8 ath_rc_get_highest_rix(struct ath_softc *sc,
struct ath_rate_priv *ath_rc_priv,
const struct ath_rate_table *rate_table,
- int *is_probing)
+ int *is_probing, u16 ac)
{
u32 best_thruput, this_thruput, now_msec;
u8 rate, next_rate, best_rate, maxindex, minindex;
@@ -701,6 +701,8 @@ static u8 ath_rc_get_highest_rix(struct ath_softc *sc,
rate = ath_rc_priv->valid_rate_index[0];
+ ath9k_pktlog_rc(sc, ath_rc_priv, rate_table->info[rate].ratecode,
+ rate, *is_probing, ac);
return rate;
}
@@ -792,7 +794,7 @@ static void ath_get_rate(void *priv, struct ieee80211_sta *sta, void *priv_sta,
try_per_rate = 4;
rate_table = sc->cur_rate_table;
- rix = ath_rc_get_highest_rix(sc, ath_rc_priv, rate_table, &is_probe);
+ rix = ath_rc_get_highest_rix(sc, ath_rc_priv, rate_table, &is_probe, skb_get_queue_mapping(skb));
/*
* If we're in HT mode and both us and our peer supports LDPC.
@@ -1032,7 +1034,8 @@ static bool ath_rc_update_per(struct ath_softc *sc,
static void ath_rc_update_ht(struct ath_softc *sc,
struct ath_rate_priv *ath_rc_priv,
struct ieee80211_tx_info *tx_info,
- int tx_rate, int xretries, int retries)
+ int tx_rate, int xretries, int retries,
+ u16 ac)
{
u32 now_msec = jiffies_to_msecs(jiffies);
int rate;
@@ -1101,6 +1104,9 @@ static void ath_rc_update_ht(struct ath_softc *sc,
ath_debug_stat_retries(sc, tx_rate, xretries, retries,
ath_rc_priv->per[tx_rate]);
+ ath9k_pktlog_rcupdate(sc, ath_rc_priv, tx_rate,
+ rate_table->info[tx_rate].ratecode,
+ xretries, retries, tx_info->status.ack_signal, ac);
}
static int ath_rc_get_rateindex(const struct ath_rate_table *rate_table,
@@ -1133,7 +1139,8 @@ static int ath_rc_get_rateindex(const struct ath_rate_table *rate_table,
static void ath_rc_tx_status(struct ath_softc *sc,
struct ath_rate_priv *ath_rc_priv,
struct ieee80211_tx_info *tx_info,
- int final_ts_idx, int xretries, int long_retry)
+ int final_ts_idx, int xretries, int long_retry,
+ u16 ac)
{
const struct ath_rate_table *rate_table;
struct ieee80211_tx_rate *rates = tx_info->status.rates;
@@ -1162,7 +1169,7 @@ static void ath_rc_tx_status(struct ath_softc *sc,
rix = ath_rc_get_rateindex(rate_table, &rates[i]);
ath_rc_update_ht(sc, ath_rc_priv, tx_info,
rix, xretries ? 1 : 2,
- rates[i].count);
+ rates[i].count, ac);
}
}
} else {
@@ -1184,7 +1191,7 @@ static void ath_rc_tx_status(struct ath_softc *sc,
return;
rix = ath_rc_get_rateindex(rate_table, &rates[i]);
- ath_rc_update_ht(sc, ath_rc_priv, tx_info, rix, xretries, long_retry);
+ ath_rc_update_ht(sc, ath_rc_priv, tx_info, rix, xretries, long_retry, ac);
}
static const
@@ -1385,7 +1392,8 @@ static void ath_tx_status(void *priv, struct ieee80211_supported_band *sband,
tx_status = 1;
ath_rc_tx_status(sc, ath_rc_priv, tx_info, final_ts_idx, tx_status,
- (is_underrun) ? sc->hw->max_rate_tries : long_retry);
+ (is_underrun) ? sc->hw->max_rate_tries : long_retry,
+ skb_get_queue_mapping(skb));
/* Check if aggregation has to be enabled for this tid */
if (conf_is_ht(&sc->hw->conf) &&

Powered by Google App Engine
This is Rietveld 408576698