All of lore.kernel.org
 help / color / mirror / Atom feed
* net: skge breakage on 2.6.24-rc1
@ 2007-11-07 21:46 Heikki Orsila
  2007-11-07 21:53 ` Heikki Orsila
  0 siblings, 1 reply; 5+ messages in thread
From: Heikki Orsila @ 2007-11-07 21:46 UTC (permalink / raw)
  To: Linux Kernel Mailing List

After some bisecting, I found that net skge driver broke on

commit 7fb7ac241162dc51ec0f7644d4a97b2855213c32

My network card is:

0000:00:0e.0 Ethernet controller: 3Com Corporation 3c940 10/100/1000Base-T [Marvell] (rev 12)

Linux cheradenine 2.6.24-rc1-dirty #15 Wed Nov 7 23:39:28 EET 2007 x86_64 GNU/Linux

-- 
Heikki Orsila			Barbie's law:
heikki.orsila@iki.fi		"Math is hard, let's go shopping!"
http://www.iki.fi/shd

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: net: skge breakage on 2.6.24-rc1
  2007-11-07 21:46 net: skge breakage on 2.6.24-rc1 Heikki Orsila
@ 2007-11-07 21:53 ` Heikki Orsila
  2007-11-07 22:50   ` Rafael J. Wysocki
  0 siblings, 1 reply; 5+ messages in thread
From: Heikki Orsila @ 2007-11-07 21:53 UTC (permalink / raw)
  To: Linux Kernel Mailing List

On Wed, Nov 07, 2007 at 11:46:21PM +0200, Heikki Orsila wrote:
> After some bisecting, I found that net skge driver broke on
> 
> commit 7fb7ac241162dc51ec0f7644d4a97b2855213c32
> 
> My network card is:
> 
> 0000:00:0e.0 Ethernet controller: 3Com Corporation 3c940 10/100/1000Base-T [Marvell] (rev 12)
> 
> Linux cheradenine 2.6.24-rc1-dirty #15 Wed Nov 7 23:39:28 EET 2007 x86_64 GNU/Linux

Sorry, forgot to say what the problem is. Doing

	nc host port < /dev/zero

on a sending machine (not skge) to an skge machine that is receiving:

	nc -l -p port >/dev/null

with ~60 MiB/s speed, causes the interface go malfunct. A slow 
transfer doesn't cause a problem.

Also, after some fiddling, I noticed that not changing the register 
write order on patch:

+       skge_write32(hw, RB_ADDR(q, RB_END), end);
        skge_write32(hw, RB_ADDR(q, RB_WP), start);
        skge_write32(hw, RB_ADDR(q, RB_RP), start);
-       skge_write32(hw, RB_ADDR(q, RB_END), end);

fixes the visible effect.. Possibly not the root cause of the problem, 
but changing the order back fixes networking here.

-- 
Heikki Orsila			Barbie's law:
heikki.orsila@iki.fi		"Math is hard, let's go shopping!"
http://www.iki.fi/shd

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: net: skge breakage on 2.6.24-rc1
  2007-11-07 21:53 ` Heikki Orsila
@ 2007-11-07 22:50   ` Rafael J. Wysocki
  2007-11-07 23:06     ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Rafael J. Wysocki @ 2007-11-07 22:50 UTC (permalink / raw)
  To: Heikki Orsila; +Cc: Linux Kernel Mailing List

On Wednesday, 7 of November 2007, Heikki Orsila wrote:
> On Wed, Nov 07, 2007 at 11:46:21PM +0200, Heikki Orsila wrote:
> > After some bisecting, I found that net skge driver broke on
> > 
> > commit 7fb7ac241162dc51ec0f7644d4a97b2855213c32
> > 
> > My network card is:
> > 
> > 0000:00:0e.0 Ethernet controller: 3Com Corporation 3c940 10/100/1000Base-T [Marvell] (rev 12)
> > 
> > Linux cheradenine 2.6.24-rc1-dirty #15 Wed Nov 7 23:39:28 EET 2007 x86_64 GNU/Linux
> 
> Sorry, forgot to say what the problem is. Doing
> 
> 	nc host port < /dev/zero
> 
> on a sending machine (not skge) to an skge machine that is receiving:
> 
> 	nc -l -p port >/dev/null
> 
> with ~60 MiB/s speed, causes the interface go malfunct. A slow 
> transfer doesn't cause a problem.
> 
> Also, after some fiddling, I noticed that not changing the register 
> write order on patch:
> 
> +       skge_write32(hw, RB_ADDR(q, RB_END), end);
>         skge_write32(hw, RB_ADDR(q, RB_WP), start);
>         skge_write32(hw, RB_ADDR(q, RB_RP), start);
> -       skge_write32(hw, RB_ADDR(q, RB_END), end);
> 
> fixes the visible effect.. Possibly not the root cause of the problem, 
> but changing the order back fixes networking here.

Please put all of the relevant information into the bugzilla entry at
http://bugzilla.kernel.org/show_bug.cgi?id=9321

Thanks,
Rafael

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: net: skge breakage on 2.6.24-rc1
  2007-11-07 22:50   ` Rafael J. Wysocki
