From: Uwe Kleine-König (The Capable Hub) Date: Tue, 30 Jun 2026 09:24:34 +0000 (+0200) Subject: parisc: #include for unlikely() in X-Git-Tag: v7.2-rc2~18^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a7e8cae4c60e693fffa493c7e3088cd03ee66232;p=thirdparty%2Fkernel%2Flinux.git parisc: #include for unlikely() in Currently isn't included at all (not even transitively) in . arch/parisc/kernel/asm-offsets.c just happens to include the following chain of includes before : -> -> -> -> -> -> . That chain will be broken, because in one of the next commits is changed to only include instead of . So to ensure arch/parisc/kernel/asm-offsets.c knows about unlikely() even after that change, #include explicitly. Link: https://patch.msgid.link/0574a2b73363c3cbf21c55c27455c3cecfb33583.1782808461.git.u.kleine-koenig@baylibre.com Signed-off-by: Uwe Kleine-König (The Capable Hub) --- diff --git a/arch/parisc/include/asm/ptrace.h b/arch/parisc/include/asm/ptrace.h index eea3f3df08232..5e1f52b3922dc 100644 --- a/arch/parisc/include/asm/ptrace.h +++ b/arch/parisc/include/asm/ptrace.h @@ -7,6 +7,7 @@ #include #include +#include #define task_regs(task) ((struct pt_regs *) ((char *)(task) + TASK_REGS))