arch/x86_64/mm/init.c: In function `in_gate_area_no_task': arch/x86_64/mm/init.c:656: warning: suggest parentheses around && within || In file included from include/asm/numa.h:5, from arch/x86_64/kernel/setup.c:60: Signed-off-by: Andrew Morton --- 25-akpm/arch/x86_64/mm/init.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/x86_64/mm/init.c~bk-kbuild-in_gate_area_no_task-warning-fix arch/x86_64/mm/init.c --- 25/arch/x86_64/mm/init.c~bk-kbuild-in_gate_area_no_task-warning-fix 2004-12-29 03:37:41.000000000 -0800 +++ 25-akpm/arch/x86_64/mm/init.c 2004-12-29 03:37:56.000000000 -0800 @@ -652,6 +652,6 @@ int in_gate_area(struct task_struct *tas */ int in_gate_area_no_task(unsigned long addr) { - return ((addr >= VSYSCALL_START) && (addr < VSYSCALL_END) || - (addr >= VSYSCALL32_BASE) && (addr < VSYSCALL32_END)); + return (((addr >= VSYSCALL_START) && (addr < VSYSCALL_END)) || + ((addr >= VSYSCALL32_BASE) && (addr < VSYSCALL32_END))); } _