From: Nikita Yushchenko <nyushchenko@dev.rtsoft.ru>
To: "David S. Miller" <davem@davemloft.net>,
Claudiu Manoil <claudiu.manoil@freescale.com>,
netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
Dmitry Krivoschekov <dkrivoschokov@dev.rtsoft.ru>,
Konstantin Baydarov <kbaidarov@dev.rtsoft.ru>,
Nikita Yushchenko <nyushchenko@dev.rtsoft.ru>
Subject: [PATCH] net: gainfar: fix race between issuing and completing Tx
Date: Fri, 6 Dec 2013 16:35:59 +0400 [thread overview]
Message-ID: <1386333359-18854-1-git-send-email-nyushchenko@dev.rtsoft.ru> (raw)
gfar_poll() checked Tx queue status without locking, thus allowing
gfar_start_xmit() to alter it in parallel, which caused hang on every
other nfsroot boot with RT enabled.
This patch raises locking from gfar_clean_tx_ring() up to gfar_poll().
With this change applied, hangs are no longer reproduced.
Signed-off-by: Nikita Yushchenko <nyushchenko@dev.rtsoft.ru>
---
drivers/net/ethernet/freescale/gianfar.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/freescale/gianfar.c b/drivers/net/ethernet/freescale/gianfar.c
index 0343a14..9ac1946 100644
--- a/drivers/net/ethernet/freescale/gianfar.c
+++ b/drivers/net/ethernet/freescale/gianfar.c
@@ -2499,7 +2499,6 @@ static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue)
skb_dirtytx = tx_queue->skb_dirtytx;
while ((skb = tx_queue->tx_skbuff[skb_dirtytx])) {
- unsigned long flags;
frags = skb_shinfo(skb)->nr_frags;
@@ -2561,9 +2560,7 @@ static void gfar_clean_tx_ring(struct gfar_priv_tx_q *tx_queue)
TX_RING_MOD_MASK(tx_ring_size);
howmany++;
- spin_lock_irqsave(&tx_queue->txlock, flags);
tx_queue->num_txbdfree += nr_txbds;
- spin_unlock_irqrestore(&tx_queue->txlock, flags);
}
/* If we freed a buffer, we can restart transmission, if necessary */
@@ -2838,6 +2835,7 @@ static int gfar_poll(struct napi_struct *napi, int budget)
int has_tx_work;
unsigned long rstat_rxf;
int num_act_queues;
+ unsigned long flags;
/* Clear IEVENT, so interrupts aren't called again
* because of the packets that have already arrived
@@ -2854,11 +2852,13 @@ static int gfar_poll(struct napi_struct *napi, int budget)
has_tx_work = 0;
for_each_set_bit(i, &gfargrp->tx_bit_map, priv->num_tx_queues) {
tx_queue = priv->tx_queue[i];
+ spin_lock_irqsave(&tx_queue->txlock, flags);
/* run Tx cleanup to completion */
if (tx_queue->tx_skbuff[tx_queue->skb_dirtytx]) {
gfar_clean_tx_ring(tx_queue);
has_tx_work = 1;
}
+ spin_unlock_irqrestore(&tx_queue->txlock, flags);
}
for_each_set_bit(i, &gfargrp->rx_bit_map, priv->num_rx_queues) {
--
1.7.0.1
next reply other threads:[~2013-12-06 12:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-06 12:35 Nikita Yushchenko [this message]
2013-12-10 1:29 ` [PATCH] net: gainfar: fix race between issuing and completing Tx David Miller
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=1386333359-18854-1-git-send-email-nyushchenko@dev.rtsoft.ru \
--to=nyushchenko@dev.rtsoft.ru \
--cc=claudiu.manoil@freescale.com \
--cc=davem@davemloft.net \
--cc=dkrivoschokov@dev.rtsoft.ru \
--cc=kbaidarov@dev.rtsoft.ru \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@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;
as well as URLs for NNTP newsgroup(s).