From owner-svn-src-all@FreeBSD.ORG Wed Jun 17 06:47:05 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A17D3106566C; Wed, 17 Jun 2009 06:47:05 +0000 (UTC) (envelope-from lulf@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9030F8FC1A; Wed, 17 Jun 2009 06:47:05 +0000 (UTC) (envelope-from lulf@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n5H6l5x2065164; Wed, 17 Jun 2009 06:47:05 GMT (envelope-from lulf@svn.freebsd.org) Received: (from lulf@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n5H6l5XD065162; Wed, 17 Jun 2009 06:47:05 GMT (envelope-from lulf@svn.freebsd.org) Message-Id: <200906170647.n5H6l5XD065162@svn.freebsd.org> From: Ulf Lilleengen Date: Wed, 17 Jun 2009 06:47:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r194334 - head/lib/libdisk X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2009 06:47:06 -0000 Author: lulf Date: Wed Jun 17 06:47:05 2009 New Revision: 194334 URL: http://svn.freebsd.org/changeset/base/194334 Log: - Allow a higher value for the number of heads. Its better to do this and allow a few bad systems to run than to be completely strict about it. Modified: head/lib/libdisk/change.c Modified: head/lib/libdisk/change.c ============================================================================== --- head/lib/libdisk/change.c Wed Jun 17 06:41:10 2009 (r194333) +++ head/lib/libdisk/change.c Wed Jun 17 06:47:05 2009 (r194334) @@ -36,7 +36,7 @@ Sanitize_Bios_Geom(struct disk *disk) if (disk->bios_cyl >= 65536) sane = 0; - if (disk->bios_hd >= 256) + if (disk->bios_hd > 256) sane = 0; #ifdef PC98 if (disk->bios_sect >= 256)