Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 17 Jun 2022 19:39:49 GMT
From:      Dmitry Chagin <dchagin@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 2ea4eb7484d4 - stable/13 - linux(4): Change recvmmsg_time64 syscall definition to match Linux actual one.
Message-ID:  <202206171939.25HJdn1K016515@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by dchagin:

URL: https://cgit.FreeBSD.org/src/commit/?id=2ea4eb7484d48374c4dbbf37244edfa93d2679c9

commit 2ea4eb7484d48374c4dbbf37244edfa93d2679c9
Author:     Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2022-05-04 10:06:52 +0000
Commit:     Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2022-06-17 19:34:37 +0000

    linux(4): Change recvmmsg_time64 syscall definition to match Linux actual one.
    
    MFC after:              2 weeks
    
    (cherry picked from commit 17ccda0039229d884b9f624815775893889d161e)
---
 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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202206171939.25HJdn1K016515>