diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-04-22 10:29:30 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-05-16 16:39:37 -0400 |
commit | 119363c7dc2bcc0c33c255a7b4979c8c0fdc1896 (patch) | |
tree | 85c7eb2b9104968d017eee14065a2d93ce0150a7 /include/uapi | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) |
cfg80211: add support for per-chain signal strength reporting
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/nl80211.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h index d1e48b5e348f..cbf1e228650f 100644 --- a/include/uapi/linux/nl80211.h +++ b/include/uapi/linux/nl80211.h | |||
@@ -1991,6 +1991,10 @@ enum nl80211_sta_bss_param { | |||
1991 | * @NL80211_STA_INFO_PEER_PM: peer mesh STA link-specific power mode | 1991 | * @NL80211_STA_INFO_PEER_PM: peer mesh STA link-specific power mode |
1992 | * @NL80211_STA_INFO_NONPEER_PM: neighbor mesh STA power save mode towards | 1992 | * @NL80211_STA_INFO_NONPEER_PM: neighbor mesh STA power save mode towards |
1993 | * non-peer STA | 1993 | * non-peer STA |
1994 | * @NL80211_STA_INFO_CHAIN_SIGNAL: per-chain signal strength of last PPDU | ||
1995 | * Contains a nested array of signal strength attributes (u8, dBm) | ||
1996 | * @NL80211_STA_INFO_CHAIN_SIGNAL_AVG: per-chain signal strength average | ||
1997 | * Same format as NL80211_STA_INFO_CHAIN_SIGNAL. | ||
1994 | * @__NL80211_STA_INFO_AFTER_LAST: internal | 1998 | * @__NL80211_STA_INFO_AFTER_LAST: internal |
1995 | * @NL80211_STA_INFO_MAX: highest possible station info attribute | 1999 | * @NL80211_STA_INFO_MAX: highest possible station info attribute |
1996 | */ | 2000 | */ |
@@ -2020,6 +2024,8 @@ enum nl80211_sta_info { | |||
2020 | NL80211_STA_INFO_NONPEER_PM, | 2024 | NL80211_STA_INFO_NONPEER_PM, |
2021 | NL80211_STA_INFO_RX_BYTES64, | 2025 | NL80211_STA_INFO_RX_BYTES64, |
2022 | NL80211_STA_INFO_TX_BYTES64, | 2026 | NL80211_STA_INFO_TX_BYTES64, |
2027 | NL80211_STA_INFO_CHAIN_SIGNAL, | ||
2028 | NL80211_STA_INFO_CHAIN_SIGNAL_AVG, | ||
2023 | 2029 | ||
2024 | /* keep last */ | 2030 | /* keep last */ |
2025 | __NL80211_STA_INFO_AFTER_LAST, | 2031 | __NL80211_STA_INFO_AFTER_LAST, |