summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2007-06-07 03:41:53 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2007-06-07 03:41:53 +0000
commit703be0dea42fdedcc44500f2747e7f83894e2acb (patch)
treec635a5e305aeaf6cbea9543b5d2091599b0a2f4d /sys/arch/sparc64
parent572bcf7550756be8a3c77f603b85107ecd0ed711 (diff)
Comment 'fixes'. All bounds_check_with_label now identical except for
vax and alpha.
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r--sys/arch/sparc64/sparc64/disksubr.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/arch/sparc64/sparc64/disksubr.c b/sys/arch/sparc64/sparc64/disksubr.c
index 4670ab4d780..3f7fae515ae 100644
--- a/sys/arch/sparc64/sparc64/disksubr.c
+++ b/sys/arch/sparc64/sparc64/disksubr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disksubr.c,v 1.32 2007/06/07 00:28:17 krw Exp $ */
+/* $OpenBSD: disksubr.c,v 1.33 2007/06/07 03:41:52 krw Exp $ */
/* $NetBSD: disksubr.c,v 1.13 2000/12/17 22:39:18 pk Exp $ */
/*
@@ -300,10 +300,7 @@ bounds_check_with_label(struct buf *bp, struct disklabel *lp,
bp->b_bcount = sz << DEV_BSHIFT;
}
- /* overwriting disk label ? */
- /* XXX should also protect bootstrap in first 8K */
- /* XXX this assumes everything <=LABELSECTOR is label! */
- /* But since LABELSECTOR is 0, that's ok for now. */
+ /* Overwriting disk label? */
if (bp->b_blkno + blockpersec(DL_GETPOFFSET(p), lp) <= labelsector &&
bp->b_blkno + blockpersec(DL_GETPOFFSET(p), lp) + sz > labelsector &&
(bp->b_flags & B_READ) == 0 && !wlabel) {