diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-05-25 20:32:30 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2007-05-25 20:32:30 +0000 |
commit | bd36369ef6e52321676d1e59af0f12ab6ce56329 (patch) | |
tree | 28c5b4d2a935ae1c4bb7f89c2ea9512c397dbe62 /sys | |
parent | 631e93e0adb0977be3cb2e0f1daa708c556ca25c (diff) |
"boundries" -> "boundaries" in various comments. Started by Diego Casati.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hp300/dev/hdreg.h | 6 | ||||
-rw-r--r-- | sys/arch/i386/i386/locore.s | 4 | ||||
-rw-r--r-- | sys/arch/i386/i386/longrun.c | 4 | ||||
-rw-r--r-- | sys/lib/libkern/arch/amd64/bzero.S | 2 | ||||
-rw-r--r-- | sys/lib/libkern/arch/amd64/memset.S | 2 | ||||
-rw-r--r-- | sys/lib/libkern/arch/i386/bzero.S | 4 | ||||
-rw-r--r-- | sys/lib/libkern/arch/i386/memset.S | 4 |
7 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/hp300/dev/hdreg.h b/sys/arch/hp300/dev/hdreg.h index 30a7f1f4198..b289922abec 100644 --- a/sys/arch/hp300/dev/hdreg.h +++ b/sys/arch/hp300/dev/hdreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hdreg.h,v 1.5 2005/11/18 00:09:15 miod Exp $ */ +/* $OpenBSD: hdreg.h,v 1.6 2007/05/25 20:32:29 krw Exp $ */ /* $NetBSD: rdreg.h,v 1.7 1996/02/09 18:00:37 scottr Exp $ */ /* @@ -160,8 +160,8 @@ struct hd_clearcmd { * Several HP drives have an odd number of 256 byte sectors per track. * This makes it rather difficult to break them into 512 and 1024 byte blocks. * So...we just do like HPUX and don't bother to respect hardware track/head - * boundries -- we just mold the disk so that we use the entire capacity. - * HPUX also sometimes doen't abide by cylinder boundries, we attempt to + * boundaries -- we just mold the disk so that we use the entire capacity. + * HPUX also sometimes doen't abide by cylinder boundaries, we attempt to * whenever possible. * * DISK REAL (256 BPS) HPUX (1024 BPS) BSD (512 BPS) diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index fc08292dc61..0a2736bce97 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.108 2007/04/13 11:16:08 art Exp $ */ +/* $OpenBSD: locore.s,v 1.109 2007/05/25 20:32:29 krw Exp $ */ /* $NetBSD: locore.s,v 1.145 1996/05/03 19:41:19 christos Exp $ */ /*- @@ -2183,7 +2183,7 @@ ENTRY(bzero) /* * if the string is too short, it's really not worth the overhead - * of aligning to word boundries, etc. So we jump to a plain + * of aligning to word boundaries, etc. So we jump to a plain * unaligned set. */ cmpl $16,%edx diff --git a/sys/arch/i386/i386/longrun.c b/sys/arch/i386/i386/longrun.c index 89adb585ca8..1ad14787a42 100644 --- a/sys/arch/i386/i386/longrun.c +++ b/sys/arch/i386/i386/longrun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: longrun.c,v 1.12 2006/12/20 17:50:40 gwk Exp $ */ +/* $OpenBSD: longrun.c,v 1.13 2007/05/25 20:32:29 krw Exp $ */ /* * Copyright (c) 2003 Ted Unangst * Copyright (c) 2001 Tamotsu Hattori @@ -88,7 +88,7 @@ longrun_update(void *arg) } /* - * Transmeta documentation says performance window boundries + * Transmeta documentation says performance window boundaries * must be between 0 and 100 or a GP0 exception is generated. * mode is really only a bit, 0 or 1 * These values will be rounded by the CPU to within the diff --git a/sys/lib/libkern/arch/amd64/bzero.S b/sys/lib/libkern/arch/amd64/bzero.S index 6e4fe834d1a..b246ac9adb5 100644 --- a/sys/lib/libkern/arch/amd64/bzero.S +++ b/sys/lib/libkern/arch/amd64/bzero.S @@ -18,7 +18,7 @@ ENTRY(bzero) /* * if the string is too short, it's really not worth the overhead - * of aligning to word boundries, etc. So we jump to a plain + * of aligning to word boundaries, etc. So we jump to a plain * unaligned set. */ cmpq $16,%rdx diff --git a/sys/lib/libkern/arch/amd64/memset.S b/sys/lib/libkern/arch/amd64/memset.S index 2d92dc66534..c28b8840104 100644 --- a/sys/lib/libkern/arch/amd64/memset.S +++ b/sys/lib/libkern/arch/amd64/memset.S @@ -19,7 +19,7 @@ ENTRY(memset) /* * if the string is too short, it's really not worth the overhead - * of aligning to word boundries, etc. So we jump to a plain + * of aligning to word boundaries, etc. So we jump to a plain * unaligned set. */ cmpq $0x0f,%rcx diff --git a/sys/lib/libkern/arch/i386/bzero.S b/sys/lib/libkern/arch/i386/bzero.S index 5821f15cee4..2d1a1b1e59f 100644 --- a/sys/lib/libkern/arch/i386/bzero.S +++ b/sys/lib/libkern/arch/i386/bzero.S @@ -1,4 +1,4 @@ -/* $OpenBSD: bzero.S,v 1.2 1996/09/27 06:47:45 mickey Exp $ */ +/* $OpenBSD: bzero.S,v 1.3 2007/05/25 20:32:29 krw Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. @@ -17,7 +17,7 @@ ENTRY(bzero) /* * if the string is too short, it's really not worth the overhead - * of aligning to word boundries, etc. So we jump to a plain + * of aligning to word boundaries, etc. So we jump to a plain * unaligned set. */ cmpl $16,%edx diff --git a/sys/lib/libkern/arch/i386/memset.S b/sys/lib/libkern/arch/i386/memset.S index 335de9b0bf8..46bfd06fbc2 100644 --- a/sys/lib/libkern/arch/i386/memset.S +++ b/sys/lib/libkern/arch/i386/memset.S @@ -1,4 +1,4 @@ -/* $OpenBSD: memset.S,v 1.2 1996/09/27 06:47:47 mickey Exp $ */ +/* $OpenBSD: memset.S,v 1.3 2007/05/25 20:32:29 krw Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. @@ -19,7 +19,7 @@ ENTRY(memset) /* * if the string is too short, it's really not worth the overhead - * of aligning to word boundries, etc. So we jump to a plain + * of aligning to word boundaries, etc. So we jump to a plain * unaligned set. */ cmpl $0x0f,%ecx |