Date: Fri, 15 Nov 2002 16:14:41 -0800 (PST) From: Julian Elischer <julian@elischer.org> To: re@freebsd.org, FreeBSD current users <current@FreeBSD.ORG> Subject: Re: Sign fixes for disklabel(8) Message-ID: <Pine.BSF.4.21.0211151611040.46162-100000@InterJet.elischer.org> In-Reply-To: <Pine.BSF.4.21.0211151555190.46162-200000@InterJet.elischer.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0211151611040.46162-100000>