Module Name: src
Committed By: andvar
Date: Thu Oct 13 06:10:48 UTC 2022
Modified Files:
src/sys/dev/dm: dm_ioctl.c
Log Message:
s/exaple/example/
To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sys/dev/dm/dm_ioctl.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/dm/dm_ioctl.c
diff -u src/sys/dev/dm/dm_ioctl.c:1.55 src/sys/dev/dm/dm_ioctl.c:1.56
--- src/sys/dev/dm/dm_ioctl.c:1.55 Sat Aug 21 22:23:33 2021
+++ src/sys/dev/dm/dm_ioctl.c Thu Oct 13 06:10:48 2022
@@ -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
*
* 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.
*