Date: Fri, 17 Jun 2022 19:39:42 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: 82f7b817cd95 - stable/13 - linux(4): Change timerfd_settime64 syscall definition to match Linux actual one. Message-ID: <202206171939.25HJdgpo016364@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=82f7b817cd953ac8a48a1b8158f49311fa96b273 commit 82f7b817cd953ac8a48a1b8158f49311fa96b273 Author: Dmitry Chagin <dchagin@FreeBSD.org> AuthorDate: 2022-05-04 10:06:50 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2022-06-17 19:34:26 +0000 linux(4): Change timerfd_settime64 syscall definition to match Linux actual one. MFC after: 2 weeks (cherry picked from commit 8545bcff313f39665fbb26dbc2a727fd481018b2) --- sys/amd64/linux32/syscalls.master | 7 ++++++- sys/i386/linux/syscalls.master | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index da82270c8ba2..ad6b61350a26 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -2392,7 +2392,12 @@ int linux_timerfd_gettime64(void); } 411 AUE_NULL STD { - int linux_timerfd_settime64(void); + int linux_timerfd_settime64( + l_int fd, + l_int flags, + const struct l_itimerspec64 *new_value, + struct l_itimerspec64 *old_value + ); } 412 AUE_NULL STD { int linux_utimensat_time64( diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master index 4c1c9f1b895a..f37d40ef383c 100644 --- a/sys/i386/linux/syscalls.master +++ b/sys/i386/linux/syscalls.master @@ -2410,7 +2410,12 @@ int linux_timerfd_gettime64(void); } 411 AUE_NULL STD { - int linux_timerfd_settime64(void); + int linux_timerfd_settime64( + l_int fd, + l_int flags, + const struct l_itimerspec64 *new_value, + struct l_itimerspec64 *old_value + ); } 412 AUE_NULL STD { int linux_utimensat_time64(
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202206171939.25HJdgpo016364>