WARNING: line length of 91 exceeds 80 columns #23: FILE: kernel/bpf/rqspinlock.c:669: +static void bpf_prog_report_rqspinlock_violation(const char *str, void *lock, bool irqsave) WARNING: line length of 109 exceeds 80 columns #33: FILE: kernel/bpf/rqspinlock.c:679: + bpf_stream_printk(ss, "ERROR: %s for bpf_res_spin_lock%s\n", str, irqsave ? "_irqsave" : ""); WARNING: Using vsprintf specifier '%px' potentially exposes the kernel memory layout, if you don't really need the address please consider using '%p'. #34: FILE: kernel/bpf/rqspinlock.c:680: + bpf_stream_printk(ss, "Attempted lock = 0x%px\n", lock); WARNING: Using vsprintf specifier '%px' potentially exposes the kernel memory layout, if you don't really need the address please consider using '%p'. #36: FILE: kernel/bpf/rqspinlock.c:682: + for (int i = 0; i < min(RES_NR_HELD, rqh->cnt); i++) + bpf_stream_printk(ss, "Held lock[%2d] = 0x%px\n", i, rqh->locks[i]); WARNING: line length of 92 exceeds 80 columns #37: FILE: kernel/bpf/rqspinlock.c:683: + bpf_stream_printk(ss, "Held lock[%2d] = 0x%px\n", i, rqh->locks[i]); WARNING: Using vsprintf specifier '%px' potentially exposes the kernel memory layout, if you don't really need the address please consider using '%p'. #37: FILE: kernel/bpf/rqspinlock.c:683: + bpf_stream_printk(ss, "Held lock[%2d] = 0x%px\n", i, rqh->locks[i]); WARNING: line length of 104 exceeds 80 columns #42: FILE: kernel/bpf/rqspinlock.c:688: +#define REPORT_STR(ret) ({ (ret) == -ETIMEDOUT ? "Timeout detected" : "AA or ABBA deadlock detected"; }) WARNING: line length of 83 exceeds 80 columns #51: FILE: kernel/bpf/rqspinlock.c:700: + bpf_prog_report_rqspinlock_violation(REPORT_STR(ret), lock, false); WARNING: line length of 82 exceeds 80 columns #59: FILE: kernel/bpf/rqspinlock.c:723: + bpf_prog_report_rqspinlock_violation(REPORT_STR(ret), lock, true); total: 0 errors, 9 warnings, 0 checks, 41 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. Commit 13d2a770a1e2 ("bpf: Report rqspinlock deadlocks/timeout to BPF stderr") has style problems, please review. NOTE: Ignored message types: ALLOC_SIZEOF_STRUCT BAD_REPORTED_BY_LINK CAMELCASE COMMIT_LOG_LONG_LINE GIT_COMMIT_ID MACRO_ARG_REUSE NO_AUTHOR_SIGN_OFF NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. total: 0 errors, 9 warnings, 0 checks, 41 lines checked