All of lore.kernel.org
 help / color / mirror / Atom feed
* 802.11k, wpa_supplicant and iwlwifi
@ 2021-12-21 14:46 Michael Yartys
  2022-01-06 22:10 ` Johannes Berg
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Yartys @ 2021-12-21 14:46 UTC (permalink / raw)
  To: linux-wireless

Hi

From what I understand, wpa_supplicant only processes 802.11k frames if the underlying driver indicates support for it through a flag. I haven't really found any information on whether this is the case for iwlwifi. Does anybody know if iwlwifi supports this? I don't know if this also depends on which wireless card that I use, so I'll include it in case it does: Intel 7260AC.

Regards
Michael

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

* Re: 802.11k, wpa_supplicant and iwlwifi
  2021-12-21 14:46 802.11k, wpa_supplicant and iwlwifi Michael Yartys
@ 2022-01-06 22:10 ` Johannes Berg
  0 siblings, 0 replies; 2+ messages in thread
From: Johannes Berg @ 2022-01-06 22:10 UTC (permalink / raw)
  To: Michael Yartys, linux-wireless

On Tue, 2021-12-21 at 14:46 +0000, Michael Yartys wrote:
> Hi
> 
> From what I understand, wpa_supplicant only processes 802.11k frames
> if the underlying driver indicates support for it through a flag. I
> haven't really found any information on whether this is the case for
> iwlwifi. Does anybody know if iwlwifi supports this? I don't know if
> this also depends on which wireless card that I use, so I'll include
> it in case it does: Intel 7260AC.
> 

wpa_supplicant will advertise RRM support
(WLAN_EID_RRM_ENABLED_CAPABILITIES) if the driver has certain
capabilities:

        if (!((wpa_s->drv_rrm_flags &
               WPA_DRIVER_FLAGS_DS_PARAM_SET_IE_IN_PROBES) &&
              (wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_QUIET)) &&
            !(wpa_s->drv_rrm_flags & WPA_DRIVER_FLAGS_SUPPORT_RRM)) {
                wpa_printf(MSG_DEBUG,
                           "RRM: Insufficient RRM support in driver - do not use RRM");
                return;
        }


That's almost certainly not true for 7260, as far as I remember that
device predates our work to support RRM, and so the firmware wouldn't
have the corresponding capabilities.

johannes

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

end of thread, other threads:[~2022-01-06 22:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-21 14:46 802.11k, wpa_supplicant and iwlwifi Michael Yartys
2022-01-06 22:10 ` Johannes Berg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.