From owner-freebsd-bugs@FreeBSD.ORG Thu Jun 3 18:31:08 2010 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D81B71065673; Thu, 3 Jun 2010 18:31:08 +0000 (UTC) (envelope-from dieterbsd@engineer.com) Received: from imr-mb01.mx.aol.com (imr-mb01.mx.aol.com [64.12.207.164]) by mx1.freebsd.org (Postfix) with ESMTP id 955C58FC0A; Thu, 3 Jun 2010 18:31:08 +0000 (UTC) Received: from imo-da04.mx.aol.com (imo-da04.mx.aol.com [205.188.169.202]) by imr-mb01.mx.aol.com (8.14.1/8.14.1) with ESMTP id o53IUeOa031401; Thu, 3 Jun 2010 14:30:40 -0400 Received: from dieterbsd@engineer.com by imo-da04.mx.aol.com (mail_out_v42.9.) id e.dfd.9a35a51 (37084); Thu, 3 Jun 2010 14:30:34 -0400 (EDT) Received: from smtprly-me02.mx.aol.com (smtprly-me02.mx.aol.com [64.12.95.103]) by cia-db06.mx.aol.com (v129.4) with ESMTP id MAILCIADB066-b2b84c07f4c2b9; Thu, 03 Jun 2010 14:30:34 -0400 Received: from web-mmc-m06 (web-mmc-m06.sim.aol.com [64.12.224.139]) by smtprly-me02.mx.aol.com (v129.4) with ESMTP id MAILSMTPRLYME022-b2b84c07f4c2b9; Thu, 03 Jun 2010 14:30:26 -0400 To: bug-followup@freebsd.org, bu7cher@yandex.ru Content-Transfer-Encoding: quoted-printable Date: Thu, 03 Jun 2010 14:30:26 -0400 X-AOL-IP: 72.251.78.55 X-MB-Message-Source: WebUI Received: from 72.251.78.55 by web-mmc-m06.sysops.aol.com (64.12.224.139) with HTTP (WebMailUI); Thu, 03 Jun 2010 14:30:26 -0400 MIME-Version: 1.0 From: dieterbsd@engineer.com X-MB-Message-Type: User Content-Type: text/plain; charset="us-ascii"; format=flowed X-Mailer: Mail.com Webmail 31793-STANDARD Message-Id: <8CCD161F8618545-1570-16036@web-mmc-m06.sysops.aol.com> X-Spam-Flag: NO X-AOL-SENDER: dieterbsd@engineer.com Cc: freebsd@sopwith.solgatos.com, freebsd-bugs@FreeBSD.org Subject: Re: kern/141235: 8.0 no longer provides /dev entries for all disk slices [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Jun 2010 18:31:08 -0000 > Did you try to remove both deprecated GEOM_BSD and GEOM_MBR > from your config? > Now in 8.0+ you should use GEOM_PART_MBR, GEOM_PART_EBR and > GEOM_PART_BSD instead. And they all are in DEFAULTS config by > default. > > Your MBR partitions should be served with GEOM_PART_MBR scheme. > An extended partitions should be served with GEOM_PART_EBR scheme. > A BSD slices should be served with GEOM_PART_BSD scheme. I started with the default GENERIC 8.0-release kernel and it is broken. It does not provide /dev entries for MBR extended partitions. Changing the GEOM_* options to be #define GEOM_BSD 1 #define GEOM_LABEL 1 #define GEOM_PART_GPT 1 #define GEOM_MBR 1 (which turns out to be the same as they were in 7.1) makes everything=20 work.