diff options
Diffstat (limited to 'sys/kern/subr_witness.c')
-rw-r--r-- | sys/kern/subr_witness.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_witness.c b/sys/kern/subr_witness.c index 72c08c8..06bab91 100644 --- a/sys/kern/subr_witness.c +++ b/sys/kern/subr_witness.c @@ -205,7 +205,7 @@ SYSCTL_PROC(_debug_witness, OID_AUTO, watch, CTLFLAG_RW | CTLTYPE_INT, NULL, 0, /* * When KDB is enabled and witness_kdb is set to 1, it will cause the system * to drop into kdebug() when: - * - a lock heirarchy violation occurs + * - a lock hierarchy violation occurs * - locks are held when going to sleep. */ #ifdef WITNESS_KDB @@ -219,7 +219,7 @@ SYSCTL_INT(_debug_witness, OID_AUTO, kdb, CTLFLAG_RW, &witness_kdb, 0, ""); /* * When KDB is enabled and witness_trace is set to 1, it will cause the system * to print a stack trace: - * - a lock heirarchy violation occurs + * - a lock hierarchy violation occurs * - locks are held when going to sleep. */ int witness_trace = 1; |