Symbol: softirq_count
arch/sparc/include/asm/thread_info_32.h
35
int softirq_count;
arch/sparc/kernel/traps_32.c
377
TI_SOFTIRQ != offsetof(struct thread_info, softirq_count) ||
arch/x86/kernel/fpu/core.c
110
return !softirq_count();
include/linux/preempt.h
112
# define irq_count() ((preempt_count() & (NMI_MASK | HARDIRQ_MASK)) | softirq_count())
include/linux/preempt.h
128
#define in_serving_softirq() (softirq_count() & SOFTIRQ_OFFSET)
include/linux/preempt.h
140
#define in_softirq() (softirq_count())
include/net/cls_cgroup.h
66
if (softirq_count()) {
include/trace/events/osnoise.h
20
int softirq_count; /* # softirqs during this sample */
include/trace/events/osnoise.h
51
__field( int, softirq_count )
include/trace/events/osnoise.h
62
__entry->softirq_count = s->softirq_count;
include/trace/events/osnoise.h
75
__entry->softirq_count,
kernel/locking/lockdep.c
2572
curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
kernel/locking/lockdep.c
4027
lockdep_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
kernel/locking/lockdep.c
4588
DEBUG_LOCKS_WARN_ON(!softirq_count());
kernel/locking/lockdep.c
5716
if (softirq_count()) {
kernel/rcu/rcutorture.c
2059
!softirq_count(), ROEC_ARGS);
kernel/rcu/rcutorture.c
2073
softirq_count(), ROEC_ARGS);
kernel/rcu/rcutorture.c
2094
if (IS_ENABLED(CONFIG_PREEMPT_RT) && softirq_count())
kernel/rcu/rcutorture.c
475
if ((preempt_count() & HARDIRQ_MASK) || softirq_count())
kernel/rcu/tree_plugin.h
32
((!(IS_ENABLED(CONFIG_PREEMPT_COUNT) && preemptible()) || softirq_count()) &&
kernel/softirq.c
225
if (softirq_count() == cnt)
kernel/softirq.c
389
if (softirq_count() == (cnt & SOFTIRQ_MASK))
kernel/softirq.c
410
if (softirq_count() == (cnt & SOFTIRQ_MASK))
kernel/softirq.c
437
if (softirq_count() == SOFTIRQ_DISABLE_OFFSET)
kernel/trace/trace.c
2194
if (softirq_count() >> (SOFTIRQ_SHIFT + 1))
kernel/trace/trace_entries.h
431
__field( unsigned int, softirq_count )
kernel/trace/trace_entries.h
441
__entry->softirq_count,
kernel/trace/trace_osnoise.c
1318
s->softirq_count = osn_var->softirq.count;
kernel/trace/trace_osnoise.c
1334
s->softirq_count = osn_var->softirq.count - s->softirq_count;
kernel/trace/trace_osnoise.c
490
entry->softirq_count = sample->softirq_count;
kernel/trace/trace_output.c
1600
trace_seq_printf(s, " %6u", field->softirq_count);
kernel/trace/trace_output.c
1624
field->softirq_count,
lib/locking-selftest.c
1485
if (softirq_count())
net/core/dev.c
5708
lockdep_assert_once(hardirq_count() | softirq_count());
net/core/dev.c
5738
bool need_bh_off = !(hardirq_count() | softirq_count());
net/mac80211/rx.c
5444
WARN_ON_ONCE(softirq_count() == 0);
net/mac80211/tx.c
3830
WARN_ON_ONCE(softirq_count() == 0);
net/mac802154/rx.c
404
WARN_ON_ONCE(softirq_count() == 0);
tools/tracing/rtla/src/osnoise_top.c
117
update_sum(&cpu_data->softirq_count, &val);
tools/tracing/rtla/src/osnoise_top.c
223
trace_seq_printf(s, "%12llu ", cpu_data->softirq_count);
tools/tracing/rtla/src/osnoise_top.c
26
unsigned long long softirq_count;