Message ID | 20250117170416.2907530-2-quic_ramess@quicinc.com |
---|---|
State | Superseded |
Headers | show |
Series | wifi: cfg80211: update EML capabilities of an ML Station | expand |
On Fri, 2025-01-17 at 22:34 +0530, Rameshkumar Sundaram wrote: > > include/net/cfg80211.h | 5 +++++ > net/wireless/nl80211.c | 12 ++++++++++++ > 2 files changed, 17 insertions(+) > > diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h > index 363d7dd2255a..7a80dbf37881 100644 > --- a/include/net/cfg80211.h > +++ b/include/net/cfg80211.h > @@ -1756,6 +1756,9 @@ struct cfg80211_ttlm_params { > * @supported_oper_classes_len: number of supported operating classes > * @support_p2p_ps: information if station supports P2P PS mechanism > * @airtime_weight: airtime scheduler weight for this station > + * @eml_cap_present: Specifies if EML capabilities field (@eml_cap) is > + * present/updated > + * @eml_cap: EML capabilities of this station > * @link_sta_params: link related params. > */ > struct station_parameters { > @@ -1780,6 +1783,8 @@ struct station_parameters { > u8 supported_oper_classes_len; > int support_p2p_ps; > u16 airtime_weight; > + bool eml_cap_present; > + u16 eml_cap; > struct link_station_parameters link_sta_params; > }; OK, I get that this is the minimal change that actually makes this work, but it seems a bit lazy to me. Allow me to explain: You don't actually _want_ - nor even implement in patch 3 - this changing at any point in runtime. OTOH, you _do_ need it to change after the station is allocated, because in auth frame exchange you don't have the information yet, and that's when the MLD is added. So I really think this ought to be accompanied with a change to cfg80211_check_station_change() that disallows changing this while the station is already associated? johannes
On 2/28/2025 6:02 PM, Johannes Berg wrote: > On Fri, 2025-01-17 at 22:34 +0530, Rameshkumar Sundaram wrote: >> >> include/net/cfg80211.h | 5 +++++ >> net/wireless/nl80211.c | 12 ++++++++++++ >> 2 files changed, 17 insertions(+) >> >> diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h >> index 363d7dd2255a..7a80dbf37881 100644 >> --- a/include/net/cfg80211.h >> +++ b/include/net/cfg80211.h >> @@ -1756,6 +1756,9 @@ struct cfg80211_ttlm_params { >> * @supported_oper_classes_len: number of supported operating classes >> * @support_p2p_ps: information if station supports P2P PS mechanism >> * @airtime_weight: airtime scheduler weight for this station >> + * @eml_cap_present: Specifies if EML capabilities field (@eml_cap) is >> + * present/updated >> + * @eml_cap: EML capabilities of this station >> * @link_sta_params: link related params. >> */ >> struct station_parameters { >> @@ -1780,6 +1783,8 @@ struct station_parameters { >> u8 supported_oper_classes_len; >> int support_p2p_ps; >> u16 airtime_weight; >> + bool eml_cap_present; >> + u16 eml_cap; >> struct link_station_parameters link_sta_params; >> }; > > OK, I get that this is the minimal change that actually makes this work, > but it seems a bit lazy to me. Allow me to explain: You don't actually > _want_ - nor even implement in patch 3 - this changing at any point in > runtime. OTOH, you _do_ need it to change after the station is > allocated, because in auth frame exchange you don't have the information > yet, and that's when the MLD is added. > > So I really think this ought to be accompanied with a change to > cfg80211_check_station_change() that disallows changing this while the > station is already associated? > Yes, That's correct thanks for pointing it out, will add changes to disallow modification if STA is already associated (i.e. if != CFG80211_STA_AP_CLIENT_UNASSOC) > johannes >
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 363d7dd2255a..7a80dbf37881 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -1756,6 +1756,9 @@ struct cfg80211_ttlm_params { * @supported_oper_classes_len: number of supported operating classes * @support_p2p_ps: information if station supports P2P PS mechanism * @airtime_weight: airtime scheduler weight for this station + * @eml_cap_present: Specifies if EML capabilities field (@eml_cap) is + * present/updated + * @eml_cap: EML capabilities of this station * @link_sta_params: link related params. */ struct station_parameters { @@ -1780,6 +1783,8 @@ struct station_parameters { u8 supported_oper_classes_len; int support_p2p_ps; u16 airtime_weight; + bool eml_cap_present; + u16 eml_cap; struct link_station_parameters link_sta_params; }; diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index d7d3da0f6833..8e5002aaedab 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -833,6 +833,7 @@ static const struct nla_policy nl80211_policy[NUM_NL80211_ATTR] = { [NL80211_ATTR_MLD_ADDR] = NLA_POLICY_EXACT_LEN(ETH_ALEN), [NL80211_ATTR_MLO_SUPPORT] = { .type = NLA_FLAG }, [NL80211_ATTR_MAX_NUM_AKM_SUITES] = { .type = NLA_REJECT }, + [NL80211_ATTR_EML_CAPABILITY] = { .type = NLA_U16 }, [NL80211_ATTR_PUNCT_BITMAP] = NLA_POLICY_FULL_RANGE(NLA_U32, &nl80211_punct_bitmap_range), @@ -7457,6 +7458,12 @@ static int nl80211_set_station(struct sk_buff *skb, struct genl_info *info) params.link_sta_params.he_6ghz_capa = nla_data(info->attrs[NL80211_ATTR_HE_6GHZ_CAPABILITY]); + if (info->attrs[NL80211_ATTR_EML_CAPABILITY]) { + params.eml_cap_present = true; + params.eml_cap = + nla_get_u16(info->attrs[NL80211_ATTR_EML_CAPABILITY]); + } + if (info->attrs[NL80211_ATTR_AIRTIME_WEIGHT]) params.airtime_weight = nla_get_u16(info->attrs[NL80211_ATTR_AIRTIME_WEIGHT]); @@ -7615,6 +7622,11 @@ static int nl80211_new_station(struct sk_buff *skb, struct genl_info *info) } } + if (info->attrs[NL80211_ATTR_EML_CAPABILITY]) { + params.eml_cap_present = true; + params.eml_cap = nla_get_u16(info->attrs[NL80211_ATTR_EML_CAPABILITY]); + } + if (info->attrs[NL80211_ATTR_HE_6GHZ_CAPABILITY]) params.link_sta_params.he_6ghz_capa = nla_data(info->attrs[NL80211_ATTR_HE_6GHZ_CAPABILITY]);