Re: Fw: [Bugme-new] [Bug 6197] New: unregister_netdevice: waiting for ppp9 to become free. Usage count = 658

2006-03-10 Thread Baruch Even
Herbert Xu wrote: Baruch Even [EMAIL PROTECTED] wrote: + case NETDEV_UNREGISTER: case NETDEV_GOING_DOWN: case NETDEV_DOWN: /* Find every socket on this device and kill it. */ This brings up the question as to why we need to flush it on NETDEV_GOING_DOWN

Re: [Bugme-new] [Bug 6197] New: unregister_netdevice: waiting for ppp9 to become free. Usage count = 658

2006-03-10 Thread Stephen Hemminger
On Fri, 10 Mar 2006 10:41:51 + Baruch Even [EMAIL PROTECTED] wrote: Herbert Xu wrote: Baruch Even [EMAIL PROTECTED] wrote: + case NETDEV_UNREGISTER: case NETDEV_GOING_DOWN: case NETDEV_DOWN: /* Find every socket on this device and kill it. */

Re: Fw: [Bugme-new] [Bug 6197] New: unregister_netdevice: waiting for ppp9 to become free. Usage count = 658

2006-03-09 Thread Baruch Even
* Andrew Morton [EMAIL PROTECTED] [060309 12:19]: Begin forwarded message: Date: Thu, 9 Mar 2006 01:24:06 -0800 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [Bugme-new] [Bug 6197] New: unregister_netdevice: waiting for ppp9 to become free. Usage count = 658 http

Re: [Bugme-new] [Bug 6197] New: unregister_netdevice: waiting for ppp9 to become free. Usage count = 658

2006-03-09 Thread David S. Miller
From: Baruch Even [EMAIL PROTECTED] Date: Thu, 9 Mar 2006 23:56:39 +0200 We need to remove all references to the device when we receive the NETDEV_UNREGISTER notification. Signed-off-by: Baruch Even [EMAIL PROTECTED] Good spotting Baruch. Once this gets a positive test result I'll apply

Re: Fw: [Bugme-new] [Bug 6197] New: unregister_netdevice: waiting for ppp9 to become free. Usage count = 658

2006-03-09 Thread Herbert Xu
Baruch Even [EMAIL PROTECTED] wrote: + case NETDEV_UNREGISTER: case NETDEV_GOING_DOWN: case NETDEV_DOWN: /* Find every socket on this device and kill it. */ This brings up the question as to why we need to flush it on NETDEV_GOING_DOWN and NETDEV_DOWN as