git: 465d9ab9cd79 - stable/13 - Cut out leftover of the sv_transtrap hook from the struct sysentvec on mips. The hook is deleted by commit eca368ec from the main, but since mips is retired from main, it is left after merge.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Jun 2022 21:36:44 UTC
The branch stable/13 has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=465d9ab9cd793434ae2a8bb2a4a8b6eec3309ddf commit 465d9ab9cd793434ae2a8bb2a4a8b6eec3309ddf Author: Dmitry Chagin <dchagin@FreeBSD.org> AuthorDate: 2022-06-17 21:35:52 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2022-06-17 21:35:52 +0000 Cut out leftover of the sv_transtrap hook from the struct sysentvec on mips. The hook is deleted by commit eca368ec from the main, but since mips is retired from main, it is left after merge. This is a direct commit to the stable/13. --- sys/mips/mips/elf_machdep.c | 1 - sys/mips/mips/freebsd32_machdep.c | 1 - 2 files changed, 2 deletions(-) diff --git a/sys/mips/mips/elf_machdep.c b/sys/mips/mips/elf_machdep.c index dc8d8390fbf8..56d587a1c0fd 100644 --- a/sys/mips/mips/elf_machdep.c +++ b/sys/mips/mips/elf_machdep.c @@ -55,7 +55,6 @@ __FBSDID("$FreeBSD$"); static struct sysentvec elf_freebsd_sysvec = { .sv_size = SYS_MAXSYSCALL, .sv_table = sysent, - .sv_transtrap = NULL, .sv_fixup = __elfN(freebsd_fixup), .sv_sendsig = sendsig, .sv_sigcode = sigcode, diff --git a/sys/mips/mips/freebsd32_machdep.c b/sys/mips/mips/freebsd32_machdep.c index 87ce9aa48650..52dd3b87303b 100644 --- a/sys/mips/mips/freebsd32_machdep.c +++ b/sys/mips/mips/freebsd32_machdep.c @@ -78,7 +78,6 @@ extern const char *freebsd32_syscallnames[]; struct sysentvec elf32_freebsd_sysvec = { .sv_size = SYS_MAXSYSCALL, .sv_table = freebsd32_sysent, - .sv_transtrap = NULL, .sv_fixup = __elfN(freebsd_fixup), .sv_sendsig = freebsd32_sendsig, .sv_sigcode = sigcode32,