From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: From: "Russ Cox" To: 9fans@cse.psu.edu Subject: Re: [9fans] detaching devices in kernel MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Fri, 4 Oct 2002 12:03:14 -0400 Topicbox-Message-UUID: fd01fad8-eaca-11e9-9e20-41e7f4b1d025 you can remove a device from your namespace using unmount, but in most (all?) cases, that doesn't make the device stop talking to the underlying hardware or whatever it does. 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.