a 9p file server can be detached by clunk-ing the connection,
however there doesn't seem to be a way one can detach a kernel-
level driver?
there's devattach, devopen, devclose, etc, but the only thing
reminiscent of 'devdetach' is 'devremove', which of course is
different...
there is detach code in the bitsy kernel for the wavelan ethernet,
but nothing in /sys/src/9/pc...
do i assume that once bound a device cannot be 'unbound'? if
devremove the answer?
andrey
the devices typically are initialized before you
bind them into the namespace, so it makes a little sense
that they don't get torn down just because you don't
have them in your namespace anymore.
thanks for the clarification.
What would be the process by which a device is removed. A new function in
the interface (detach?) or some sequence of existing functions?
ron