Re: [PATCH] s2io: netpoll support

2006-06-26 Thread Brian Haley
]; Ananda. Raju (E-mail); Leonid. Grossman (E-mail) Subject: Re: [PATCH] s2io: netpoll support This adds netpoll support for things like netconsole/kgdboe to the s2io 10GbE driver. Signed-off-by: Brian Haley [EMAIL PROTECTED] - To unsubscribe from this list: send the line unsubscribe netdev in the body

Re: [PATCH] s2io: netpoll support

2006-06-15 Thread Brian Haley
This adds netpoll support for things like netconsole/kgdboe to the s2io 10GbE driver. Signed-off-by: Brian Haley [EMAIL PROTECTED] diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index 79208f4..f2b8dba 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c @@ -2575,6 +2575,50 @@ no_rx:

RE: [PATCH] s2io: netpoll support

2006-06-13 Thread Ravinandan Arakali
I don't think we should disable and enable all interrupts in the poll_controller entry point. With the current patch, at the end of the routine _all_ interrupts get enabled which is not desirable. Maybe you should just do disable_irq() at start of function and enable_irq() before exiting, the way