From: Borislav Petkov Date: Mon, 25 Feb 2019 19:08:27 +0000 (+0100) Subject: x86/uaccess: Remove unused __addr_ok() macro X-Git-Tag: v5.1-rc1~124^2 X-Git-Url: https://repo.jachan.dev/linux.git/commitdiff_plain/2e7614c0736de93c8796bb2d58debb8871a59db8 x86/uaccess: Remove unused __addr_ok() macro This was caught while staring at the whole {set,get}_fs() machinery. It's last user, the 32-bit version of strnlen_user() went away with 5723aa993d83 ("x86: use the new generic strnlen_user() function") so drop it. No functional changes. Signed-off-by: Borislav Petkov Acked-by: Linus Torvalds Cc: Andy Lutomirski Cc: Jann Horn Cc: Peter Zijlstra Cc: the arch/x86 maintainers Cc: "Tobin C. Harding" Link: https://lkml.kernel.org/r/20190225191109.7671-1-bp@alien8.de --- diff --git a/arch/x86/include/asm/uaccess.h b/arch/x86/include/asm/uaccess.h index a77445d1b034..ec8d36f04786 100644 --- a/arch/x86/include/asm/uaccess.h +++ b/arch/x86/include/asm/uaccess.h @@ -35,10 +35,7 @@ static inline void set_fs(mm_segment_t fs) } #define segment_eq(a, b) ((a).seg == (b).seg) - #define user_addr_max() (current->thread.addr_limit.seg) -#define __addr_ok(addr) \ - ((unsigned long __force)(addr) < user_addr_max()) /* * Test whether a block of memory is a valid user space address.