git: 27ff202df84b - stable/13 - linux(4): Change timer_settime64 syscall definition to match Linux actual one.

From: Dmitry Chagin <dchagin_at_FreeBSD.org>
Date: Fri, 17 Jun 2022 19:39:38 UTC
The branch stable/13 has been updated by dchagin:

URL: https://cgit.FreeBSD.org/src/commit/?id=27ff202df84bdeb1715d059a17420e6ef1ef0b0d

commit 27ff202df84bdeb1715d059a17420e6ef1ef0b0d
Author:     Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2022-05-04 10:06:48 +0000
Commit:     Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2022-06-17 19:34:21 +0000

    linux(4): Change timer_settime64 syscall definition to match Linux actual one.
    
    MFC after:              2 weeks
    
    (cherry picked from commit 1508b1b6a022592e214a2ed2ed52e6100e84de35)
---
 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 965e1e90ee4e..da82270c8ba2 100644
--- a/sys/amd64/linux32/syscalls.master
+++ b/sys/amd64/linux32/syscalls.master
@@ -2381,7 +2381,12 @@
 		);
 	}
 409	AUE_NULL	STD {
-		int linux_timer_settime64(void);
+		int linux_timer_settime64(
+		    l_timer_t timerid,
+		    l_int flags,
+		    const struct l_itimerspec64 *new,
+		    struct l_itimerspec64 *old
+		);
 	}
 410	AUE_NULL	STD {
 		int linux_timerfd_gettime64(void);
diff --git a/sys/i386/linux/syscalls.master b/sys/i386/linux/syscalls.master
index 94c9ebfb2ae8..4c1c9f1b895a 100644
--- a/sys/i386/linux/syscalls.master
+++ b/sys/i386/linux/syscalls.master
@@ -2399,7 +2399,12 @@
 		);
 	}
 409	AUE_NULL	STD {
-		int linux_timer_settime64(void);
+		int linux_timer_settime64(
+		    l_timer_t timerid,
+		    l_int flags,
+		    const struct l_itimerspec64 *new,
+		    struct l_itimerspec64 *old
+		);
 	}
 410	AUE_NULL	STD {
 		int linux_timerfd_gettime64(void);