diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-08-11 21:32:41 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-08-11 21:32:41 +0000 |
commit | d6448bf3ca880c1ab8cd60de5147e4b15f64bb40 (patch) | |
tree | 87e8130583422e2d14309ce2605834274daf03a0 /sys/arch/hppa64 | |
parent | a1a84da3924b3902cc76313f4ae1661cfe837170 (diff) |
Use d_secperunit rather than 0x1fffffff as the default value for
RAW_PART's p_size. Since d_secperunit is initialized to 0x1fffffff if
not specified there should be no need to use the magic number again.
And if d_secperunit was specified then that value should be used
instead of the magic number.
This was already being done for hp300, luna88k, mac68k, mvme68k,
mvme88k.
Should be a no-op.
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r-- | sys/arch/hppa64/hppa64/disksubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/hppa64/disksubr.c b/sys/arch/hppa64/hppa64/disksubr.c index 4306a07ea5e..f5ca8500280 100644 --- a/sys/arch/hppa64/hppa64/disksubr.c +++ b/sys/arch/hppa64/hppa64/disksubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disksubr.c,v 1.11 2006/07/09 21:06:39 krw Exp $ */ +/* $OpenBSD: disksubr.c,v 1.12 2006/08/11 21:32:40 krw Exp $ */ /* * Copyright (c) 1999 Michael Shalayeff @@ -157,7 +157,7 @@ readdisklabel(dev, strat, lp, osdep, spoofonly) lp->d_partitions[i].p_offset = 0; } if (lp->d_partitions[i].p_size == 0) - lp->d_partitions[i].p_size = 0x1fffffff; + lp->d_partitions[i].p_size = lp->d_secperunit; lp->d_partitions[i].p_offset = 0; minilabel = fallbacklabel = *lp; |