[PATCH net] gianfar : Do right check on num_txbdfree

0 views
Skip to first unread message

Rini van Zetten

unread,
Feb 26, 2009, 3:56:58 AM2/26/09
to Linuxp...@ozlabs.org, net...@vger.kernel.org, afle...@freescale.com
This patch fixes a wrong check on num_txbdfree. It could lead to num_txbdfree become nagative.
Result was that the gianfar stops sending data.


Signed-off-by: Rini van Zetten <rini at arvoo dot nl>
---
drivers/net/gianfar.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c
index 7ef1ffd..2dc3bd3 100644
--- a/drivers/net/gianfar.c
+++ b/drivers/net/gianfar.c
@@ -1284,9 +1284,8 @@ static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
spin_lock_irqsave(&priv->txlock, flags);

/* check if there is space to queue this packet */
- if (nr_frags > priv->num_txbdfree) {
+ if ( (nr_frags+1) > priv->num_txbdfree) {
/* no space, stop the queue */
netif_stop_queue(dev);
dev->stats.tx_fifo_errors++;
spin_unlock_irqrestore(&priv->txlock, flags);
--


--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majo...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html

David Miller

unread,
Feb 26, 2009, 5:03:18 AM2/26/09
to ri...@arvoo.nl, Linuxp...@ozlabs.org, net...@vger.kernel.org, afle...@freescale.com
From: Rini van Zetten <ri...@arvoo.nl>
Date: Thu, 26 Feb 2009 09:56:58 +0100

> This patch fixes a wrong check on num_txbdfree. It could lead to
> num_txbdfree become nagative. Result was that the gianfar stops
> sending data.
>
> Signed-off-by: Rini van Zetten <rini at arvoo dot nl

Please use ri...@arvoo.nl in your signoffs, you cannot
hide on the inna-net.

> - if (nr_frags > priv->num_txbdfree) {
> + if ( (nr_frags+1) > priv->num_txbdfree) {

Please don't put a space between the parens there "( (", like
that.

Rini van Zetten

unread,
Feb 26, 2009, 5:25:49 AM2/26/09
to David Miller, Linuxp...@ozlabs.org, afle...@freescale.com, net...@vger.kernel.org
This patch fixes a wrong check on num_txbdfree. It could lead to num_txbdfree become nagative.
Result was that the gianfar stops sending data.

Changes from first version :
- removed a space between parens (David Millers comment)
- full email address in signed off line


Signed-off-by: Rini van Zetten <ri...@arvoo.nl>


---
drivers/net/gianfar.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c
index 7ef1ffd..2dc3bd3 100644
--- a/drivers/net/gianfar.c
+++ b/drivers/net/gianfar.c
@@ -1284,9 +1284,8 @@ static int gfar_start_xmit(struct sk_buff *skb, struct net_device *dev)
spin_lock_irqsave(&priv->txlock, flags);

/* check if there is space to queue this packet */

- if (nr_frags > priv->num_txbdfree) {

+ if ((nr_frags+1) > priv->num_txbdfree) {


/* no space, stop the queue */
netif_stop_queue(dev);
dev->stats.tx_fifo_errors++;
spin_unlock_irqrestore(&priv->txlock, flags);
--

Geert Uytterhoeven

unread,
Feb 26, 2009, 11:03:03 AM2/26/09
to Rini van Zetten, David Miller, Linuxp...@ozlabs.org, afle...@freescale.com, net...@vger.kernel.org
On Thu, 26 Feb 2009, Rini van Zetten wrote:
> This patch fixes a wrong check on num_txbdfree. It could lead to num_txbdfree
> become nagative.
> Result was that the gianfar stops sending data.

A quick mental note for your next patch submission:

> Changes from first version :
> - removed a space between parens (David Millers comment)
> - full email address in signed off line

Changelogs since previous versions should be ...

> Signed-off-by: Rini van Zetten <ri...@arvoo.nl>
> ---

... here, below the `---', as they're not supposed to be end up in the final
commit message.

> drivers/net/gianfar.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)

With kind regards,

Geert Uytterhoeven
Software Architect

Sony Techsoft Centre Europe
The Corporate Village · Da Vincilaan 7-D1 · B-1935 Zaventem · Belgium

Phone: +32 (0)2 700 8453
Fax: +32 (0)2 700 8622
E-mail: Geert.Uyt...@sonycom.com
Internet: http://www.sony-europe.com/

A division of Sony Europe (Belgium) N.V.
VAT BE 0413.825.160 · RPR Brussels
Fortis · BIC GEBABEBB · IBAN BE41293037680010

Andy Fleming

unread,
Feb 26, 2009, 5:07:16 PM2/26/09
to Rini van Zetten, David Miller, Linuxp...@ozlabs.org, afle...@freescale.com, net...@vger.kernel.org
On Thu, Feb 26, 2009 at 4:25 AM, Rini van Zetten <ri...@arvoo.nl> wrote:
> This patch fixes a wrong check on num_txbdfree. It could lead to
> num_txbdfree become nagative.
> Result was that the gianfar stops sending data.
>
> Changes from first version :
> - removed a space between parens (David Millers comment)
> - full email address in signed off line
>
>
> Signed-off-by: Rini van Zetten <ri...@arvoo.nl>

Good catch. Does this solve the bug you reported earlier?

Acked-by: Andy Fleming <afle...@freescale.com>

David Miller

unread,
Feb 27, 2009, 6:18:57 AM2/27/09
to afle...@gmail.com, ri...@arvoo.nl, Linuxp...@ozlabs.org, afle...@freescale.com, net...@vger.kernel.org
From: Andy Fleming <afle...@gmail.com>
Date: Thu, 26 Feb 2009 16:07:16 -0600

> On Thu, Feb 26, 2009 at 4:25 AM, Rini van Zetten <ri...@arvoo.nl> wrote:
> > This patch fixes a wrong check on num_txbdfree. It could lead to
> > num_txbdfree become nagative.
> > Result was that the gianfar stops sending data.
> >
> > Changes from first version :
> > - removed a space between parens (David Millers comment)
> > - full email address in signed off line
> >
> >
> > Signed-off-by: Rini van Zetten <ri...@arvoo.nl>
>
> Good catch. Does this solve the bug you reported earlier?
>
> Acked-by: Andy Fleming <afle...@freescale.com>

Applied, thanks.

Reply all
Reply to author
Forward
0 new messages