Commit e515e9cb authored by Zefir Kurtisi's avatar Zefir Kurtisi Committed by John W. Linville

ath9k: non-functional: calculate DFS pulse interval per-wiphy

Systems with multiple DFS channel detectors need to track
timestamp of previous pulse per instance to display the
correct pulse interval.

Since the interval value is used for debug printing only,
this is a non-functional modification.
Signed-off-by: default avatarZefir Kurtisi <zefir.kurtisi@neratec.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4f157547
...@@ -178,12 +178,12 @@ void ath9k_dfs_process_phyerr(struct ath_softc *sc, void *data, ...@@ -178,12 +178,12 @@ void ath9k_dfs_process_phyerr(struct ath_softc *sc, void *data,
pe.ts = mactime; pe.ts = mactime;
if (ath9k_postprocess_radar_event(sc, &ard, &pe)) { if (ath9k_postprocess_radar_event(sc, &ard, &pe)) {
struct dfs_pattern_detector *pd = sc->dfs_detector; struct dfs_pattern_detector *pd = sc->dfs_detector;
static u64 last_ts;
ath_dbg(common, DFS, ath_dbg(common, DFS,
"ath9k_dfs_process_phyerr: channel=%d, ts=%llu, " "ath9k_dfs_process_phyerr: channel=%d, ts=%llu, "
"width=%d, rssi=%d, delta_ts=%llu\n", "width=%d, rssi=%d, delta_ts=%llu\n",
pe.freq, pe.ts, pe.width, pe.rssi, pe.ts-last_ts); pe.freq, pe.ts, pe.width, pe.rssi,
last_ts = pe.ts; pe.ts - sc->debug.stats.dfs_stats.last_ts);
sc->debug.stats.dfs_stats.last_ts = pe.ts;
DFS_STAT_INC(sc, pulses_processed); DFS_STAT_INC(sc, pulses_processed);
if (pd != NULL && pd->add_pulse(pd, &pe)) { if (pd != NULL && pd->add_pulse(pd, &pe)) {
DFS_STAT_INC(sc, radar_detected); DFS_STAT_INC(sc, radar_detected);
......
...@@ -51,6 +51,7 @@ struct ath_dfs_stats { ...@@ -51,6 +51,7 @@ struct ath_dfs_stats {
/* pattern detection stats */ /* pattern detection stats */
u32 pulses_processed; u32 pulses_processed;
u32 radar_detected; u32 radar_detected;
u64 last_ts;
}; };
#if defined(CONFIG_ATH9K_DFS_DEBUGFS) #if defined(CONFIG_ATH9K_DFS_DEBUGFS)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment