From: Vasanthakumar Thiagarajan <vthiagar@qti.qualcomm.com>
To: Michal Kazior <michal.kazior@tieto.com>
Cc: linux-wireless <linux-wireless@vger.kernel.org>,
"ath10k@lists.infradead.org" <ath10k@lists.infradead.org>
Subject: Re: [PATCH] ath10k: Fix interrupt storm
Date: Thu, 12 Feb 2015 12:38:43 +0530 [thread overview]
Message-ID: <54DC517B.80402@qti.qualcomm.com> (raw)
In-Reply-To: <CA+BoTQmFhuK5vt8UnDu7CkH2=vUqGY8WkkXEgwoSb-NUoEYH-w@mail.gmail.com>
>> diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
>> index d6d2f0f..310e608 100644
>> --- a/drivers/net/wireless/ath/ath10k/mac.c
>> +++ b/drivers/net/wireless/ath/ath10k/mac.c
>> @@ -932,6 +932,14 @@ static int ath10k_vdev_start_restart(struct ath10k_vif *arvif, bool restart)
>> return ret;
>> }
>>
>> + if (ar->filter_flags & FIF_PROMISC_IN_BSS) {
>> + ar->filter_flags &= ~FIF_PROMISC_IN_BSS;
>> + ath10k_dbg(ar, ATH10K_DBG_MAC, "Disabling promiscuous mode when we start a vdev\n");
>
> The debug message style is: "mac <message>", i.e. "mac disabling
> promiscuous mode because vdev is started".
Ok.
>
>
>> + ret = ath10k_monitor_recalc(ar);
>> + if (ret)
>> + return ret;
>
> If you fail you should undo whatever the function did if it makes
> sense. In this case it makes sense to stop the vdev.
Sure.
>
>
>> + }
>> +
>> ar->num_started_vdevs++;
>> ath10k_recalc_radar_detection(ar);
>>
>> @@ -3369,6 +3377,14 @@ static void ath10k_configure_filter(struct ieee80211_hw *hw,
>>
>> changed_flags &= SUPPORTED_FILTERS;
>> *total_flags &= SUPPORTED_FILTERS;
>> + if (*total_flags & FIF_PROMISC_IN_BSS) {
>> + if (ar->num_started_vdevs) {
>> + ath10k_dbg(ar, ATH10K_DBG_MAC,
>> + "Not enabling promiscuous mode when already a vdev is running\n");
>
> Message style.
Ok.
>
>
>> + mutex_unlock(&ar->conf_mutex);
>> + return;
>> + }
>> + }
>> ar->filter_flags = *total_flags;
>>
>> ret = ath10k_monitor_recalc(ar);
>
> Anyway the entire logic should go to ath10k_monitor_recalc(). It
> already has access to it and just put calls to this function in
> adequate callsites.
Ok.
>
> Moreover I'm pretty sure this patch breaks STA 4addr bridging. I'm
> worried it also breaks other stuff (e.g some IBSS usecases or even
> some AP usecases) but I don't have time to check this now.
Can you please elaborate on this one?. I can review if we can for these
cases as well before disabling promiscuous mode.
Thanks,
Vasanth
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: Vasanthakumar Thiagarajan <vthiagar@qti.qualcomm.com>
To: Michal Kazior <michal.kazior@tieto.com>
Cc: "ath10k@lists.infradead.org" <ath10k@lists.infradead.org>,
linux-wireless <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH] ath10k: Fix interrupt storm
Date: Thu, 12 Feb 2015 12:38:43 +0530 [thread overview]
Message-ID: <54DC517B.80402@qti.qualcomm.com> (raw)
In-Reply-To: <CA+BoTQmFhuK5vt8UnDu7CkH2=vUqGY8WkkXEgwoSb-NUoEYH-w@mail.gmail.com>
>> diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
>> index d6d2f0f..310e608 100644
>> --- a/drivers/net/wireless/ath/ath10k/mac.c
>> +++ b/drivers/net/wireless/ath/ath10k/mac.c
>> @@ -932,6 +932,14 @@ static int ath10k_vdev_start_restart(struct ath10k_vif *arvif, bool restart)
>> return ret;
>> }
>>
>> + if (ar->filter_flags & FIF_PROMISC_IN_BSS) {
>> + ar->filter_flags &= ~FIF_PROMISC_IN_BSS;
>> + ath10k_dbg(ar, ATH10K_DBG_MAC, "Disabling promiscuous mode when we start a vdev\n");
>
> The debug message style is: "mac <message>", i.e. "mac disabling
> promiscuous mode because vdev is started".
Ok.
>
>
>> + ret = ath10k_monitor_recalc(ar);
>> + if (ret)
>> + return ret;
>
> If you fail you should undo whatever the function did if it makes
> sense. In this case it makes sense to stop the vdev.
Sure.
>
>
>> + }
>> +
>> ar->num_started_vdevs++;
>> ath10k_recalc_radar_detection(ar);
>>
>> @@ -3369,6 +3377,14 @@ static void ath10k_configure_filter(struct ieee80211_hw *hw,
>>
>> changed_flags &= SUPPORTED_FILTERS;
>> *total_flags &= SUPPORTED_FILTERS;
>> + if (*total_flags & FIF_PROMISC_IN_BSS) {
>> + if (ar->num_started_vdevs) {
>> + ath10k_dbg(ar, ATH10K_DBG_MAC,
>> + "Not enabling promiscuous mode when already a vdev is running\n");
>
> Message style.
Ok.
>
>
>> + mutex_unlock(&ar->conf_mutex);
>> + return;
>> + }
>> + }
>> ar->filter_flags = *total_flags;
>>
>> ret = ath10k_monitor_recalc(ar);
>
> Anyway the entire logic should go to ath10k_monitor_recalc(). It
> already has access to it and just put calls to this function in
> adequate callsites.
Ok.
>
> Moreover I'm pretty sure this patch breaks STA 4addr bridging. I'm
> worried it also breaks other stuff (e.g some IBSS usecases or even
> some AP usecases) but I don't have time to check this now.
Can you please elaborate on this one?. I can review if we can for these
cases as well before disabling promiscuous mode.
Thanks,
Vasanth
next prev parent reply other threads:[~2015-02-12 7:13 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-12 4:59 [PATCH] ath10k: Fix interrupt storm Vasanthakumar Thiagarajan
2015-02-12 4:59 ` Vasanthakumar Thiagarajan
2015-02-12 6:47 ` Michal Kazior
2015-02-12 6:47 ` Michal Kazior
2015-02-12 7:08 ` Vasanthakumar Thiagarajan [this message]
2015-02-12 7:08 ` Vasanthakumar Thiagarajan
2015-02-12 13:59 ` Vasanthakumar Thiagarajan
2015-02-12 13:59 ` Vasanthakumar Thiagarajan
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=54DC517B.80402@qti.qualcomm.com \
--to=vthiagar@qti.qualcomm.com \
--cc=ath10k@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=michal.kazior@tieto.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.