diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2020-06-14 05:37:24 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2021-01-06 14:42:47 +0100 |
commit | 056f280f3b63f68073dd8d332bf2a0132deccd82 (patch) | |
tree | bd53e1f7b09c90504243b61157056edf372ae5ff /arch/mips/kernel/binfmt_elfn32.c | |
parent | mips: KVM_GUEST makes no sense for 64bit builds... (diff) | |
download | linux-056f280f3b63f68073dd8d332bf2a0132deccd82.tar.xz linux-056f280f3b63f68073dd8d332bf2a0132deccd82.zip |
mips compat: don't bother with ELF_ET_DYN_BASE
normal mips one is just fine - it's only used after we'd done
SET_PERSONALITY2() and by that point TASK_SIZE will yield the
right value
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/mips/kernel/binfmt_elfn32.c')
-rw-r--r-- | arch/mips/kernel/binfmt_elfn32.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/mips/kernel/binfmt_elfn32.c b/arch/mips/kernel/binfmt_elfn32.c index 4c5544ae8fa4..08bc05fd9882 100644 --- a/arch/mips/kernel/binfmt_elfn32.c +++ b/arch/mips/kernel/binfmt_elfn32.c @@ -34,10 +34,6 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; */ #define elf_check_arch elfn32_check_arch -#define TASK32_SIZE 0x7fff8000UL -#undef ELF_ET_DYN_BASE -#define ELF_ET_DYN_BASE (TASK32_SIZE / 3 * 2) - #include <asm/processor.h> #include <linux/elfcore.h> #include <linux/compat.h> |