svn commit: r304177 - in head/sys: compat/freebsd32 kern sys

Konstantin Belousov kib at FreeBSD.org
Mon Aug 15 19:15:49 UTC 2016


Author: kib
Date: Mon Aug 15 19:15:46 2016
New Revision: 304177
URL: https://svnweb.freebsd.org/changeset/base/304177

Log:
  Regen after r304176, fdatasync(2) addition.

Modified:
  head/sys/compat/freebsd32/freebsd32_proto.h
  head/sys/compat/freebsd32/freebsd32_syscall.h
  head/sys/compat/freebsd32/freebsd32_syscalls.c
  head/sys/compat/freebsd32/freebsd32_sysent.c
  head/sys/compat/freebsd32/freebsd32_systrace_args.c
  head/sys/kern/init_sysent.c
  head/sys/kern/syscalls.c
  head/sys/kern/systrace_args.c
  head/sys/sys/syscall.h
  head/sys/sys/syscall.mk
  head/sys/sys/sysproto.h

Modified: head/sys/compat/freebsd32/freebsd32_proto.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_proto.h	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/compat/freebsd32/freebsd32_proto.h	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 303699 2016-08-03 06:33:04Z ed 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 304176 2016-08-15 19:08:51Z kib 
  */
 
 #ifndef _FREEBSD32_SYSPROTO_H_

Modified: head/sys/compat/freebsd32/freebsd32_syscall.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscall.h	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/compat/freebsd32/freebsd32_syscall.h	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 303699 2016-08-03 06:33:04Z ed 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 304176 2016-08-15 19:08:51Z kib 
  */
 
 #define	FREEBSD32_SYS_syscall	0
@@ -457,4 +457,5 @@
 #define	FREEBSD32_SYS_freebsd32_utimensat	547
 #define	FREEBSD32_SYS_numa_getaffinity	548
 #define	FREEBSD32_SYS_numa_setaffinity	549
-#define	FREEBSD32_SYS_MAXSYSCALL	550
+#define	FREEBSD32_SYS_fdatasync	550
+#define	FREEBSD32_SYS_MAXSYSCALL	551

