linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mac80211: avoid bss color setting in non-he mode
@ 2020-06-17  8:42 P Praneesh
  2020-06-23 20:51 ` Rajkumar Manoharan
  0 siblings, 1 reply; 2+ messages in thread
From: P Praneesh @ 2020-06-17  8:42 UTC (permalink / raw)
  To: johannes; +Cc: linux-wireless, P Praneesh

Adding bss-color configuration for HE mode alone.
Earlier we have enabled it by default, irrespective
of capabilities. But bss-color feature is only for
HE mode. Hence avoiding this by adding bss-color flag
only for HE mode.

Signed-off-by: P Praneesh <ppranees@codeaurora.org>
---
 net/mac80211/cfg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 548a384..2c5847d 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -992,8 +992,7 @@ static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
 		      BSS_CHANGED_P2P_PS |
 		      BSS_CHANGED_TXPOWER |
 		      BSS_CHANGED_TWT |
-		      BSS_CHANGED_HE_OBSS_PD |
-		      BSS_CHANGED_HE_BSS_COLOR;
+		      BSS_CHANGED_HE_OBSS_PD;
 	int i, err;
 	int prev_beacon_int;
 
@@ -1019,6 +1018,7 @@ static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
 		sdata->vif.bss_conf.frame_time_rts_th =
 			le32_get_bits(params->he_oper->he_oper_params,
 			      IEEE80211_HE_OPERATION_RTS_THRESHOLD_MASK);
+		changed |= BSS_CHANGED_HE_BSS_COLOR;
 	}
 
 	mutex_lock(&local->mtx);
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] mac80211: avoid bss color setting in non-he mode
  2020-06-17  8:42 [PATCH] mac80211: avoid bss color setting in non-he mode P Praneesh
@ 2020-06-23 20:51 ` Rajkumar Manoharan
  0 siblings, 0 replies; 2+ messages in thread
From: Rajkumar Manoharan @ 2020-06-23 20:51 UTC (permalink / raw)
  To: P Praneesh; +Cc: johannes, linux-wireless, linux-wireless-owner

On 2020-06-17 01:42, P Praneesh wrote:
> Adding bss-color configuration for HE mode alone.
> Earlier we have enabled it by default, irrespective
> of capabilities. But bss-color feature is only for
> HE mode. Hence avoiding this by adding bss-color flag
> only for HE mode.
> 
> Signed-off-by: P Praneesh <ppranees@codeaurora.org>
> ---
>  net/mac80211/cfg.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
> index 548a384..2c5847d 100644
> --- a/net/mac80211/cfg.c
> +++ b/net/mac80211/cfg.c
> @@ -992,8 +992,7 @@ static int ieee80211_start_ap(struct wiphy *wiphy,
> struct net_device *dev,
>  		      BSS_CHANGED_P2P_PS |
>  		      BSS_CHANGED_TXPOWER |
>  		      BSS_CHANGED_TWT |
> -		      BSS_CHANGED_HE_OBSS_PD |
> -		      BSS_CHANGED_HE_BSS_COLOR;
> +		      BSS_CHANGED_HE_OBSS_PD;
> 
Why not other HE flags?

>  	int i, err;
>  	int prev_beacon_int;
> 
> @@ -1019,6 +1018,7 @@ static int ieee80211_start_ap(struct wiphy
> *wiphy, struct net_device *dev,
>  		sdata->vif.bss_conf.frame_time_rts_th =
>  			le32_get_bits(params->he_oper->he_oper_params,
>  			      IEEE80211_HE_OPERATION_RTS_THRESHOLD_MASK);
> +		changed |= BSS_CHANGED_HE_BSS_COLOR;
> 
Praneesh,

I see that BSS color is not disabled when NL80211_ATTR_HE_BSS_COLOR is 
not set.
I think this must be fixed in cfg80211.

-Rajkumar

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-06-23 20:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-17  8:42 [PATCH] mac80211: avoid bss color setting in non-he mode P Praneesh
2020-06-23 20:51 ` Rajkumar Manoharan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).