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

Commit f513dfff authored by Daniel C Halperin's avatar Daniel C Halperin Committed by John W. Linville
Browse files

iwlwifi: make iwlwifi send beacons



Handle BSS_CHANGED_BEACON_ENABLED to enable the sending
of beacons. Also set the correct HT RXON and QoS config.

Signed-off-by: default avatarDaniel C Halperin <daniel.c.halperin@intel.com>
Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarReinette Chatre <reinette.chatre@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 47ff65c4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2563,6 +2563,10 @@ void iwl_config_ap(struct iwl_priv *priv)
			IWL_WARN(priv, "REPLY_RXON_TIMING failed - "
					"Attempting to continue.\n");

		/* AP has all antennas */
		priv->chain_noise_data.active_chains =
			priv->hw_params.valid_rx_ant;
		iwl_set_rxon_ht(priv, &priv->current_ht_config);
		if (priv->cfg->ops->hcmd->set_rxon_chain)
			priv->cfg->ops->hcmd->set_rxon_chain(priv);

@@ -2591,6 +2595,7 @@ void iwl_config_ap(struct iwl_priv *priv)
		/* restore RXON assoc */
		priv->staging_rxon.filter_flags |= RXON_FILTER_ASSOC_MSK;
		iwlcore_commit_rxon(priv);
		iwl_reset_qos(priv);
		spin_lock_irqsave(&priv->lock, flags);
		iwl_activate_qos(priv, 1);
		spin_unlock_irqrestore(&priv->lock, flags);
+8 −0
Original line number Diff line number Diff line
@@ -2497,6 +2497,14 @@ void iwl_bss_info_changed(struct ieee80211_hw *hw,
		}
	}

	if ((changes & BSS_CHANGED_BEACON_ENABLED) &&
	    vif->bss_conf.enable_beacon) {
		memcpy(priv->staging_rxon.bssid_addr,
		       bss_conf->bssid, ETH_ALEN);
		memcpy(priv->bssid, bss_conf->bssid, ETH_ALEN);
		iwlcore_config_ap(priv);
	}

	mutex_unlock(&priv->mutex);

	IWL_DEBUG_MAC80211(priv, "leave\n");