Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

parisc: is_compat_task() shall return false for COMPAT=n

Signed-off-by: Helge Deller <deller@gmx.de>

+1 -1
+1 -1
arch/parisc/include/asm/compat.h
··· 130 130 131 131 static inline int __is_compat_task(struct task_struct *t) 132 132 { 133 - return test_tsk_thread_flag(t, TIF_32BIT); 133 + return IS_ENABLED(CONFIG_COMPAT) && test_tsk_thread_flag(t, TIF_32BIT); 134 134 } 135 135 136 136 static inline int is_compat_task(void)