Modified: head/sys/compat/freebsd32/freebsd32_syscalls.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscalls.c	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/compat/freebsd32/freebsd32_syscalls.c	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 303699 2016-08-03 06:33:04Z ed 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 304176 2016-08-15 19:08:51Z kib 
  */
 
 const char *freebsd32_syscallnames[] = {
@@ -583,4 +583,5 @@ const char *freebsd32_syscallnames[] = {
 	"freebsd32_utimensat",			/* 547 = freebsd32_utimensat */
 	"numa_getaffinity",			/* 548 = numa_getaffinity */
 	"numa_setaffinity",			/* 549 = numa_setaffinity */
+	"fdatasync",			/* 550 = fdatasync */
 };

Modified: head/sys/compat/freebsd32/freebsd32_sysent.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_sysent.c	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/compat/freebsd32/freebsd32_sysent.c	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 303699 2016-08-03 06:33:04Z ed 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 304176 2016-08-15 19:08:51Z kib 
  */
 
 #include "opt_compat.h"
@@ -626,4 +626,5 @@ struct sysent freebsd32_sysent[] = {
 	{ AS(freebsd32_utimensat_args), (sy_call_t *)freebsd32_utimensat, AUE_FUTIMESAT, NULL, 0, 0, 0, SY_THR_STATIC },	/* 547 = freebsd32_utimensat */
 	{ AS(numa_getaffinity_args), (sy_call_t *)sys_numa_getaffinity, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 548 = numa_getaffinity */
 	{ AS(numa_setaffinity_args), (sy_call_t *)sys_numa_setaffinity, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 549 = numa_setaffinity */
+	{ AS(fdatasync_args), (sy_call_t *)sys_fdatasync, AUE_FSYNC, NULL, 0, 0, 0, SY_THR_STATIC },	/* 550 = fdatasync */
 };

Modified: head/sys/compat/freebsd32/freebsd32_systrace_args.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_systrace_args.c	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/compat/freebsd32/freebsd32_systrace_args.c	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3316,6 +3316,13 @@ systrace_args(int sysnum, void *params, 
 		*n_args = 3;
 		break;
 	}
+	/* fdatasync */
+	case 550: {
+		struct fdatasync_args *p = params;
+		iarg[0] = p->fd; /* int */
+		*n_args = 1;
+		break;
+	}
 	default:
 		*n_args = 0;
 		break;
@@ -8902,6 +8909,16 @@ systrace_entry_setargdesc(int sysnum, in
 			break;
 		};
 		break;
+	/* fdatasync */
+	case 550:
+		switch(ndx) {
+		case 0:
+			p = "int";
+			break;
+		default:
+			break;
+		};
+		break;
 	default:
 		break;
 	};
@@ -10783,6 +10800,11 @@ systrace_return_setargdesc(int sysnum, i
 		if (ndx == 0 || ndx == 1)
 			p = "int";
 		break;
+	/* fdatasync */
+	case 550:
+		if (ndx == 0 || ndx == 1)
+			p = "int";
+		break;
 	default:
 		break;
 	};

Modified: head/sys/kern/init_sysent.c
==============================================================================
--- head/sys/kern/init_sysent.c	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/kern/init_sysent.c	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 303729 2016-08-03 18:48:56Z bdrewery 
+ * created from FreeBSD: head/sys/kern/syscalls.master 304176 2016-08-15 19:08:51Z kib 
  */
 
 #include "opt_compat.h"
@@ -596,4 +596,5 @@ struct sysent sysent[] = {
 	{ AS(utimensat_args), (sy_call_t *)sys_utimensat, AUE_FUTIMESAT, NULL, 0, 0, SYF_CAPENABLED, SY_THR_STATIC },	/* 547 = utimensat */
 	{ AS(numa_getaffinity_args), (sy_call_t *)sys_numa_getaffinity, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 548 = numa_getaffinity */
 	{ AS(numa_setaffinity_args), (sy_call_t *)sys_numa_setaffinity, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC },	/* 549 = numa_setaffinity */
+	{ AS(fdatasync_args), (sy_call_t *)sys_fdatasync, AUE_FSYNC, NULL, 0, 0, 0, SY_THR_STATIC },	/* 550 = fdatasync */
 };

Modified: head/sys/kern/syscalls.c
==============================================================================
--- head/sys/kern/syscalls.c	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/kern/syscalls.c	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 303729 2016-08-03 18:48:56Z bdrewery 
+ * created from FreeBSD: head/sys/kern/syscalls.master 304176 2016-08-15 19:08:51Z kib 
  */
 
 const char *syscallnames[] = {
@@ -557,4 +557,5 @@ const char *syscallnames[] = {
 	"utimensat",			/* 547 = utimensat */
 	"numa_getaffinity",			/* 548 = numa_getaffinity */
 	"numa_setaffinity",			/* 549 = numa_setaffinity */
+	"fdatasync",			/* 550 = fdatasync */
 };

Modified: head/sys/kern/systrace_args.c
==============================================================================
--- head/sys/kern/systrace_args.c	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/kern/systrace_args.c	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3326,6 +3326,13 @@ systrace_args(int sysnum, void *params, 
 		*n_args = 3;
 		break;
 	}
+	/* fdatasync */
+	case 550: {
+		struct fdatasync_args *p = params;
+		iarg[0] = p->fd; /* int */
+		*n_args = 1;
+		break;
+	}
 	default:
 		*n_args = 0;
 		break;
@@ -8862,6 +8869,16 @@ systrace_entry_setargdesc(int sysnum, in
 			break;
 		};
 		break;
+	/* fdatasync */
+	case 550:
+		switch(ndx) {
+		case 0:
+			p = "int";
+			break;
+		default:
+			break;
+		};
+		break;
 	default:
 		break;
 	};
@@ -10778,6 +10795,11 @@ systrace_return_setargdesc(int sysnum, i
 		if (ndx == 0 || ndx == 1)
 			p = "int";
 		break;
+	/* fdatasync */
+	case 550:
+		if (ndx == 0 || ndx == 1)
+			p = "int";
+		break;
 	default:
 		break;
 	};

Modified: head/sys/sys/syscall.h
==============================================================================
--- head/sys/sys/syscall.h	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/sys/syscall.h	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 303729 2016-08-03 18:48:56Z bdrewery 
+ * created from FreeBSD: head/sys/kern/syscalls.master 304176 2016-08-15 19:08:51Z kib 
  */
 
 #define	SYS_syscall	0
@@ -467,4 +467,5 @@
 #define	SYS_utimensat	547
 #define	SYS_numa_getaffinity	548
 #define	SYS_numa_setaffinity	549
-#define	SYS_MAXSYSCALL	550
+#define	SYS_fdatasync	550
+#define	SYS_MAXSYSCALL	551

Modified: head/sys/sys/syscall.mk
==============================================================================
--- head/sys/sys/syscall.mk	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/sys/syscall.mk	Mon Aug 15 19:15:46 2016	(r304177)
@@ -1,7 +1,7 @@
 # FreeBSD system call object files.
 # DO NOT EDIT-- this file is automatically generated.
 # $FreeBSD$
-# created from FreeBSD: head/sys/kern/syscalls.master 303729 2016-08-03 18:48:56Z bdrewery 
+# created from FreeBSD: head/sys/kern/syscalls.master 304176 2016-08-15 19:08:51Z kib 
 MIASM =  \
 	syscall.o \
 	exit.o \
@@ -395,4 +395,5 @@ MIASM =  \
 	futimens.o \
 	utimensat.o \
 	numa_getaffinity.o \
-	numa_setaffinity.o
+	numa_setaffinity.o \
+	fdatasync.o

Modified: head/sys/sys/sysproto.h
==============================================================================
--- head/sys/sys/sysproto.h	Mon Aug 15 19:08:51 2016	(r304176)
+++ head/sys/sys/sysproto.h	Mon Aug 15 19:15:46 2016	(r304177)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 303729 2016-08-03 18:48:56Z bdrewery 
+ * created from FreeBSD: head/sys/kern/syscalls.master 304176 2016-08-15 19:08:51Z kib 
  */
 
 #ifndef _SYS_SYSPROTO_H_
@@ -1788,6 +1788,9 @@ struct numa_setaffinity_args {
 	char id_l_[PADL_(id_t)]; id_t id; char id_r_[PADR_(id_t)];
 	char policy_l_[PADL_(const struct vm_domain_policy_entry *)]; const struct vm_domain_policy_entry * policy; char policy_r_[PADR_(const struct vm_domain_policy_entry *)];
 };
+struct fdatasync_args {
+	char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
+};
 int	nosys(struct thread *, struct nosys_args *);
 void	sys_sys_exit(struct thread *, struct sys_exit_args *);
 int	sys_fork(struct thread *, struct fork_args *);
@@ -2174,6 +2177,7 @@ int	sys_futimens(struct thread *, struct
 int	sys_utimensat(struct thread *, struct utimensat_args *);
 int	sys_numa_getaffinity(struct thread *, struct numa_getaffinity_args *);
 int	sys_numa_setaffinity(struct thread *, struct numa_setaffinity_args *);
+int	sys_fdatasync(struct thread *, struct fdatasync_args *);
 
 #ifdef COMPAT_43
 
@@ -2951,6 +2955,7 @@ int	freebsd10_pipe(struct thread *, stru
 #define	SYS_AUE_utimensat	AUE_FUTIMESAT
 #define	SYS_AUE_numa_getaffinity	AUE_NULL
 #define	SYS_AUE_numa_setaffinity	AUE_NULL
+#define	SYS_AUE_fdatasync	AUE_FSYNC
 
 #undef PAD_
 #undef PADL_


More information about the svn-src-all mailing list