summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorBret Lambert <blambert@cvs.openbsd.org>2009-08-13 21:22:30 +0000
committerBret Lambert <blambert@cvs.openbsd.org>2009-08-13 21:22:30 +0000
commitb83e46553695c561da1d069078e51075a395a217 (patch)
tree055d930216eded886444ad1556d9d584ee21425f /sys/kern
parentfe6f88cb9b76466c202050fac0fe412f7c883bd5 (diff)
rwlock assertion functions, currently unused
ok art@
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_rwlock.c33
1 files changed, 32 insertions, 1 deletions
diff --git a/sys/kern/kern_rwlock.c b/sys/kern/kern_rwlock.c
index 0df33c9008b..9802a8323b5 100644
--- a/sys/kern/kern_rwlock.c
+++ b/sys/kern/kern_rwlock.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_rwlock.c,v 1.13 2007/05/13 04:52:32 tedu Exp $ */
+/* $OpenBSD: kern_rwlock.c,v 1.14 2009/08/13 21:22:29 blambert Exp $ */
/*
* Copyright (c) 2002, 2003 Artur Grabowski <art@openbsd.org>
@@ -197,6 +197,13 @@ retry:
rw_enter_diag(rwl, flags);
+ if (((struct proc *)RW_PROC(rwl))->p_stat == SONPROC) {
+printf("%p\n", (struct proc *)RW_PROC(rwl));
+ while(((struct proc *)RW_PROC(rwl))->p_stat == SONPROC)
+ SPINLOCK_SPIN_HOOK;
+ goto retry;
+ }
+
if (flags & RW_NOSLEEP)
return (EBUSY);
@@ -248,3 +255,27 @@ rw_exit(struct rwlock *rwl)
if (owner & RWLOCK_WAIT)
wakeup(rwl);
}
+
+void
+rw_assert_wrlock(struct rwlock *rwl)
+{
+ if (!(rwl->rwl_owner & RWLOCK_WRLOCK))
+ panic("%s: lock not held", rwl->rwl_name);
+
+ if (RWLOCK_OWNER(rwl) != (struct proc *)((long)curproc & ~RWLOCK_MASK))
+ panic("%s: lock not held by this process", rwl->rwl_name);
+}
+
+void
+rw_assert_rdlock(struct rwlock *rwl)
+{
+ if (!RWLOCK_OWNER(rwl) || (rwl->rwl_owner & RWLOCK_WRLOCK))
+ panic("%s: lock not shared", rwl->rwl_name);
+}
+
+void
+rw_assert_unlocked(struct rwlock *rwl)
+{
+ if (rwl->rwl_owner != 0L)
+ panic("%s: lock held", rwl->rwl_name);
+}