x86: make TASK_SIZE_MAX usable from assembly code
authorChristoph Hellwig <hch@lst.de>
Thu, 3 Sep 2020 14:22:39 +0000 (16:22 +0200)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 9 Sep 2020 02:21:35 +0000 (22:21 -0400)
commita1d826d475aafe63775b910e86ccd1bcf1e5a6e1
tree4be9e9eae9c63c9079e56d5085bc300457a341a8
parent999c83e8ffd90caa00ee6caf054e037cf8a27d0e
x86: make TASK_SIZE_MAX usable from assembly code

For 64-bit the only thing missing was a strategic _AC, and for 32-bit we
need to use __PAGE_OFFSET instead of PAGE_OFFSET in the TASK_SIZE
definition to escape the explicit unsigned long cast.  This just works
because __PAGE_OFFSET is defined using _AC itself and thus never needs
the cast anyway.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
arch/x86/include/asm/page_32_types.h
arch/x86/include/asm/page_64_types.h