From owner-freebsd-current Wed Mar 20 22:04:01 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA25501 for current-outgoing; Wed, 20 Mar 1996 22:04:01 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id WAA25464 for ; Wed, 20 Mar 1996 22:03:50 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id QAA24097; Thu, 21 Mar 1996 16:53:22 +1100 Date: Thu, 21 Mar 1996 16:53:22 +1100 From: Bruce Evans Message-Id: <199603210553.QAA24097@godzilla.zeta.org.au> To: julian@ref.tfs.com, scrappy@ki.net Subject: Re: PATCH: small, syntax changes for devfs Cc: current@FreeBSD.ORG Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > For some reason, I'm getting all my /dev/sd0[abcef] devices, but >none of the /dev/sd0s1[abcef] devices. Looking at the code, I can't find There seems to be a bug or two, and some details aren't right yet: - perhaps you don't have those devices. There are about 512 slice/partition names per physical device, and only the existent ones are generated. - names for partitions aren't generated unless the slice containing the partitions or at least one partition on that slice is open. I'm not sure if they should be generated; anyway, this isn't implemented. - names for aliases for partitions in the compatibility slice apparently arent't generated. I'm not sure if the should be; but this is supposed to be implemented. - names for my removable rsd1 weren't generated correctly. After messing around with this for a while, the disk became inaccessible even using ordinary /dev. This bug has something to do with the disk usually not having any devices open on it. Bruce