From owner-freebsd-commit Sun Apr 30 21:53:43 1995 Return-Path: commit-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id VAA13889 for commit-outgoing; Sun, 30 Apr 1995 21:53:43 -0700 Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id VAA13869 for cvs-sys-outgoing; Sun, 30 Apr 1995 21:52:04 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id VAA13860 ; Sun, 30 Apr 1995 21:51:41 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id OAA16733; Mon, 1 May 1995 14:48:51 +1000 Date: Mon, 1 May 1995 14:48:51 +1000 From: Bruce Evans Message-Id: <199505010448.OAA16733@godzilla.zeta.org.au> To: CVS-commiters@freefall.cdrom.com, cvs-sys@freefall.cdrom.com, julian@freefall.cdrom.com Subject: Re: cvs commit: src/sys/sys disklabel.h Sender: commit-owner@FreeBSD.org Precedence: bulk > Modified: sys/sys disklabel.h > Log: > making a reservation for more bits before people start using them > in the minor number, (this stuff HAS to go!) > The change I want is: > /* > 3 2 1 0 > 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 > _________________________________________________________________ > | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | > ----------------------------------------------------------------- > | TYPE | SLICE | MAJOR? | UNIT |PART | <-now > ----------------------------------------------------------------- > | TYPE |PART2| SLICE | MAJOR? | UNIT |PART | <-soon > ----------------------------------------------------------------- > > I want 3 more part bits (taken from 'TYPE' (useless as it is) (JRE) > */ I already use the low 6 bits of the TYPE for FDTYPE() in isa/fdc.h :-]. Don't forget to update all the places that decode or encode the bits, e.g., dkminor() in MAKEDEV. Bruce