summaryrefslogtreecommitdiff
path: root/sys/dev/raidframe
diff options
context:
space:
mode:
authoroster <oster@NetBSD.org>2013-02-18 19:42:54 +0000
committeroster <oster@NetBSD.org>2013-02-18 19:42:54 +0000
commitc4b580558cd80cc8ad432da3d541e67908975981 (patch)
treef93a9d2e891172cd504b60a6af2013e2934038bf /sys/dev/raidframe
parent789b807a383a9d1046604d7e1052d0d1f1e2b284 (diff)
Fix a few spelling issues. No functional changes.
Diffstat (limited to 'sys/dev/raidframe')
-rw-r--r--sys/dev/raidframe/rf_netbsdkintf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c
index e205dce44a9..34d1bec5bac 100644
--- a/sys/dev/raidframe/rf_netbsdkintf.c
+++ b/sys/dev/raidframe/rf_netbsdkintf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rf_netbsdkintf.c,v 1.298 2012/08/09 23:53:25 buhrow Exp $ */
+/* $NetBSD: rf_netbsdkintf.c,v 1.299 2013/02/18 19:42:54 oster Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2008-2011 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
***********************************************************/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.298 2012/08/09 23:53:25 buhrow Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.299 2013/02/18 19:42:54 oster Exp $");
#ifdef _KERNEL_OPT
#include "opt_compat_netbsd.h"
@@ -421,7 +421,7 @@ rf_autoconfig(device_t self)
config_sets = rf_create_auto_sets(ac_list);
/*
- * 3. Evaluate each set andconfigure the valid ones.
+ * 3. Evaluate each set and configure the valid ones.
* This gets done in rf_buildroothack().
*/
rf_buildroothack(config_sets);
@@ -1424,7 +1424,7 @@ raidioctl(dev_t dev, u_long cmd, void *data, int flag, struct lwp *l)
rf_ds_reconstructing) {
printf("raid%d: Unable to reconstruct to disk at:\n",
raidPtr->raidid);
- printf("raid%d: Col: %d Reconstruction already occuring!\n", raidPtr->raidid, column);
+ printf("raid%d: Col: %d Reconstruction already occurring!\n", raidPtr->raidid, column);
rf_unlock_mutex2(raidPtr->mutex);
return (EINVAL);
@@ -3253,7 +3253,7 @@ rf_reasonable_label(RF_ComponentLabel_t *clabel, uint64_t numsecs)
* For reasons yet unknown, some old component labels have garbage in
* the newer numBlocksHi region, and this causes lossage. Since those
* disks will also have numsecs set to less than 32 bits of sectors,
- * we can determine when this corruption has occured, and fix it.
+ * we can determine when this corruption has occurred, and fix it.
*
* The exact same problem, with the same unknown reason, happens to
* the partitionSizeHi member as well.
@@ -3388,7 +3388,7 @@ rf_does_it_fit(RF_ConfigSet_t *cset, RF_AutoConfig_t *ac)
/* note that we are not checking partitionSize here..
Note that we are also not checking the mod_counters here.
- If everything else matches execpt the mod_counter, that's
+ If everything else matches except the mod_counter, that's
good enough for this test. We will deal with the mod_counters
a little later in the autoconfiguration process.