Re: [PATCH] skge: get rid of warning on race

2005-12-13 Thread David S. Miller
From: Dave Jones <[EMAIL PROTECTED]> Date: Wed, 14 Dec 2005 00:37:08 -0500 > drivers/net/skge.ko needs unknown symbol netif_stopped it's a typo, it should be netif_queue_stopped(). :-/ - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED

Re: [PATCH] skge: get rid of warning on race

2005-12-13 Thread Dave Jones
OTECTED]> Tue, 13 Dec 2005 09:33:03 -0500 > > [PATCH] skge: get rid of warning on race > > Get rid of warning in case of race with ring full and lockless > tx on the skge driver. It is possible to be in the transmit > routine with no available slots and already stoppe

Re: [PATCH] skge: get rid of warning on race

2005-12-13 Thread Olaf Hering
On Tue, Dec 06, Stephen Hemminger wrote: > Get rid of warning in case of race with ring full and lockless > tx on the skge driver. It is possible to be in the transmit > routine with no available slots and already stopped. Where do I find that netif_stopped? -- short story of a lazy sysadmin:

Re: [PATCH] skge: get rid of warning on race

2005-12-06 Thread David S. Miller
From: Jeff Garzik <[EMAIL PROTECTED]> Date: Tue, 06 Dec 2005 19:36:29 -0500 > Stephen Hemminger wrote: > > Get rid of warning in case of race with ring full and lockless > > tx on the skge driver. It is possible to be in the transmit > > routine with no available slots and already stopped. > > >

Re: [PATCH] skge: get rid of warning on race

2005-12-06 Thread Jeff Garzik
Stephen Hemminger wrote: Get rid of warning in case of race with ring full and lockless tx on the skge driver. It is possible to be in the transmit routine with no available slots and already stopped. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> Is this for 'upstream' (2.6.16) or 'upst

[PATCH] skge: get rid of warning on race

2005-12-06 Thread Stephen Hemminger
Get rid of warning in case of race with ring full and lockless tx on the skge driver. It is possible to be in the transmit routine with no available slots and already stopped. Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]> --- orig/drivers/net/skge.c +++ new/drivers/net/skge.c @@ -2280,11 +