git: 17ccda003922 - main - linux(4): Change recvmmsg_time64 syscall definition to match Linux actual one.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 04 May 2022 10:08:21 UTC
The branch main has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=17ccda0039229d884b9f624815775893889d161e commit 17ccda0039229d884b9f624815775893889d161e Author: Dmitry Chagin <dchagin@FreeBSD.org> AuthorDate: 2022-05-04 10:06:52 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2022-05-04 10:06:52 +0000 linux(4): Change recvmmsg_time64 syscall definition to match Linux actual one. MFC after: 2 weeks --- sys/amd64/linux32/syscalls.master | 8 +++++++- sys/i386/linux/syscalls.master | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index 5c32ba0360fc..0a9f408ed92e 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -2434,7 +2434,13 @@ int linux_io_pgetevents_time64(void); } 417 AUE_NULL STD { - int linux_recvmmsg_time64(void); + int linux_recvmmsg_time64( + l_int s, + struct l_mmsghdr *msg, + l_uint vlen, + l_uint flags, + struct l_timespec64 *timeout + ); } 418 AUE_NULL STD { int linux_mq_timedsend_time64(void); diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master index 471033aa046f..b082fa6c423c 100644 --- a/sys/i386/linux/syscalls.master +++ b/sys/i386/linux/syscalls.master @@ -2452,7 +2452,13 @@ int linux_io_pgetevents_time64(void); } 417 AUE_NULL STD { - int linux_recvmmsg_time64(void); + int linux_recvmmsg_time64( + l_int s, + struct l_mmsghdr *msg, + l_uint vlen, + l_uint flags, + struct l_timespec64 *timeout + ); } 418 AUE_NULL STD { int linux_mq_timedsend_time64(void);