Symbol: si_perf_type
arch/arm/kernel/signal.c
712
static_assert(offsetof(siginfo_t, si_perf_type) == 0x14);
arch/arm64/kernel/signal.c
1754
static_assert(offsetof(siginfo_t, si_perf_type) == 0x20);
arch/arm64/kernel/signal32.c
492
static_assert(offsetof(compat_siginfo_t, si_perf_type) == 0x14);
arch/m68k/kernel/signal.c
629
BUILD_BUG_ON(offsetof(siginfo_t, si_perf_type) != 0x14);
arch/sparc/kernel/signal32.c
783
static_assert(offsetof(compat_siginfo_t, si_perf_type) == 0x14);
arch/sparc/kernel/signal_64.c
592
static_assert(offsetof(siginfo_t, si_perf_type) == 0x20);
arch/x86/kernel/signal_32.c
521
static_assert(offsetof(siginfo32_t, si_perf_type) == 0x14);
arch/x86/kernel/signal_64.c
512
static_assert(offsetof(siginfo_t, si_perf_type) == 0x20);
kernel/signal.c
1794
info.si_perf_type = type;
kernel/signal.c
3615
to->si_perf_type = from->si_perf_type;
kernel/signal.c
3693
to->si_perf_type = from->si_perf_type;
kernel/signal.c
4949
CHECK_OFFSET(si_perf_type);
tools/perf/tests/sigtrap.c
210
TEST_ASSERT_EQUAL("unexpected si_perf_type", ctx.first_siginfo.si_perf_type,
tools/testing/selftests/perf_events/sigtrap_threads.c
174
EXPECT_EQ(ctx.first_siginfo.si_perf_type, PERF_TYPE_BREAKPOINT);
tools/testing/selftests/perf_events/sigtrap_threads.c
193
EXPECT_EQ(ctx.first_siginfo.si_perf_type, PERF_TYPE_BREAKPOINT);
tools/testing/selftests/perf_events/sigtrap_threads.c
213
EXPECT_EQ(ctx.first_siginfo.si_perf_type, PERF_TYPE_BREAKPOINT);
tools/testing/selftests/perf_events/sigtrap_threads.c
236
EXPECT_EQ(ctx.first_siginfo.si_perf_type, PERF_TYPE_BREAKPOINT);