git: 133ada6bff53 - stable/14 - linux(4): Drop the outdated comment, nosys is fine since 39024a89
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 18 Oct 2023 05:52:56 UTC
The branch stable/14 has been updated by dchagin:
URL: https://cgit.FreeBSD.org/src/commit/?id=133ada6bff538483f308296ee944aa5ee24954ee
commit 133ada6bff538483f308296ee944aa5ee24954ee
Author: Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2023-10-10 09:20:51 +0000
Commit: Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2023-10-18 05:52:33 +0000
linux(4): Drop the outdated comment, nosys is fine since 39024a89
MFC after: 1 week
(cherry picked from commit 03f5bd1e462576838e79145379ce314e2e03e4b3)
---
sys/arm64/linux/linux_sysvec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/arm64/linux/linux_sysvec.c b/sys/arm64/linux/linux_sysvec.c
index 19dd5866ba50..a850d5e34bc0 100644
--- a/sys/arm64/linux/linux_sysvec.c
+++ b/sys/arm64/linux/linux_sysvec.c
@@ -121,7 +121,7 @@ linux_fetch_syscall_args(struct thread *td)
sa->code = td->td_frame->tf_x[8];
sa->original_code = sa->code;
- /* LINUXTODO: generic syscall? */
+
if (sa->code >= p->p_sysent->sv_size)
sa->callp = &nosys_sysent;
else