* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
[not found] ` <20240314110951.d6ad146df98d.I47127e4fdbdef89e4ccf7483641570ee7871d4e6@changeid>
@ 2024-03-14 16:08 ` Kalle Valo
2024-03-14 16:09 ` Johannes Berg
0 siblings, 1 reply; 9+ messages in thread
From: Kalle Valo @ 2024-03-14 16:08 UTC (permalink / raw)
To: Johannes Berg; +Cc: linux-wireless, Johannes Berg, Miri Korenblit, ath12k
+ ath12k
Johannes Berg <johannes@sipsolutions.net> writes:
> From: Johannes Berg <johannes.berg@intel.com>
>
> MLO ended up not really fully stable yet, we want to make
> sure it works well with the ecosystem before enabling it.
> Thus, remove the flag, but set WIPHY_FLAG_DISABLE_WEXT so
> we don't get wireless extensions back until we enable MLO
> for this hardware.
>
> Cc: stable@vger.kernel.org
> Reviewed-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
> ---
> drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
> index 1935630d3def..69227954e281 100644
> --- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
> +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
> @@ -360,7 +360,7 @@ int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm)
> if (mvm->mld_api_is_used && mvm->nvm_data->sku_cap_11be_enable &&
> !iwlwifi_mod_params.disable_11ax &&
> !iwlwifi_mod_params.disable_11be)
> - hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_MLO;
> + hw->wiphy->flags |= WIPHY_FLAG_DISABLE_WEXT;
I think we should add the same for ath12k, right?
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
2024-03-14 16:08 ` [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being Kalle Valo
@ 2024-03-14 16:09 ` Johannes Berg
2024-03-14 16:34 ` Jeff Johnson
2024-03-14 16:39 ` Kalle Valo
0 siblings, 2 replies; 9+ messages in thread
From: Johannes Berg @ 2024-03-14 16:09 UTC (permalink / raw)
To: Kalle Valo; +Cc: linux-wireless, Miri Korenblit, ath12k
On Thu, 2024-03-14 at 18:08 +0200, Kalle Valo wrote:
>
> > - hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_MLO;
> > + hw->wiphy->flags |= WIPHY_FLAG_DISABLE_WEXT;
>
> I think we should add the same for ath12k, right?
>
It's really up to you, I think. I'm hoping to even get this into stable,
FWIW.
The biggest issue here was our firmware, but the stack is also missing
some things, e.g. we see CQM problems (warnings?) if you actually use
multi-link "in the real world".
johannes
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
2024-03-14 16:09 ` Johannes Berg
@ 2024-03-14 16:34 ` Jeff Johnson
2024-03-14 16:36 ` Johannes Berg
2024-03-14 16:39 ` Kalle Valo
1 sibling, 1 reply; 9+ messages in thread
From: Jeff Johnson @ 2024-03-14 16:34 UTC (permalink / raw)
To: Johannes Berg, Kalle Valo; +Cc: linux-wireless, Miri Korenblit, ath12k
On 3/14/2024 9:09 AM, Johannes Berg wrote:
> On Thu, 2024-03-14 at 18:08 +0200, Kalle Valo wrote:
>>
>>> - hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_MLO;
>>> + hw->wiphy->flags |= WIPHY_FLAG_DISABLE_WEXT;
>>
>> I think we should add the same for ath12k, right?
>>
>
> It's really up to you, I think. I'm hoping to even get this into stable,
> FWIW.
>
> The biggest issue here was our firmware, but the stack is also missing
> some things, e.g. we see CQM problems (warnings?) if you actually use
> multi-link "in the real world".
what does it mean "disable wext" if we are a mac80211 driver that doesn't
utilize wext?
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
2024-03-14 16:34 ` Jeff Johnson
@ 2024-03-14 16:36 ` Johannes Berg
0 siblings, 0 replies; 9+ messages in thread
From: Johannes Berg @ 2024-03-14 16:36 UTC (permalink / raw)
To: Jeff Johnson, Kalle Valo; +Cc: linux-wireless, Miri Korenblit, ath12k
>
> what does it mean "disable wext" if we are a mac80211 driver that doesn't
> utilize wext?
>
You don't have a choice about wireless extension support - cfg80211 will
support wext for any non-MLO drivers.
However now we're faced with the situation where we have devices today
that enable MLO, and thus don't have wext. But if we disable MLO, then
those devices would get wext, and then when we later enable MLO again,
they'd lose wext again ... all that seems very unreasonable, and more
likely to lead to complaints than "new device doesn't support wext",
hence the first patch and disabling it explicitly for a device that will
again get MLO later.
johannes
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
2024-03-14 16:09 ` Johannes Berg
2024-03-14 16:34 ` Jeff Johnson
@ 2024-03-14 16:39 ` Kalle Valo
2024-03-14 16:40 ` Johannes Berg
2024-03-14 16:42 ` Jeff Johnson
1 sibling, 2 replies; 9+ messages in thread
From: Kalle Valo @ 2024-03-14 16:39 UTC (permalink / raw)
To: Johannes Berg; +Cc: linux-wireless, Miri Korenblit, ath12k
Johannes Berg <johannes@sipsolutions.net> writes:
> On Thu, 2024-03-14 at 18:08 +0200, Kalle Valo wrote:
>>
>> > - hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_MLO;
>> > + hw->wiphy->flags |= WIPHY_FLAG_DISABLE_WEXT;
>>
>> I think we should add the same for ath12k, right?
>>
>
> It's really up to you, I think. I'm hoping to even get this into stable,
> FWIW.
ath12k doesn't support MLO yet but I feel that disabling wext already
now would be consistent from user's point of view.
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
2024-03-14 16:39 ` Kalle Valo
@ 2024-03-14 16:40 ` Johannes Berg
2024-03-14 16:45 ` Kalle Valo
2024-03-14 16:42 ` Jeff Johnson
1 sibling, 1 reply; 9+ messages in thread
From: Johannes Berg @ 2024-03-14 16:40 UTC (permalink / raw)
To: Kalle Valo; +Cc: linux-wireless, Miri Korenblit, ath12k
On Thu, 2024-03-14 at 18:39 +0200, Kalle Valo wrote:
> Johannes Berg <johannes@sipsolutions.net> writes:
>
> > On Thu, 2024-03-14 at 18:08 +0200, Kalle Valo wrote:
> > >
> > > > - hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_MLO;
> > > > + hw->wiphy->flags |= WIPHY_FLAG_DISABLE_WEXT;
> > >
> > > I think we should add the same for ath12k, right?
> > >
> >
> > It's really up to you, I think. I'm hoping to even get this into stable,
> > FWIW.
>
> ath12k doesn't support MLO yet but I feel that disabling wext already
> now would be consistent from user's point of view.
Ah, you're in the situation where wext is still enabled now, but will
disappear when you enable MLO.
Agree then that it would make sense to disable wext right now so it's
not a software upgrade for the same hardware that removes it.
johannes
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
2024-03-14 16:39 ` Kalle Valo
2024-03-14 16:40 ` Johannes Berg
@ 2024-03-14 16:42 ` Jeff Johnson
2024-03-14 18:28 ` Kalle Valo
1 sibling, 1 reply; 9+ messages in thread
From: Jeff Johnson @ 2024-03-14 16:42 UTC (permalink / raw)
To: Kalle Valo, Johannes Berg; +Cc: linux-wireless, Miri Korenblit, ath12k
On 3/14/2024 9:39 AM, Kalle Valo wrote:
> Johannes Berg <johannes@sipsolutions.net> writes:
>
>> On Thu, 2024-03-14 at 18:08 +0200, Kalle Valo wrote:
>>>
>>>> - hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_MLO;
>>>> + hw->wiphy->flags |= WIPHY_FLAG_DISABLE_WEXT;
>>>
>>> I think we should add the same for ath12k, right?
>>>
>>
>> It's really up to you, I think. I'm hoping to even get this into stable,
>> FWIW.
>
> ath12k doesn't support MLO yet but I feel that disabling wext already
> now would be consistent from user's point of view.
Now that I understand what this is doing I completely agree. We should prevent
the use of wext with ath12k.
/jeff
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
2024-03-14 16:40 ` Johannes Berg
@ 2024-03-14 16:45 ` Kalle Valo
0 siblings, 0 replies; 9+ messages in thread
From: Kalle Valo @ 2024-03-14 16:45 UTC (permalink / raw)
To: Johannes Berg; +Cc: linux-wireless, Miri Korenblit, ath12k
Johannes Berg <johannes@sipsolutions.net> writes:
> On Thu, 2024-03-14 at 18:39 +0200, Kalle Valo wrote:
>> Johannes Berg <johannes@sipsolutions.net> writes:
>>
>> > On Thu, 2024-03-14 at 18:08 +0200, Kalle Valo wrote:
>> > >
>> > > > - hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_MLO;
>> > > > + hw->wiphy->flags |= WIPHY_FLAG_DISABLE_WEXT;
>> > >
>> > > I think we should add the same for ath12k, right?
>> > >
>> >
>> > It's really up to you, I think. I'm hoping to even get this into stable,
>> > FWIW.
>>
>> ath12k doesn't support MLO yet but I feel that disabling wext already
>> now would be consistent from user's point of view.
>
> Ah, you're in the situation where wext is still enabled now, but will
> disappear when you enable MLO.
Exactly.
> Agree then that it would make sense to disable wext right now so it's
> not a software upgrade for the same hardware that removes it.
Good, thanks for confirming.
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being
2024-03-14 16:42 ` Jeff Johnson
@ 2024-03-14 18:28 ` Kalle Valo
0 siblings, 0 replies; 9+ messages in thread
From: Kalle Valo @ 2024-03-14 18:28 UTC (permalink / raw)
To: Jeff Johnson; +Cc: Johannes Berg, linux-wireless, Miri Korenblit, ath12k
Jeff Johnson <quic_jjohnson@quicinc.com> writes:
> On 3/14/2024 9:39 AM, Kalle Valo wrote:
>> Johannes Berg <johannes@sipsolutions.net> writes:
>>
>>> On Thu, 2024-03-14 at 18:08 +0200, Kalle Valo wrote:
>>>>
>>>>> - hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_MLO;
>>>>> + hw->wiphy->flags |= WIPHY_FLAG_DISABLE_WEXT;
>>>>
>>>> I think we should add the same for ath12k, right?
>>>>
>>>
>>> It's really up to you, I think. I'm hoping to even get this into stable,
>>> FWIW.
>>
>> ath12k doesn't support MLO yet but I feel that disabling wext already
>> now would be consistent from user's point of view.
>
> Now that I understand what this is doing I completely agree. We should prevent
> the use of wext with ath12k.
And thinking more about this I think it would be good that other drivers
supporting Wi-Fi 7 hardware do the same until they also support MLO. Of
course Wi-Fi 6 and older hardware should still support wext,
unfortunately :/
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-03-14 18:28 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20240314110951.b50f1dc4ec21.I656ddd8178eedb49dc5c6c0e70f8ce5807afb54f@changeid>
[not found] ` <20240314110951.d6ad146df98d.I47127e4fdbdef89e4ccf7483641570ee7871d4e6@changeid>
2024-03-14 16:08 ` [PATCH 2/2] wifi: iwlwifi: mvm: disable MLO for the time being Kalle Valo
2024-03-14 16:09 ` Johannes Berg
2024-03-14 16:34 ` Jeff Johnson
2024-03-14 16:36 ` Johannes Berg
2024-03-14 16:39 ` Kalle Valo
2024-03-14 16:40 ` Johannes Berg
2024-03-14 16:45 ` Kalle Valo
2024-03-14 16:42 ` Jeff Johnson
2024-03-14 18:28 ` Kalle Valo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox