From owner-freebsd-current Fri Nov 15 16:15: 8 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0FE037B401; Fri, 15 Nov 2002 16:15:06 -0800 (PST) Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6633243E75; Fri, 15 Nov 2002 16:15:06 -0800 (PST) (envelope-from julian@elischer.org) Received: from InterJet.elischer.org ([12.232.168.4]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20021116001504.JGFP6492.rwcrmhc51.attbi.com@InterJet.elischer.org>; Sat, 16 Nov 2002 00:15:04 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id QAA47499; Fri, 15 Nov 2002 16:14:42 -0800 (PST) Date: Fri, 15 Nov 2002 16:14:41 -0800 (PST) From: Julian Elischer To: re@freebsd.org, FreeBSD current users Subject: Re: Sign fixes for disklabel(8) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 15 Nov 2002, Julian Elischer wrote: > > Here are the diffs to allow disklabel to correctly create partitions > > 1TB (up to 2TB is useful with UFS2) pending a different partitionning > scheme. It also allows you to correctly make smaller partitions beyond > 1TB which is nice if you don't want to waste 800GB on an array :-) > > > permission to commit please? > (pending comments by others) > > (also the sysinstall changes posted before) > (also the bluetooth code) The diff should not contain the following debug 'leftovers' which will not be committed.. } else { - off_t size; + u_int64_t size; size = pp->p_size; and } - if (pp->p_offset + pp->p_size > lp->d_secperunit) { + if ((pp->p_offset + pp->p_size) > lp->d_secperunit) { fprintf(stderr, > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message