summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_mutex.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/kern_mutex.c')
-rw-r--r--sys/kern/kern_mutex.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/kern/kern_mutex.c b/sys/kern/kern_mutex.c
index 6baf62a..b34d049 100644
--- a/sys/kern/kern_mutex.c
+++ b/sys/kern/kern_mutex.c
@@ -611,8 +611,10 @@ mtx_validate(struct mtx *m)
* we can re-enable the kernacc() checks.
*/
#ifndef __alpha__
- if (!kernacc((caddr_t)m, sizeof(m), VM_PROT_READ | VM_PROT_WRITE))
- panic("Can't read and write to mutex %p", m);
+ if (!cold)
+ if (!kernacc((caddr_t)m, sizeof(m),
+ VM_PROT_READ | VM_PROT_WRITE))
+ panic("Can't read and write to mutex %p", m);
#endif
}
#endif
OpenPOWER on IntegriCloud