Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18c57d3c authored by David Spinadel's avatar David Spinadel Committed by John W. Linville
Browse files

iwlwifi: add option to test MFP



Add a Kconfig symbol to enable MFP for testing even
if the firmware file doesn't advertise it.

Signed-off-by: default avatarDavid Spinadel <david.spinadel@intel.com>
Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 8e81f65f
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -127,3 +127,12 @@ config IWLWIFI_P2P
         support when it is loaded.

         Say Y only if you want to experiment with P2P.

config IWLWIFI_EXPERIMENTAL_MFP
	bool "support MFP (802.11w) even if uCode doesn't advertise"
	depends on IWLWIFI
	help
	  This option enables experimental MFP (802.11W) support
	  even if the microcode doesn't advertise it.

	  Say Y only if you want to experiment with MFP.
+3 −0
Original line number Diff line number Diff line
@@ -163,7 +163,10 @@ int iwlagn_mac_setup_register(struct iwl_priv *priv,
		hw->flags |= IEEE80211_HW_SUPPORTS_DYNAMIC_SMPS |
			     IEEE80211_HW_SUPPORTS_STATIC_SMPS;

#ifndef CONFIG_IWLWIFI_EXPERIMENTAL_MFP
	/* enable 11w if the uCode advertise */
	if (capa->flags & IWL_UCODE_TLV_FLAGS_MFP)
#endif /* !CONFIG_IWLWIFI_EXPERIMENTAL_MFP */
		hw->flags |= IEEE80211_HW_MFP_CAPABLE;

	hw->sta_data_size = sizeof(struct iwl_station_priv);