sync
authorderaadt <deraadt@openbsd.org>
Fri, 7 Oct 2022 15:00:12 +0000 (15:00 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 7 Oct 2022 15:00:12 +0000 (15:00 +0000)
sys/kern/init_sysent.c
sys/kern/syscalls.c
sys/sys/syscall.h
sys/sys/syscallargs.h

index 90fee83..eb89e2e 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: init_sysent.c,v 1.249 2022/09/03 21:16:51 mbuhl Exp $ */
+/*     $OpenBSD: init_sysent.c,v 1.250 2022/10/07 15:00:12 deraadt Exp $       */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.232 2022/09/03 21:13:48 mbuhl Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.233 2022/10/07 14:59:39 deraadt Exp 
  */
 
 #include <sys/param.h>
@@ -355,8 +355,8 @@ const struct sysent sysent[] = {
            sys_nosys },                        /* 157 = obsolete statfs25 */
        { 0, 0, 0,
            sys_nosys },                        /* 158 = obsolete fstatfs25 */
-       { 0, 0, 0,
-           sys_nosys },                        /* 159 = unimplemented */
+       { 2, s(struct sys_mimmutable_args), 0,
+           sys_mimmutable },                   /* 159 = mimmutable */
        { 0, 0, 0,
            sys_nosys },                        /* 160 = unimplemented */
        { 2, s(struct sys_getfh_args), 0,
index c5e3208..ede2581 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscalls.c,v 1.247 2022/09/03 21:16:51 mbuhl Exp $    */
+/*     $OpenBSD: syscalls.c,v 1.248 2022/10/07 15:00:12 deraadt Exp $  */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.232 2022/09/03 21:13:48 mbuhl Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.233 2022/10/07 14:59:39 deraadt Exp 
  */
 
 const char *const syscallnames[] = {
@@ -183,7 +183,7 @@ const char *const syscallnames[] = {
        "#156 (obsolete ogetdirentries)",               /* 156 = obsolete ogetdirentries */
        "#157 (obsolete statfs25)",             /* 157 = obsolete statfs25 */
        "#158 (obsolete fstatfs25)",            /* 158 = obsolete fstatfs25 */
-       "#159 (unimplemented)",         /* 159 = unimplemented */
+       "mimmutable",                   /* 159 = mimmutable */
        "#160 (unimplemented)",         /* 160 = unimplemented */
        "getfh",                        /* 161 = getfh */
        "#162 (obsolete ogetdomainname)",               /* 162 = obsolete ogetdomainname */
index d5ef0ad..8c93f9e 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscall.h,v 1.246 2022/09/03 21:16:51 mbuhl Exp $     */
+/*     $OpenBSD: syscall.h,v 1.247 2022/10/07 15:00:12 deraadt Exp $   */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.232 2022/09/03 21:13:48 mbuhl Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.233 2022/10/07 14:59:39 deraadt Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: "int" "..." */
                                /* 156 is obsolete ogetdirentries */
                                /* 157 is obsolete statfs25 */
                                /* 158 is obsolete fstatfs25 */
+/* syscall: "mimmutable" ret: "int" args: "void *" "size_t" */
+#define        SYS_mimmutable  159
+
 /* syscall: "getfh" ret: "int" args: "const char *" "fhandle_t *" */
 #define        SYS_getfh       161
 
index 42f32f8..fd53982 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscallargs.h,v 1.249 2022/09/03 21:16:51 mbuhl Exp $ */
+/*     $OpenBSD: syscallargs.h,v 1.250 2022/10/07 15:00:12 deraadt Exp $       */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.232 2022/09/03 21:13:48 mbuhl Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.233 2022/10/07 14:59:39 deraadt Exp 
  */
 
 #ifdef syscallarg
@@ -733,6 +733,11 @@ struct sys_nfssvc_args {
        syscallarg(void *) argp;
 };
 
+struct sys_mimmutable_args {
+       syscallarg(void *) addr;
+       syscallarg(size_t) len;
+};
+
 struct sys_getfh_args {
        syscallarg(const char *) fname;
        syscallarg(fhandle_t *) fhp;
@@ -1345,6 +1350,7 @@ int       sys_ypconnect(struct proc *, void *, register_t *);
 int    sys_nfssvc(struct proc *, void *, register_t *);
 #else
 #endif
+int    sys_mimmutable(struct proc *, void *, register_t *);
 int    sys_getfh(struct proc *, void *, register_t *);
 int    sys___tmpfd(struct proc *, void *, register_t *);
 int    sys_sysarch(struct proc *, void *, register_t *);