linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: wwguy <wey-yi.w.guy@intel.com>
To: Stanislaw Gruszka <sgruszka@redhat.com>
Cc: Intel Linux Wireless <ilw@linux.intel.com>,
	"linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH 2/3] iwlwifi: more priv->mutex serialization
Date: Thu, 31 Mar 2011 09:15:50 -0700	[thread overview]
Message-ID: <1301588150.22383.9.camel@wwguy-ubuntu> (raw)
In-Reply-To: <1301585788-7331-2-git-send-email-sgruszka@redhat.com>

On Thu, 2011-03-31 at 08:36 -0700, Stanislaw Gruszka wrote:
> Check status bits with mutex taken, because when we wait for mutex
> unlock, status can change. Patch should also make remaining sync
> commands be send with priv->mutex taken. That will prevent execute
> these commands when we are currently reset firmware, what could
> possibly cause troubles.
> 
> Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Acked-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
> ---
>  drivers/net/wireless/iwlwifi/iwl-agn.c |   34 ++++++++++++++++++-------------
>  1 files changed, 20 insertions(+), 14 deletions(-)
> 
> diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c
> index 7adc60e..0c49d1a 100644
> --- a/drivers/net/wireless/iwlwifi/iwl-agn.c
> +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c
> @@ -483,12 +483,14 @@ static void iwl_bg_bt_full_concurrency(struct work_struct *work)
>  		container_of(work, struct iwl_priv, bt_full_concurrency);
>  	struct iwl_rxon_context *ctx;
>  
> +	mutex_lock(&priv->mutex);
> +
>  	if (test_bit(STATUS_EXIT_PENDING, &priv->status))
> -		return;
> +		goto out;
>  
>  	/* dont send host command if rf-kill is on */
>  	if (!iwl_is_ready_rf(priv))
> -		return;
> +		goto out;
>  
>  	IWL_DEBUG_INFO(priv, "BT coex in %s mode\n",
>  		       priv->bt_full_concurrent ?
> @@ -498,15 +500,15 @@ static void iwl_bg_bt_full_concurrency(struct work_struct *work)
>  	 * LQ & RXON updated cmds must be sent before BT Config cmd
>  	 * to avoid 3-wire collisions
>  	 */
> -	mutex_lock(&priv->mutex);
>  	for_each_context(priv, ctx) {
>  		if (priv->cfg->ops->hcmd->set_rxon_chain)
>  			priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx);
>  		iwlcore_commit_rxon(priv, ctx);
>  	}
> -	mutex_unlock(&priv->mutex);
>  
>  	priv->cfg->ops->hcmd->send_bt_config(priv);
> +out:
> +	mutex_unlock(&priv->mutex);
>  }
>  
>  /**
> @@ -2814,10 +2816,13 @@ static void iwl_bg_init_alive_start(struct work_struct *data)
>  	struct iwl_priv *priv =
>  	    container_of(data, struct iwl_priv, init_alive_start.work);
>  
> -	if (test_bit(STATUS_EXIT_PENDING, &priv->status))
> +	mutex_lock(&priv->mutex);
> +
> +	if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
> +		mutex_unlock(&priv->mutex);
>  		return;
> +	}
>  
> -	mutex_lock(&priv->mutex);
>  	priv->cfg->ops->lib->init_alive_start(priv);
>  	mutex_unlock(&priv->mutex);
>  }
> @@ -2827,15 +2832,16 @@ static void iwl_bg_alive_start(struct work_struct *data)
>  	struct iwl_priv *priv =
>  	    container_of(data, struct iwl_priv, alive_start.work);
>  
> +	mutex_lock(&priv->mutex);
>  	if (test_bit(STATUS_EXIT_PENDING, &priv->status))
> -		return;
> +		goto unlock;
>  
>  	/* enable dram interrupt */
>  	if (priv->cfg->ops->lib->isr_ops.reset)
>  		priv->cfg->ops->lib->isr_ops.reset(priv);
>  
> -	mutex_lock(&priv->mutex);
>  	iwl_alive_start(priv);
> +unlock:
>  	mutex_unlock(&priv->mutex);
>  }
>  
> @@ -3457,21 +3463,22 @@ void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
>  
>  	IWL_DEBUG_MAC80211(priv, "enter\n");
>  
> +	mutex_lock(&priv->mutex);
> +
>  	if (iwl_is_rfkill(priv))
> -		goto out_exit;
> +		goto out;
>  
>  	if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
>  	    test_bit(STATUS_SCANNING, &priv->status))
> -		goto out_exit;
> +		goto out;
>  
>  	if (!iwl_is_associated_ctx(ctx))
> -		goto out_exit;
> +		goto out;
>  
>  	/* channel switch in progress */
>  	if (priv->switch_rxon.switch_in_progress == true)
> -		goto out_exit;
> +		goto out;
>  
> -	mutex_lock(&priv->mutex);
>  	if (priv->cfg->ops->lib->set_channel_switch) {
>  
>  		ch = channel->hw_value;
> @@ -3527,7 +3534,6 @@ void iwlagn_mac_channel_switch(struct ieee80211_hw *hw,
>  	}
>  out:
>  	mutex_unlock(&priv->mutex);
> -out_exit:
>  	if (!priv->switch_rxon.switch_in_progress)
>  		ieee80211_chswitch_done(ctx->vif, false);
>  	IWL_DEBUG_MAC80211(priv, "leave\n");



  reply	other threads:[~2011-03-31 16:18 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-31 15:36 [PATCH 1/3] iwlwifi: fix enqueue hcmd race conditions Stanislaw Gruszka
2011-03-31 15:36 ` [PATCH 2/3] iwlwifi: more priv->mutex serialization Stanislaw Gruszka
2011-03-31 16:15   ` wwguy [this message]
2011-03-31 15:36 ` [PATCH 3/3] iwlwifi: remove sync_cmd_mutex Stanislaw Gruszka
2011-03-31 16:18   ` wwguy
2011-03-31 16:36 ` [PATCH 1/3] iwlwifi: fix enqueue hcmd race conditions Guy, Wey-Yi W
2011-04-01  7:22   ` Stanislaw Gruszka
2011-04-01 15:07     ` wwguy
2011-04-06 14:18       ` Stanislaw Gruszka
2011-04-06 14:21         ` Guy, Wey-Yi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1301588150.22383.9.camel@wwguy-ubuntu \
    --to=wey-yi.w.guy@intel.com \
    --cc=ilw@linux.intel.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=sgruszka@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).