Home
last modified time | relevance | path

Searched refs:bpf_stream_printk (Results 1 – 8 of 8) sorted by relevance

/linux/tools/testing/selftests/bpf/libarena/include/libarena/
H A Dcommon.h18 #define arena_stdout(fmt, ...) bpf_stream_printk(1, (fmt), ##__VA_ARGS__)
19 #define arena_stderr(fmt, ...) bpf_stream_printk(2, (fmt), ##__VA_ARGS__)
/linux/tools/testing/selftests/bpf/progs/
H A Dstream.c56 if (bpf_stream_printk(BPF_STDOUT, _STR) == -ENOSPC && size == 99954) in stream_exhaust()
118 bpf_stream_printk(BPF_STDOUT, "foo"); in stream_syscall()
424 ret = bpf_stream_printk(BPF_STDOUT, _STR); in __stdout()
H A Dtest_xdp_meta.c36 bpf_stream_printk(BPF_STDERR, in check_metadata()
/linux/kernel/bpf/
H A Drqspinlock.c683 bpf_stream_printk(ss, "ERROR: %s for bpf_res_spin_lock%s\n", str, irqsave ? "_irqsave" : ""); in bpf_prog_report_rqspinlock_violation()
684 bpf_stream_printk(ss, "Attempted lock = 0x%px\n", lock); in bpf_prog_report_rqspinlock_violation()
685 bpf_stream_printk(ss, "Total held locks = %d\n", rqh->cnt); in bpf_prog_report_rqspinlock_violation()
687 bpf_stream_printk(ss, "Held lock[%2d] = 0x%px\n", i, rqh->locks[i]); in bpf_prog_report_rqspinlock_violation()
H A Darena.c1150 bpf_stream_printk(ss, "ERROR: Arena %s access at unmapped address 0x%lx\n", in __bpf_prog_report_arena_violation()
H A Dcore.c3399 bpf_stream_printk(ss, "ERROR: Timeout detected for may_goto instruction\n"); in bpf_prog_report_may_goto_violation()
/linux/tools/lib/bpf/
H A Dbpf_helpers.h318 #define bpf_stream_printk(stream_id, fmt, args...) \ macro
/linux/include/linux/
H A Dbpf.h4113 #define bpf_stream_printk(ss, ...) bpf_stream_stage_printk(&ss, __VA_ARGS__) macro