[PATCH] info to atm layer about broken connection

Duncan Sands duncan.sands at math.u-psud.fr
Mon Oct 31 08:01:34 EST 2005


Hi Stanislaw,

>> ... But it seems to me you don't really want synchronous shutdown
> > anyway: you just want the connection to be killed.  
> Yes, vcc should be closed asynchronously but vcc_release_async() don't work now, 
> does it ? 

if it doesn't work then that's a reason to fix it, not to work around it.

> AFAIK try_module_get() in usbatm_atm_open() and module_put() in usbatm_atm_close() 
> prevent unload module when there is atm connection, so there shouldn't be 
> any deadlock with rmmod. 

You still haven't explained why you want to prevent the module from being unloaded.
As I said early on, I want it to be possible to unload the module at anytime.  That's
not set in stone, but in order for it to be changed you need to supply a good reason.
Right now, the module can be unloaded at any moment; the module unload disconnects
the device, so the effect of unloading is the same as unplugging the device.  I'm
guessing that the things you don't like the current module unloading behaviour are
exactly the same things that annoy you when the device is unplugged.  Is that right?

> My patch send NULL skb only when modem is physically disconnect form usb port.

It is impossible to tell the difference between a physical disconnect
and a logical disconnect (= module unload, usbfs ioctl, hotplug restart).
Your patch sends a NULL skb also when the module is unloaded for example.

> I think it is good to synchronously shutdown connection in such situation.

Why is this better than asynchronous shutdown?  Does your patch even do a
synchronous shutdown?  I don't see it waiting for the vcc's to go down.
Maybe there is some confusion here about the meaning of "synchronous
shutdown".  There are two things here: one is to put the socket in a state
in which it understands that the connection is closed.  This can be done
by the driver without doing any waiting; this is what I mean by asynchronous
shutdown.  The other thing is the actual destruction of the vcc, which
doesn't happen (as far as I know) until the userspace application closes the
socket.  So if you don't want USB device disconnection to complete before all
vccs have been destroyed, then you have to wait for the vccs to go down;
this is synchronous shutdown.  I hope it is now clear what I mean by
asynchronous vs synchronous shutdown.  Which one do you think is best,
and why?  I don't want to do synchronous shutdown unless there is an
excellent reason to do so.

> I review push function in pppoatm, clip and br2684 drivers, all of them expect 
> to get NULL skb and it is interpreted in the same manner - link is broken.

Yes, but who should send it?  Check out this thread:

http://www.atm.tut.fi/list-archive/linux-atm/msg06111.html

All the best,

Duncan.



More information about the Usbatm mailing list