From: Arend van Spriel <arend@broadcom.com>
To: Kalle Valo <kvalo@codeaurora.org>
Cc: linux-wireless <linux-wireless@vger.kernel.org>,
Franky Lin <frankyl@broadcom.com>,
Arend van Spriel <arend@broadcom.com>
Subject: [PATCH V3 4/6] brcmfmac: block the correct flowring when backup queue overflow
Date: Thu, 20 Aug 2015 22:06:06 +0200 [thread overview]
Message-ID: <1440101168-2252-5-git-send-email-arend@broadcom.com> (raw)
In-Reply-To: <1440101168-2252-1-git-send-email-arend@broadcom.com>
From: Franky Lin <frankyl@broadcom.com>
brcmf_flowring_block blocks the last active flowring under the same
interface instead of the one provided by caller. This could lead to a
dead lock of netif stop if there are more than one flowring under the
interface and the traffic is high enough so brcmf_flowring_enqueue can
not unblock the ring right away.
Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com>
Reviewed-by: Hante Meuleman <meuleman@broadcom.com>
Signed-off-by: Franky Lin <frankyl@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
---
drivers/net/wireless/brcm80211/brcmfmac/flowring.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/flowring.c b/drivers/net/wireless/brcm80211/brcmfmac/flowring.c
index 5944063..8d1ab4a 100644
--- a/drivers/net/wireless/brcm80211/brcmfmac/flowring.c
+++ b/drivers/net/wireless/brcm80211/brcmfmac/flowring.c
@@ -194,11 +194,15 @@ static void brcmf_flowring_block(struct brcmf_flowring *flow, u8 flowid,
spin_lock_irqsave(&flow->block_lock, flags);
ring = flow->rings[flowid];
+ if (ring->blocked == blocked) {
+ spin_unlock_irqrestore(&flow->block_lock, flags);
+ return;
+ }
ifidx = brcmf_flowring_ifidx_get(flow, flowid);
currently_blocked = false;
for (i = 0; i < flow->nrofrings; i++) {
- if (flow->rings[i]) {
+ if ((flow->rings[i]) && (i != flowid)) {
ring = flow->rings[i];
if ((ring->status == RING_OPEN) &&
(brcmf_flowring_ifidx_get(flow, i) == ifidx)) {
@@ -209,8 +213,8 @@ static void brcmf_flowring_block(struct brcmf_flowring *flow, u8 flowid,
}
}
}
- ring->blocked = blocked;
- if (currently_blocked == blocked) {
+ flow->rings[flowid]->blocked = blocked;
+ if (currently_blocked) {
spin_unlock_irqrestore(&flow->block_lock, flags);
return;
}
--
1.9.1
next prev parent reply other threads:[~2015-08-20 20:06 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-20 20:06 [PATCH V3 0/6] brcmfmac: nvram loading and code rework Arend van Spriel
2015-08-20 20:06 ` [PATCH V3 1/6] brcmfmac: correct interface combination info Arend van Spriel
2015-08-25 12:33 ` [V3,1/6] " Kalle Valo
2015-08-20 20:06 ` [PATCH V3 2/6] brcmfmac: add debugfs entry for msgbuf statistics Arend van Spriel
2015-08-20 20:06 ` [PATCH V3 3/6] brcmfmac: make use of cfg80211_check_combinations() Arend van Spriel
2015-08-20 20:06 ` Arend van Spriel [this message]
2015-08-20 20:06 ` [PATCH V3 5/6] brcmfmac: bump highest event number for 4339 firmware Arend van Spriel
2015-08-20 20:06 ` [PATCH V3 6/6] brcmfmac: Add support for host platform NVRAM loading Arend van Spriel
2015-08-20 21:20 ` [PATCH V3 0/6] brcmfmac: nvram loading and code rework Rafał Miłecki
2015-08-20 21:23 ` Arend van Spriel
2015-08-20 21:26 ` Rafał Miłecki
2015-08-25 12:36 ` Kalle Valo
2015-08-25 16:09 ` Rafał Miłecki
2015-08-25 16:42 ` Arend van Spriel
2015-08-25 16:53 ` Kalle Valo
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=1440101168-2252-5-git-send-email-arend@broadcom.com \
--to=arend@broadcom.com \
--cc=frankyl@broadcom.com \
--cc=kvalo@codeaurora.org \
--cc=linux-wireless@vger.kernel.org \
/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