From ff67b59726a8cd3549b069dfa78de2f538d3b8e3 Mon Sep 17 00:00:00 2001 From: Tony Luck Date: Tue, 30 Aug 2005 14:59:24 -0700 Subject: [PATCH] [IA64] Low byte of current->personality is not a bitmask. Peter Staubach pointed out that it is not correct to check current->personality & PER_LINUX32 (this will have false hits on several other personality values). Signed-off-by: Tony Luck --- include/asm-ia64/fcntl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/asm-ia64/fcntl.h b/include/asm-ia64/fcntl.h index c9f8d83..cee16ea 100644 --- a/include/asm-ia64/fcntl.h +++ b/include/asm-ia64/fcntl.h @@ -81,6 +81,7 @@ struct flock { #define F_LINUX_SPECIFIC_BASE 1024 -#define force_o_largefile() ( ! (current->personality & PER_LINUX32) ) +#define force_o_largefile() \ + (personality(current->personality) != PER_LINUX32) #endif /* _ASM_IA64_FCNTL_H */ -- 2.7.4