Date: Tue, 19 May 1998 08:30:03 -0700 (PDT) From: Max Euston <meuston@jmrodgers.com> To: freebsd-bugs@FreeBSD.ORG Subject: RE: kern/6686: -stable does not support large IDE drives Message-ID: <199805191530.IAA00540@freefall.freebsd.org>
index | next in thread | raw e-mail
The following reply was made to PR kern/6686; it has been noted by GNATS.
From: Max Euston <meuston@jmrodgers.com>
To: "'hans@artcom.de'" <hans@artcom.de>,
"FreeBSD-gnats-submit@FreeBSD.ORG"
<FreeBSD-gnats-submit@FreeBSD.ORG>
Cc: Subject: RE: kern/6686: -stable does not support large IDE drives
Date: Tue, 19 May 1998 11:30:40 -0400
On Tuesday, May 19, 1998 8:41 AM, hans@artcom.de [SMTP:hans@artcom.de] wrote:
[snip]
> ! else if (wp->wdp_lbasize < 128*63*1024) { /* <=4.228 GB */
> ! du->dk_dd.d_ntracks = 128;
> ! }
> ! else if (wp->wdp_lbasize < 128*63*1024) { /* <=8.422 GB */
> ! du->dk_dd.d_ntracks = 255;
[snip]
shouldn't that be:
! else if (wp->wdp_lbasize < 255*63*1024) { /* <=8.422 GB */
^^^
Also, shouldn't all the tests be '<='?
I'm not "nit-picking", just noticed something that looked wrong. :)
Max
+----------------------------------+
|Max Euston <meuston@jmrodgers.com>|
+----------------------------------+
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199805191530.IAA00540>
