Revert forcing a rachitic `c' slice size when the drive geometry is not known,
authormiod <miod@openbsd.org>
Fri, 16 Jan 2015 20:18:24 +0000 (20:18 +0000)
committermiod <miod@openbsd.org>
Fri, 16 Jan 2015 20:18:24 +0000 (20:18 +0000)
now that the disklabel code will reduce MAXDISKSIZE to the real size if a Sun
label is found.

sys/arch/sparc/dev/xd.c
sys/arch/sparc/dev/xy.c

index eb6347a..13bf6f1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: xd.c,v 1.70 2015/01/15 21:17:54 miod Exp $    */
+/*     $OpenBSD: xd.c,v 1.71 2015/01/16 20:18:24 miod Exp $    */
 /*     $NetBSD: xd.c,v 1.37 1997/07/29 09:58:16 fair Exp $     */
 
 /*
@@ -295,8 +295,6 @@ xdgetdisklabel(dev, xd, lp, spoofonly)
        if (xd->state == XD_DRIVE_ATTACHING || xd->state == XD_DRIVE_NOLABEL) {
                /* needs to be nonzero */
                lp->d_secpercyl = 1;
-               /* prevent initdisklabel() from putting MAXDISKSIZE */
-               DL_SETDSIZE(lp, 1ULL);
        } else {
                /*
                 * Disk geometry is known from a previously found label.
index e70bed8..00d25d9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: xy.c,v 1.67 2015/01/15 21:17:54 miod Exp $    */
+/*     $OpenBSD: xy.c,v 1.68 2015/01/16 20:18:24 miod Exp $    */
 /*     $NetBSD: xy.c,v 1.26 1997/07/19 21:43:56 pk Exp $       */
 
 /*
@@ -233,8 +233,6 @@ xygetdisklabel(dev, xy, lp, spoofonly)
        if (xy->state == XY_DRIVE_ATTACHING || xy->state == XY_DRIVE_NOLABEL) {
                /* needs to be nonzero */
                lp->d_secpercyl = 1;
-               /* prevent initdisklabel() from putting MAXDISKSIZE */
-               DL_SETDSIZE(lp, 1ULL);
        } else {
                /*
                 * Disk geometry is known for a previously found label.