diff options
author | Narayanraddi Masti <team.nmasti@gmail.com> | 2019-02-07 12:16:05 -0800 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2019-04-08 13:58:10 +0200 |
commit | ab60633c7136c300f15a390f3469d7c4be15a055 (patch) | |
tree | 09d4892426871630afcbbac9ff4ea26a264c0ad5 /include/net/cfg80211.h | |
parent | 1e1b11b6a1111cd9e8af1fd6ccda270a9fa3eacf (diff) |
mac80211: Add support for NL80211_STA_INFO_AIRTIME_LINK_METRIC
Add support for mesh airtime link metric attribute
NL80211_STA_INFO_AIRTIME_LINK_METRIC.
Signed-off-by: Narayanraddi Masti <team.nmasti@gmail.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index b13234a486e7..5859a5e02454 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -1327,6 +1327,7 @@ struct cfg80211_tid_stats { * @fcs_err_count: number of packets (MPDUs) received from this station with * an FCS error. This counter should be incremented only when TA of the * received packet with an FCS error matches the peer MAC address. + * @airtime_link_metric: mesh airtime link metric. */ struct station_info { u64 filled; @@ -1381,6 +1382,8 @@ struct station_info { u32 rx_mpdu_count; u32 fcs_err_count; + + u32 airtime_link_metric; }; #if IS_ENABLED(CONFIG_CFG80211) |