git: 475cb48b7109 - stable/13 - linux(4): Do not specify shared page for aout binaries.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Jun 2022 19:32:09 UTC
The branch stable/13 has been updated by dchagin:
URL: https://cgit.FreeBSD.org/src/commit/?id=475cb48b71097ba8ba179463f417440bf6479824
commit 475cb48b71097ba8ba179463f417440bf6479824
Author: Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2021-06-22 05:38:45 +0000
Commit: Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2022-06-17 19:30:23 +0000
linux(4): Do not specify shared page for aout binaries.
In Linux vDSO is a small shared ELF library, so it is not intended
for aout binaries. This was added on 64-bit Linuxulator import by mistake.
MFC after: 2 weeks
(cherry picked from commit bfe29037983913f27eae9c5a6d31545ed89f4040)
---
sys/i386/linux/linux_sysvec.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c
index e01526d9b8b0..92bf6a7bed24 100644
--- a/sys/i386/linux/linux_sysvec.c
+++ b/sys/i386/linux/linux_sysvec.c
@@ -831,8 +831,6 @@ struct sysentvec linux_sysvec = {
.sv_set_syscall_retval = linux_set_syscall_retval,
.sv_fetch_syscall_args = linux_fetch_syscall_args,
.sv_syscallnames = NULL,
- .sv_shared_page_base = LINUX_SHAREDPAGE,
- .sv_shared_page_len = PAGE_SIZE,
.sv_schedtail = linux_schedtail,
.sv_thread_detach = linux_thread_detach,
.sv_trap = NULL,