git: 56205425a9b3 - stable/13 - linux: make linux64.ko loadable again on aarch64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 17 Feb 2022 12:09:17 UTC
The branch stable/13 has been updated by trasz: URL: https://cgit.FreeBSD.org/src/commit/?id=56205425a9b3f0c60de6d137b894400aee304d35 commit 56205425a9b3f0c60de6d137b894400aee304d35 Author: Edward Tomasz Napierala <trasz@FreeBSD.org> AuthorDate: 2021-05-28 13:53:31 +0000 Commit: Edward Tomasz Napierala <trasz@FreeBSD.org> CommitDate: 2022-02-13 21:31:07 +0000 linux: make linux64.ko loadable again on aarch64 This should probably get deduplicated; this is a quick fix just to unbreak things. Fixes: 6d926e850d2 Sponsored By: EPSRC (cherry picked from commit 023ee5392c77fbb803ea7552d7a25f7d231e56f8) --- sys/arm64/linux/linux_dummy_machdep.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sys/arm64/linux/linux_dummy_machdep.c b/sys/arm64/linux/linux_dummy_machdep.c index b006809740d7..47b6ac093cb1 100644 --- a/sys/arm64/linux/linux_dummy_machdep.c +++ b/sys/arm64/linux/linux_dummy_machdep.c @@ -61,3 +61,11 @@ DUMMY(mq_timedreceive); DUMMY(mq_notify); DUMMY(mq_getsetattr); DUMMY(semtimedop); +DUMMY(statx); +DUMMY(io_pgetevents); +DUMMY(kexec_file_load); +DUMMY(rseq); +DUMMY(pidfd_send_signal); +DUMMY(io_uring_setup); +DUMMY(io_uring_enter); +DUMMY(io_uring_register);