include/linux/bpf.h
3903
int bpf_stream_stage_printk(struct bpf_stream_stage *ss, const char *fmt, ...);
include/linux/bpf.h
3908
#define bpf_stream_printk(ss, ...) bpf_stream_stage_printk(&ss, __VA_ARGS__)
kernel/bpf/stream.c
376
ctxp->err = bpf_stream_stage_printk(ctxp->ss, "%pS\n %s @ %s:%d\n",
kernel/bpf/stream.c
381
ctxp->err = bpf_stream_stage_printk(ctxp->ss, "%pS\n", (void *)(long)ip);
kernel/bpf/stream.c
390
ret = bpf_stream_stage_printk(ss, "CPU: %d UID: %d PID: %d Comm: %s\n",
kernel/bpf/stream.c
395
ret = bpf_stream_stage_printk(ss, "Call trace:\n");
kernel/bpf/stream.c
401
return bpf_stream_stage_printk(ss, "\n");