aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_lock.c
diff options
context:
space:
mode:
authorMateusz Guzik <mjg@FreeBSD.org>2021-05-23 15:25:42 +0000
committerMateusz Guzik <mjg@FreeBSD.org>2021-06-02 15:00:23 +0000
commit4ee784e4d8db2da6b53fc5792fc6ee565d6a7cee (patch)
treee7b6fe37a84ac004d31339bcd66f90cf2f74a108 /sys/kern/subr_lock.c
parentf03b2f7c8b814ad5c71c519316644541dd5ceae2 (diff)
downloadsrc-4ee784e4d8db2da6b53fc5792fc6ee565d6a7cee.tar.gz
src-4ee784e4d8db2da6b53fc5792fc6ee565d6a7cee.zip
lockprof: pass lock type as an argument instead of reading the spin flag
(cherry picked from commit 6a467cc5e1f673a700f6229e63e9a98ed65264c8)
Diffstat (limited to 'sys/kern/subr_lock.c')
-rw-r--r--sys/kern/subr_lock.c30
1 files changed, 23 insertions, 7 deletions
diff --git a/sys/kern/subr_lock.c b/sys/kern/subr_lock.c
index 6d91118ae0f3..7c3bfec3ea40 100644
--- a/sys/kern/subr_lock.c
+++ b/sys/kern/subr_lock.c
@@ -57,6 +57,12 @@ __FBSDID("$FreeBSD$");
#include <machine/cpufunc.h>
+/*
+ * Uncomment to validate that spin argument to acquire/release routines matches
+ * the flag in the lock
+ */
+//#define LOCK_PROFILING_DEBUG_SPIN
+
SDT_PROVIDER_DEFINE(lock);
SDT_PROBE_DEFINE1(lock, , , starvation, "u_int");
@@ -593,11 +599,17 @@ lock_profile_object_lookup(struct lock_object *lo, int spin, const char *file,
}
void
-lock_profile_obtain_lock_success(struct lock_object *lo, int contested,
- uint64_t waittime, const char *file, int line)
+lock_profile_obtain_lock_success(struct lock_object *lo, bool spin,
+ int contested, uint64_t waittime, const char *file, int line)
{
struct lock_profile_object *l;
- int spin;
+
+#ifdef LOCK_PROFILING_DEBUG_SPIN
+ bool is_spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK);
+ if ((spin && !is_spin) || (!spin && is_spin))
+ printf("%s: lock %s spin mismatch (arg %d, flag %d)\n", __func__,
+ lo->lo_name, spin, is_spin);
+#endif
if (SCHEDULER_STOPPED())
return;
@@ -607,7 +619,6 @@ lock_profile_obtain_lock_success(struct lock_object *lo, int contested,
return;
if (lock_contested_only && !contested)
return;
- spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK) ? 1 : 0;
if (spin && lock_prof_skipspin == 1)
return;
critical_enter();
@@ -660,20 +671,25 @@ lock_profile_thread_exit(struct thread *td)
}
void
-lock_profile_release_lock(struct lock_object *lo)
+lock_profile_release_lock(struct lock_object *lo, bool spin)
{
struct lock_profile_object *l;
struct lock_prof_type *type;
struct lock_prof *lp;
uint64_t curtime, holdtime;
struct lpohead *head;
- int spin;
+
+#ifdef LOCK_PROFILING_DEBUG_SPIN
+ bool is_spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK);
+ if ((spin && !is_spin) || (!spin && is_spin))
+ printf("%s: lock %s spin mismatch (arg %d, flag %d)\n", __func__,
+ lo->lo_name, spin, is_spin);
+#endif
if (SCHEDULER_STOPPED())
return;
if (lo->lo_flags & LO_NOPROFILE)
return;
- spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK) ? 1 : 0;
head = &curthread->td_lprof[spin];
if (LIST_FIRST(head) == NULL)
return;