From: "Guy, Wey-Yi" <wey-yi.w.guy@intel.com>
To: Stanislaw Gruszka <sgruszka@redhat.com>
Cc: Johannes Berg <johannes@sipsolutions.net>,
"Chatre, Reinette" <reinette.chatre@intel.com>,
"John W. Linville" <linville@tuxdriver.com>,
"linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH 07/14] iwlwifi: rewrite scan completion
Date: Fri, 10 Sep 2010 08:52:40 -0700 [thread overview]
Message-ID: <1284133960.6054.17.camel@wwguy-ubuntu> (raw)
In-Reply-To: <1284128807-11436-8-git-send-email-sgruszka@redhat.com>
On Fri, 2010-09-10 at 07:26 -0700, Stanislaw Gruszka wrote:
> Assure (partially) we call ieee80211_scan_completed() only once when
> scan was requested from mac80211.
>
> Code path that first clear STATUS_SCANNING bit is responsible to call
> ieee80211_scan_completed(). Before the call, we check if mac80211
> really request the scan.
>
> Still persist some cases when we behave wrong, that will be addressed
> in the next patches.
>
> Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Acked-by: Wey-Yi W Guy <wey-yi.w.guy@intel.com>
> ---
> drivers/net/wireless/iwlwifi/iwl-scan.c | 65 +++++++++++++++++++------------
> 1 files changed, 40 insertions(+), 25 deletions(-)
>
> diff --git a/drivers/net/wireless/iwlwifi/iwl-scan.c b/drivers/net/wireless/iwlwifi/iwl-scan.c
> index 6d02f41..e65a98d 100644
> --- a/drivers/net/wireless/iwlwifi/iwl-scan.c
> +++ b/drivers/net/wireless/iwlwifi/iwl-scan.c
> @@ -93,6 +93,19 @@ static int iwl_send_scan_abort(struct iwl_priv *priv)
> return ret;
> }
>
> +static void iwl_complete_scan(struct iwl_priv *priv, bool aborted)
> +{
> + /* check if scan was requested from mac80211 */
> + if (priv->scan_request) {
> + IWL_DEBUG_SCAN(priv, "Complete scan in mac80211\n");
> + ieee80211_scan_completed(priv->hw, aborted);
> + }
> +
> + priv->is_internal_short_scan = false;
> + priv->scan_vif = NULL;
> + priv->scan_request = NULL;
> +}
> +
> static void iwl_do_scan_abort(struct iwl_priv *priv)
> {
> int ret;
> @@ -115,7 +128,7 @@ static void iwl_do_scan_abort(struct iwl_priv *priv)
> clear_bit(STATUS_SCANNING, &priv->status);
> clear_bit(STATUS_SCAN_HW, &priv->status);
> clear_bit(STATUS_SCAN_ABORTING, &priv->status);
> - ieee80211_scan_completed(priv->hw, true);
> + iwl_complete_scan(priv, true);
> } else
> IWL_DEBUG_SCAN(priv, "Sucessfully send scan abort\n");
> }
> @@ -545,10 +558,11 @@ static void iwl_bg_scan_completed(struct work_struct *work)
> {
> struct iwl_priv *priv =
> container_of(work, struct iwl_priv, scan_completed);
> - bool internal = false, aborted;
> + bool aborted;
> struct iwl_rxon_context *ctx;
>
> - IWL_DEBUG_SCAN(priv, "SCAN complete scan\n");
> + IWL_DEBUG_INFO(priv, "Completed %sscan.\n",
> + priv->is_internal_short_scan ? "internal short " : "");
>
> cancel_delayed_work(&priv->scan_check);
>
> @@ -558,37 +572,38 @@ static void iwl_bg_scan_completed(struct work_struct *work)
> if (aborted)
> IWL_DEBUG_INFO(priv, "Aborted scan completed.\n");
>
> - IWL_DEBUG_INFO(priv, "Setting scan to off\n");
> -
> - clear_bit(STATUS_SCANNING, &priv->status);
> -
> - if (priv->is_internal_short_scan) {
> - priv->is_internal_short_scan = false;
> - IWL_DEBUG_SCAN(priv, "internal short scan completed\n");
> - internal = true;
> - } else if (priv->scan_request) {
> - priv->scan_request = NULL;
> - priv->scan_vif = NULL;
> - ieee80211_scan_completed(priv->hw, aborted);
> + if (!test_and_clear_bit(STATUS_SCANNING, &priv->status)) {
> + IWL_DEBUG_INFO(priv, "Scan already completed.\n");
> + goto out;
> }
>
> - if (test_bit(STATUS_EXIT_PENDING, &priv->status))
> - goto out;
> + if (priv->is_internal_short_scan && !aborted) {
> + int err;
>
> - if (internal && priv->scan_request) {
> - int err = iwl_scan_initiate(priv, priv->scan_vif, false,
> - priv->scan_request->channels[0]->band);
> + /* Check if mac80211 requested scan during our internal scan */
> + if (priv->scan_request == NULL)
> + goto out_complete;
>
> + /* If so request a new scan */
> + err = iwl_scan_initiate(priv, priv->scan_vif, false,
> + priv->scan_request->channels[0]->band);
> if (err) {
> IWL_DEBUG_SCAN(priv,
> "failed to initiate pending scan: %d\n", err);
> - priv->scan_request = NULL;
> - priv->scan_vif = NULL;
> - ieee80211_scan_completed(priv->hw, true);
> - } else
> - goto out;
> + aborted = true;
> + goto out_complete;
> + }
> +
> + goto out;
> }
>
> +out_complete:
> + iwl_complete_scan(priv, aborted);
> +
> + /* Can we still talk to firmware ? */
> + if (!iwl_is_ready_rf(priv))
> + goto out;
> +
> /* Since setting the TXPOWER may have been deferred while
> * performing the scan, fire one off */
> iwl_set_tx_power(priv, priv->tx_power_user_lmt, true);
next prev parent reply other threads:[~2010-09-10 15:53 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-10 14:26 [PATCH 0/14 v3] iwlwifi: rewrite iwl-scan.c to avoid race conditions Stanislaw Gruszka
2010-09-10 14:26 ` [PATCH 01/14] iwlwifi: remove unused conf variables Stanislaw Gruszka
2010-09-10 15:49 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 02/14] iwlwifi: unify scan start checks Stanislaw Gruszka
2010-09-10 15:49 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 03/14] iwlwifi: move scan completed flags handling Stanislaw Gruszka
2010-09-10 15:50 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 04/14] iwlwifi: cancel scan when down the device Stanislaw Gruszka
2010-09-10 15:50 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 05/14] iwlwifi: report scan completion when abort fail Stanislaw Gruszka
2010-09-10 15:51 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 06/14] iwlwifi: rework iwl_scan_cancel_timeout Stanislaw Gruszka
2010-09-10 15:52 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 07/14] iwlwifi: rewrite scan completion Stanislaw Gruszka
2010-09-10 15:52 ` Guy, Wey-Yi [this message]
2010-09-10 14:26 ` [PATCH 08/14] iwlwifi: force scan complete after timeout Stanislaw Gruszka
2010-09-10 15:53 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 09/14] iwlwifi: assure we complete scan in scan_abort and scan_check works Stanislaw Gruszka
2010-09-10 15:54 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 10/14] iwlwifi: do not force complete scan too early Stanislaw Gruszka
2010-09-10 15:54 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 11/14] mac80211: wait for scan work complete before restarting hw Stanislaw Gruszka
2010-09-10 15:55 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 12/14] iwlwifi: cleanup scan initiate check Stanislaw Gruszka
2010-09-10 15:55 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 13/14] iwlwifi: use IWL_DEBUG_SCAN for debug scanning Stanislaw Gruszka
2010-09-10 15:56 ` Guy, Wey-Yi
2010-09-10 14:26 ` [PATCH 14/14] iwlwifi: apply settings when finishing scan Stanislaw Gruszka
2010-09-10 15:56 ` Guy, Wey-Yi
-- strict thread matches above, loose matches on Subject: below --
2010-09-13 12:46 [PATCH 0/14 v4] iwlwifi: rewrite iwl-scan.c to avoid race conditions Stanislaw Gruszka
2010-09-13 12:46 ` [PATCH 07/14] iwlwifi: rewrite scan completion Stanislaw Gruszka
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=1284133960.6054.17.camel@wwguy-ubuntu \
--to=wey-yi.w.guy@intel.com \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=reinette.chatre@intel.com \
--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