summaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorAvraham Stern <avraham.stern@intel.com>2026-01-11 20:03:50 +0300
committerJohannes Berg <johannes.berg@intel.com>2026-01-27 15:40:36 +0300
commitcfd46d1c6f4bf232c5630b1cf5c8b317d38101c5 (patch)
tree8d6866fac7abd20b8c08c57a99d3b9a59255aa51 /include/net
parent853ce6943c385be2f6cccf371080e592f2e08b0f (diff)
downloadlinux-cfd46d1c6f4bf232c5630b1cf5c8b317d38101c5.tar.xz
wifi: nl80211/cfg80211: add negotiated burst period to FTM result
The FTM result includes some of the periodic measurement negotiated parameters (like the burst duration and number of bursts), but it doesn't include the burst period. Add it to the FTM result notification. Signed-off-by: Avraham Stern <avraham.stern@intel.com> Reviewed-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Link: https://patch.msgid.link/20260111190221.e0778f86edef.I3c98c1933eb639963bc3ffdef81a8788b59f2188@changeid Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/cfg80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 8a81adbf3723..535fd95b0d83 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -4192,6 +4192,7 @@ struct cfg80211_ftm_responder_stats {
* @num_bursts_exp: actual number of bursts exponent negotiated
* @burst_duration: actual burst duration negotiated
* @ftms_per_burst: actual FTMs per burst negotiated
+ * @burst_period: actual burst period negotiated in units of 100ms
* @lci_len: length of LCI information (if present)
* @civicloc_len: length of civic location information (if present)
* @lci: LCI data (may be %NULL)
@@ -4233,6 +4234,7 @@ struct cfg80211_pmsr_ftm_result {
u8 num_bursts_exp;
u8 burst_duration;
u8 ftms_per_burst;
+ u16 burst_period;
s32 rssi_avg;
s32 rssi_spread;
struct rate_info tx_rate, rx_rate;