diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2022-09-27 00:15:32 +0200 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2022-09-27 16:11:02 +0200 |
commit | 987f20a9dcce3989e48d87cff3952c095c994445 (patch) | |
tree | 144497d441fe71d3996eb073bd3bd52bfc9d7224 /fs/exec.c | |
parent | Revert "fs/exec: allow to unshare a time namespace on vfork+exec" (diff) | |
download | linux-987f20a9dcce3989e48d87cff3952c095c994445.tar.xz linux-987f20a9dcce3989e48d87cff3952c095c994445.zip |
a.out: Remove the a.out implementation
In commit 19e8b701e258 ("a.out: Stop building a.out/osf1 support on
alpha and m68k") the last users of a.out were disabled.
As nothing has turned up to cause this change to be reverted, let's
remove the code implementing a.out support as well.
There may be userspace users of the uapi bits left so the uapi
headers have been left untouched.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Acked-by: Arnd Bergmann <arnd@arndb.de> # arm defconfigs
Signed-off-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/871qrx3hq3.fsf@email.froward.int.ebiederm.org
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/exec.c b/fs/exec.c index d046dbb9cbd0..69a572fc57db 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -957,8 +957,7 @@ struct file *open_exec(const char *name) } EXPORT_SYMBOL(open_exec); -#if defined(CONFIG_HAVE_AOUT) || defined(CONFIG_BINFMT_FLAT) || \ - defined(CONFIG_BINFMT_ELF_FDPIC) +#if defined(CONFIG_BINFMT_FLAT) || defined(CONFIG_BINFMT_ELF_FDPIC) ssize_t read_code(struct file *file, unsigned long addr, loff_t pos, size_t len) { ssize_t res = vfs_read(file, (void __user *)addr, len, &pos); |