diff options
| author | Yonatan Goldschmidt <yon.goldschmidt@gmail.com> | 2025-02-24 01:32:34 +0300 |
|---|---|---|
| committer | Kees Cook <kees@kernel.org> | 2025-02-24 22:30:16 +0300 |
| commit | cc9554e662a3b5a13f514cfcced54ac263c07094 (patch) | |
| tree | c59c69f9138dca52ec9b30d959d74a2654dc9b19 /include | |
| parent | 7e620b56d958a5efcb0158c366581e0637fd9a50 (diff) | |
| download | linux-cc9554e662a3b5a13f514cfcced54ac263c07094.tar.xz | |
binfmt: Remove loader from linux_binprm struct
Commit 987f20a9dcce ("a.out: Remove the a.out implementation") removed
the last in-tree user of the loader field, and as far as I can tell, it
was the only one historically.
Signed-off-by: Yonatan Goldschmidt <yon.goldschmidt@gmail.com>
Link: https://lore.kernel.org/r/20250223223234.13764-1-yon.goldschmidt@gmail.com
Signed-off-by: Kees Cook <kees@kernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/binfmts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/binfmts.h b/include/linux/binfmts.h index 60d674af3080..1625c8529e70 100644 --- a/include/linux/binfmts.h +++ b/include/linux/binfmts.h @@ -64,7 +64,7 @@ struct linux_binprm { const char *fdpath; /* generated filename for execveat */ unsigned interp_flags; int execfd; /* File descriptor of the executable */ - unsigned long loader, exec; + unsigned long exec; struct rlimit rlim_stack; /* Saved RLIMIT_STACK used during exec. */ |
