Searched refs:LCB_F_SPIN (Results 1 – 7 of 7) sorted by relevance
/linux-6.6.21/kernel/locking/ |
D | qrwlock.c | 38 trace_contention_begin(lock, LCB_F_SPIN | LCB_F_READ); in queued_read_lock_slowpath() 70 trace_contention_begin(lock, LCB_F_SPIN | LCB_F_WRITE); in queued_write_lock_slowpath()
|
D | qspinlock.c | 405 trace_contention_begin(lock, LCB_F_SPIN); in queued_spin_lock_slowpath()
|
D | mutex.c | 605 trace_contention_begin(lock, LCB_F_MUTEX | LCB_F_SPIN); in __mutex_lock_common() 693 trace_contention_begin(lock, LCB_F_MUTEX | LCB_F_SPIN); in __mutex_lock_common()
|
/linux-6.6.21/include/trace/events/ |
D | lock.h | 12 #define LCB_F_SPIN (1U << 0) macro 113 { LCB_F_SPIN, "SPIN" },
|
/linux-6.6.21/tools/perf/util/ |
D | lock-contention.h | 114 #define LCB_F_SPIN (1U << 0) macro
|
/linux-6.6.21/tools/perf/util/bpf_skel/ |
D | lock_contention.bpf.c | 15 #define LCB_F_SPIN (1U << 0) macro 260 case LCB_F_SPIN: /* spinlock */ in check_lock_type()
|
/linux-6.6.21/tools/perf/ |
D | builtin-lock.c | 1582 { LCB_F_SPIN, "spinlock", "spinlock" }, 1583 { LCB_F_SPIN | LCB_F_READ, "rwlock:R", "rwlock" }, 1584 { LCB_F_SPIN | LCB_F_WRITE, "rwlock:W", "rwlock" }, 1593 { LCB_F_MUTEX | LCB_F_SPIN, "mutex", "mutex" }, 1595 { LCB_F_MUTEX | LCB_F_SPIN, "mutex-spin", "mutex" },
|