aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/iwlwifi/iwl-agn.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2010-08-23 04:46:47 -0400
committerWey-Yi Guy <wey-yi.w.guy@intel.com>2010-08-27 12:27:44 -0400
commit76d048151cf935281998b591e070581fc438e27e (patch)
treed1a81aa9d0d2bf8a7fd481aed1510b821ec96ec4 /drivers/net/wireless/iwlwifi/iwl-agn.c
parent7e6a588601eb85feb10c7e8898f1f69c3b229a20 (diff)
iwlwifi: introduce beacon context
Only one context can be beaconing at a time, but we need to track which one. Introduce a new variable priv->beacon_ctx to do that. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-agn.c')
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-agn.c32
1 files changed, 21 insertions, 11 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c
index 4efca99b2a9c..55d1cd4c1369 100644
--- a/drivers/net/wireless/iwlwifi/iwl-agn.c
+++ b/drivers/net/wireless/iwlwifi/iwl-agn.c
@@ -345,6 +345,13 @@ static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
345 * beacon contents. 345 * beacon contents.
346 */ 346 */
347 347
348 lockdep_assert_held(&priv->mutex);
349
350 if (!priv->beacon_ctx) {
351 IWL_ERR(priv, "trying to build beacon w/o beacon context!\n");
352 return -EINVAL;
353 }
354
348 /* Initialize memory */ 355 /* Initialize memory */
349 tx_beacon_cmd = &frame->u.beacon; 356 tx_beacon_cmd = &frame->u.beacon;
350 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd)); 357 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
@@ -357,9 +364,7 @@ static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
357 364
358 /* Set up TX command fields */ 365 /* Set up TX command fields */
359 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size); 366 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
360#warning "Use proper STA ID" 367 tx_beacon_cmd->tx.sta_id = priv->beacon_ctx->bcast_sta_id;
361 tx_beacon_cmd->tx.sta_id =
362 priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id;
363 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE; 368 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
364 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK | 369 tx_beacon_cmd->tx.tx_flags = TX_CMD_FLG_SEQ_CTL_MSK |
365 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK; 370 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK;
@@ -369,7 +374,7 @@ static unsigned int iwl_hw_get_beacon_cmd(struct iwl_priv *priv,
369 frame_size); 374 frame_size);
370 375
371 /* Set up packet rate and flags */ 376 /* Set up packet rate and flags */
372 rate = iwl_rate_get_lowest_plcp(priv); 377 rate = iwl_rate_get_lowest_plcp(priv, priv->beacon_ctx);
373 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant, 378 priv->mgmt_tx_ant = iwl_toggle_tx_ant(priv, priv->mgmt_tx_ant,
374 priv->hw_params.valid_tx_ant); 379 priv->hw_params.valid_tx_ant);
375 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant); 380 rate_flags = iwl_ant_idx_to_flags(priv->mgmt_tx_ant);
@@ -602,25 +607,28 @@ static void iwl_bg_beacon_update(struct work_struct *work)
602 container_of(work, struct iwl_priv, beacon_update); 607 container_of(work, struct iwl_priv, beacon_update);
603 struct sk_buff *beacon; 608 struct sk_buff *beacon;
604 609
605 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */ 610 mutex_lock(&priv->mutex);
606#warning "introduce and use beacon context" 611 if (!priv->beacon_ctx) {
607 beacon = ieee80211_beacon_get(priv->hw, 612 IWL_ERR(priv, "updating beacon w/o beacon context!\n");
608 priv->contexts[IWL_RXON_CTX_BSS].vif); 613 goto out;
614 }
609 615
616 /* Pull updated AP beacon from mac80211. will fail if not in AP mode */
617 beacon = ieee80211_beacon_get(priv->hw, priv->beacon_ctx->vif);
610 if (!beacon) { 618 if (!beacon) {
611 IWL_ERR(priv, "update beacon failed\n"); 619 IWL_ERR(priv, "update beacon failed\n");
612 return; 620 goto out;
613 } 621 }
614 622
615 mutex_lock(&priv->mutex);
616 /* new beacon skb is allocated every time; dispose previous.*/ 623 /* new beacon skb is allocated every time; dispose previous.*/
617 if (priv->ibss_beacon) 624 if (priv->ibss_beacon)
618 dev_kfree_skb(priv->ibss_beacon); 625 dev_kfree_skb(priv->ibss_beacon);
619 626
620 priv->ibss_beacon = beacon; 627 priv->ibss_beacon = beacon;
621 mutex_unlock(&priv->mutex);
622 628
623 iwl_send_beacon_cmd(priv); 629 iwl_send_beacon_cmd(priv);
630 out:
631 mutex_unlock(&priv->mutex);
624} 632}
625 633
626static void iwl_bg_bt_runtime_config(struct work_struct *work) 634static void iwl_bg_bt_runtime_config(struct work_struct *work)
@@ -3477,6 +3485,8 @@ void iwl_config_ap(struct iwl_priv *priv, struct ieee80211_vif *vif)
3477 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif); 3485 struct iwl_rxon_context *ctx = iwl_rxon_ctx_from_vif(vif);
3478 int ret = 0; 3486 int ret = 0;
3479 3487
3488 lockdep_assert_held(&priv->mutex);
3489
3480 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) 3490 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
3481 return; 3491 return;
3482 3492