From: "Tim Sander" <tim.sander@hbm.com>
To: "Eric Dumazet" <eric.dumazet@gmail.com>
Cc: "Hector Palacios" <hector.palacios@digi.com>,
<netdev@vger.kernel.org>, <davem@davemloft.net>,
<shawn.guo@linaro.org>, <jgq516@gmail.com>, <rostedt@goodmis.org>,
<u.kleine-koenig@pengutronix.de>, <tglx@linutronix.de>,
"Zeng Zhaoming" <b32542@freescale.com>,
"Frank Li" <Frank.Li@freescale.com>
Subject: Re: [PATCH] fec: fix tx bounce handling
Date: Mon, 6 Feb 2012 17:09:31 +0100 [thread overview]
Message-ID: <201202061709.31406.tim.sander@hbm.com> (raw)
In-Reply-To: <1328535883.2220.34.camel@edumazet-HP-Compaq-6005-Pro-SFF-PC>
Hi
I forward ported the patch i have for 3.0-rt (which was working on a quick test)
to the net-dev branch with the patch from Eric mixed in.
But a quick test revealed that dmesg is full of:
eth0: tx queue full!.
Not good! Any suggestions on this?
Tim
Heres my patch for 3.3:
diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c
index 336edd7..74d5865 100644
--- a/drivers/net/ethernet/freescale/fec.c
+++ b/drivers/net/ethernet/freescale/fec.c
@@ -284,11 +284,6 @@ fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
unsigned short status;
unsigned long flags;
- if (!fep->link) {
- /* Link is down or autonegotiation is in progress. */
- return NETDEV_TX_BUSY;
- }
-
spin_lock_irqsave(&fep->hw_lock, flags);
/* Fill in a Tx ring entry */
bdp = fep->cur_tx;
@@ -319,8 +314,8 @@ fec_enet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
if (((unsigned long) bufaddr) & FEC_ALIGNMENT) {
unsigned int index;
index = bdp - fep->tx_bd_base;
- memcpy(fep->tx_bounce[index], skb->data, skb->len);
- bufaddr = fep->tx_bounce[index];
+ bufaddr = PTR_ALIGN(fep->tx_bounce[index], FEC_ALIGNMENT + 1);
+ memcpy(bufaddr, skb->data, skb->len);
}
/*
@@ -542,6 +537,9 @@ fec_stop(struct net_device *ndev)
writel(2, fep->hwp + FEC_ECNTRL);
writel(rmii_mode, fep->hwp + FEC_R_CNTRL);
}
+
+ netif_stop_queue(ndev);
+ fep->link=0;
}
@@ -1210,7 +1208,7 @@ static int fec_enet_alloc_buffers(struct net_device *ndev)
bdp = fep->rx_bd_base;
for (i = 0; i < RX_RING_SIZE; i++) {
- skb = dev_alloc_skb(FEC_ENET_RX_FRSIZE);
+ skb = __dev_alloc_skb(FEC_ENET_RX_FRSIZE, GFP_KERNEL);
if (!skb) {
fec_enet_free_buffers(ndev);
return -ENOMEM;
@@ -1230,6 +1228,10 @@ static int fec_enet_alloc_buffers(struct net_device *ndev)
bdp = fep->tx_bd_base;
for (i = 0; i < TX_RING_SIZE; i++) {
fep->tx_bounce[i] = kmalloc(FEC_ENET_TX_FRSIZE, GFP_KERNEL);
+ if(!fep->tx_bounce[i]) {
+ fec_enet_free_buffers(ndev);
+ return -ENOMEM;
+ }
bdp->cbd_sc = 0;
bdp->cbd_bufaddr = 0;
Hottinger Baldwin Messtechnik GmbH, Im Tiefen See 45, 64293 Darmstadt, Germany | www.hbm.com
Registered as GmbH (German limited liability corporation) in the commercial register at the local court of Darmstadt, HRB 1147
Company domiciled in Darmstadt | CEO: Andreas Huellhorst | Chairman of the board: James Charles Webster
Als Gesellschaft mit beschraenkter Haftung eingetragen im Handelsregister des Amtsgerichts Darmstadt unter HRB 1147
Sitz der Gesellschaft: Darmstadt | Geschaeftsfuehrung: Andreas Huellhorst | Aufsichtsratsvorsitzender: James Charles Webster
The information in this email is confidential. It is intended solely for the addressee. If you are not the intended recipient, please let me know and delete this email.
Die in dieser E-Mail enthaltene Information ist vertraulich und lediglich für den Empfaenger bestimmt. Sollten Sie nicht der eigentliche Empfaenger sein, informieren Sie mich bitte kurz und loeschen diese E-Mail.
next prev parent reply other threads:[~2012-02-06 16:10 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-06 9:33 [PATCH] net/fec: infinite spin on sirq-net-tx on real-time Hector Palacios
2012-02-06 9:56 ` Eric Dumazet
2012-02-06 11:03 ` Hector Palacios
2012-02-06 12:55 ` Eric Dumazet
2012-02-06 13:43 ` [PATCH]Re: " Tim Sander
2012-02-06 13:44 ` [PATCH] fec: fix tx bounce handling Eric Dumazet
2012-02-06 16:09 ` Tim Sander [this message]
2012-02-06 16:25 ` Eric Dumazet
2012-02-06 13:25 ` [PATCH] net/fec: infinite spin on sirq-net-tx on real-time Steven Rostedt
2012-02-06 13:39 ` Eric Dumazet
2012-02-07 0:48 ` [PATCH] " Tim Sander
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=201202061709.31406.tim.sander@hbm.com \
--to=tim.sander@hbm.com \
--cc=Frank.Li@freescale.com \
--cc=b32542@freescale.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=hector.palacios@digi.com \
--cc=jgq516@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=shawn.guo@linaro.org \
--cc=tglx@linutronix.de \
--cc=u.kleine-koenig@pengutronix.de \
/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).