summaryrefslogtreecommitdiff
path: root/sys/dev/dm/dm_ioctl.c
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2022-10-13 06:10:48 +0000
committerandvar <andvar@NetBSD.org>2022-10-13 06:10:48 +0000
commitad36c4e8fd6e37fa4cf57594401eb8850d58b0c9 (patch)
tree9b7f3d759acef0cae9504e8dee559b73a48888a1 /sys/dev/dm/dm_ioctl.c
parent4edaea284e66357c0f2710547d15bbfae96f974a (diff)
s/exaple/example/
Diffstat (limited to 'sys/dev/dm/dm_ioctl.c')
-rw-r--r--sys/dev/dm/dm_ioctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/dm/dm_ioctl.c b/sys/dev/dm/dm_ioctl.c
index c3c3d415fdb..b0f3b61dd95 100644
--- a/sys/dev/dm/dm_ioctl.c
+++ b/sys/dev/dm/dm_ioctl.c
@@ -1,4 +1,4 @@
-/* $NetBSD: dm_ioctl.c,v 1.55 2021/08/21 22:23:33 andvar Exp $ */
+/* $NetBSD: dm_ioctl.c,v 1.56 2022/10/13 06:10:48 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_ioctl.c,v 1.55 2021/08/21 22:23:33 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dm_ioctl.c,v 1.56 2022/10/13 06:10:48 andvar Exp $");
/*
* Locking is used to synchronise between ioctl calls and between dm_table's
@@ -74,7 +74,7 @@ __KERNEL_RCSID(0, "$NetBSD: dm_ioctl.c,v 1.55 2021/08/21 22:23:33 andvar Exp $")
*
* Example: dm_table_get_entry
* dm_table_destroy/dm_table_switch_tables
- * This exaple will lead to deadlock situation because after dm_table_get_entry
+ * This example will lead to deadlock situation because after dm_table_get_entry
* table reference counter is != 0 and dm_table_destroy have to wait on cv until
* reference counter is 0.
*