summaryrefslogtreecommitdiff
path: root/sys/dev/dm/dm_table.c
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2021-08-20 20:25:26 +0000
committerandvar <andvar@NetBSD.org>2021-08-20 20:25:26 +0000
commit47ffcd69489a75316f35490b607817882744dfb7 (patch)
treeaf6b4858ca875613c60fe4f7650f983f09aa1163 /sys/dev/dm/dm_table.c
parent635db1f9ab37a89b6f61126b155d1a985c5d4c8a (diff)
fix various typos in comments and log messages.
Diffstat (limited to 'sys/dev/dm/dm_table.c')
-rw-r--r--sys/dev/dm/dm_table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/dm/dm_table.c b/sys/dev/dm/dm_table.c
index 9caef776c99..03fffd0defd 100644
--- a/sys/dev/dm/dm_table.c
+++ b/sys/dev/dm/dm_table.c
@@ -1,4 +1,4 @@
-/* $NetBSD: dm_table.c,v 1.19 2019/12/31 10:30:30 tkusumi Exp $ */
+/* $NetBSD: dm_table.c,v 1.20 2021/08/20 20:25:27 andvar Exp $ */
/*
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dm_table.c,v 1.19 2019/12/31 10:30:30 tkusumi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dm_table.c,v 1.20 2021/08/20 20:25:27 andvar Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -326,7 +326,7 @@ dm_table_head_destroy(dm_table_head_t *head)
KASSERT(!mutex_owned(&head->table_mtx));
KASSERT(!cv_has_waiters(&head->table_cv));
- /* tables doens't exists when I call this routine, therefore it
+ /* tables don't exist when I call this routine, therefore it
* doesn't make sense to have io_cnt != 0 */
KASSERT(head->io_cnt == 0);