@ 2007-11-07 23:06     ` Andrew Morton
  2007-11-07 23:13       ` Heikki Orsila
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2007-11-07 23:06 UTC (permalink / raw)
  To: Rafael J. Wysocki; +Cc: shdl, linux-kernel, Stephen Hemminger, netdev

> On Wed, 7 Nov 2007 23:50:30 +0100 "Rafael J. Wysocki" <rjw@sisk.pl> wrote:
> On Wednesday, 7 of November 2007, Heikki Orsila wrote:
> > On Wed, Nov 07, 2007 at 11:46:21PM +0200, Heikki Orsila wrote:
> > > After some bisecting, I found that net skge driver broke on
> > > 
> > > commit 7fb7ac241162dc51ec0f7644d4a97b2855213c32


Thanks for doing the bisection.  It's a good idea to cc the author of the
offending patch after having done this.

> > > My network card is:
> > > 
> > > 0000:00:0e.0 Ethernet controller: 3Com Corporation 3c940 10/100/1000Base-T [Marvell] (rev 12)
> > > 
> > > Linux cheradenine 2.6.24-rc1-dirty #15 Wed Nov 7 23:39:28 EET 2007 x86_64 GNU/Linux
> > 
> > Sorry, forgot to say what the problem is. Doing
> > 
> > 	nc host port < /dev/zero
> > 
> > on a sending machine (not skge) to an skge machine that is receiving:
> > 
> > 	nc -l -p port >/dev/null
> > 
> > with ~60 MiB/s speed, causes the interface go malfunct. A slow 
> > transfer doesn't cause a problem.
> > 
> > Also, after some fiddling, I noticed that not changing the register 
> > write order on patch:
> > 
> > +       skge_write32(hw, RB_ADDR(q, RB_END), end);
> >         skge_write32(hw, RB_ADDR(q, RB_WP), start);
> >         skge_write32(hw, RB_ADDR(q, RB_RP), start);
> > -       skge_write32(hw, RB_ADDR(q, RB_END), end);
> > 
> > fixes the visible effect.. Possibly not the root cause of the problem, 
> > but changing the order back fixes networking here.
> 
> Please put all of the relevant information into the bugzilla entry at
> http://bugzilla.kernel.org/show_bug.cgi?id=9321

Please cc netdev@vger.kernel.org on networking-related discussions.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: net: skge breakage on 2.6.24-rc1
  2007-11-07 23:06     ` Andrew Morton
@ 2007-11-07 23:13       ` Heikki Orsila
  0 siblings, 0 replies; 5+ messages in thread
From: Heikki Orsila @ 2007-11-07 23:13 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Rafael J. Wysocki, linux-kernel, Stephen Hemminger, netdev

On Wed, Nov 07, 2007 at 03:06:21PM -0800, Andrew Morton wrote:
> > On Wed, 7 Nov 2007 23:50:30 +0100 "Rafael J. Wysocki" <rjw@sisk.pl> wrote:
> > On Wednesday, 7 of November 2007, Heikki Orsila wrote:
> > > On Wed, Nov 07, 2007 at 11:46:21PM +0200, Heikki Orsila wrote:
> > > > After some bisecting, I found that net skge driver broke on
> > > > 
> > > > commit 7fb7ac241162dc51ec0f7644d4a97b2855213c32
> 
> 
> Thanks for doing the bisection.  It's a good idea to cc the author of the
> offending patch after having done this.

Sorry, I just forgot this time. Just after the bug report I did mail 
the author in private (out of the list).

-- 
Heikki Orsila			Barbie's law:
heikki.orsila@iki.fi		"Math is hard, let's go shopping!"
http://www.iki.fi/shd

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-11-07 23:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-07 21:46 net: skge breakage on 2.6.24-rc1 Heikki Orsila
2007-11-07 21:53 ` Heikki Orsila
2007-11-07 22:50   ` Rafael J. Wysocki
2007-11-07 23:06     ` Andrew Morton
2007-11-07 23:13       ` Heikki Orsila

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.