summaryrefslogtreecommitdiff
path: root/sys/dev/dm/dm_target_flakey.c
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2021-07-24 21:31:31 +0000
committerandvar <andvar@NetBSD.org>2021-07-24 21:31:31 +0000
commit34d96f12a5fdba1d6c4bc8849a8a112061282bb9 (patch)
tree95c5e86cc7cb63202b2510e8efd8af15569a3bb1 /sys/dev/dm/dm_target_flakey.c
parentd4e6d16e2580353b9afef55c3be37b7a2fdf1383 (diff)
Fix all remaining typos, mainly in comments but also in few definitions and log messages, reported by me in PR kern/54889.
Also fixed some additional typos in comments, found on review of same files or typos.
Diffstat (limited to 'sys/dev/dm/dm_target_flakey.c')
-rw-r--r--sys/dev/dm/dm_target_flakey.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/dm/dm_target_flakey.c b/sys/dev/dm/dm_target_flakey.c
index dbd9adbf0fe..7f1b63065c2 100644
--- a/sys/dev/dm/dm_target_flakey.c
+++ b/sys/dev/dm/dm_target_flakey.c
@@ -1,4 +1,4 @@
-/* $NetBSD: dm_target_flakey.c,v 1.3 2020/01/21 16:27:53 tkusumi Exp $ */
+/* $NetBSD: dm_target_flakey.c,v 1.4 2021/07/24 21:31:37 andvar Exp $ */
/*
* Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dm_target_flakey.c,v 1.3 2020/01/21 16:27:53 tkusumi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dm_target_flakey.c,v 1.4 2021/07/24 21:31:37 andvar Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -365,7 +365,7 @@ _flakey_nestiobuf_iodone(buf_t *bp)
if (bp->b_error == 0 &&
(bp->b_bcount < bp->b_bufsize || bp->b_resid > 0)) {
/*
- * Not all got transfered, raise an error. We have no way to
+ * Not all got transferred, raise an error. We have no way to
* propagate these conditions to mbp.
*/
error = EIO;