Date: Sun, 24 May 2015 17:39:19 +0000 (UTC) From: Dmitry Chagin <dchagin@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r283468 - in head/sys: amd64/linux amd64/linux32 i386/linux Message-ID: <201505241739.t4OHdJmi025315@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dchagin Date: Sun May 24 17:39:18 2015 New Revision: 283468 URL: https://svnweb.freebsd.org/changeset/base/283468 Log: Regen for r283467. Modified: head/sys/amd64/linux/linux_proto.h head/sys/amd64/linux/linux_syscall.h head/sys/amd64/linux/linux_syscalls.c head/sys/amd64/linux/linux_sysent.c head/sys/amd64/linux32/linux32_proto.h head/sys/amd64/linux32/linux32_syscall.h head/sys/amd64/linux32/linux32_syscalls.c head/sys/amd64/linux32/linux32_sysent.c head/sys/i386/linux/linux_proto.h head/sys/i386/linux/linux_syscall.h head/sys/i386/linux/linux_syscalls.c head/sys/i386/linux/linux_sysent.c Modified: head/sys/amd64/linux/linux_proto.h ============================================================================== --- head/sys/amd64/linux/linux_proto.h Sun May 24 17:38:02 2015 (r283467) +++ head/sys/amd64/linux/linux_proto.h Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/amd64/linux/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/amd64/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #ifndef _LINUX_SYSPROTO_H_ Modified: head/sys/amd64/linux/linux_syscall.h ============================================================================== --- head/sys/amd64/linux/linux_syscall.h Sun May 24 17:38:02 2015 (r283467) +++ head/sys/amd64/linux/linux_syscall.h Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/amd64/linux/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/amd64/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #define LINUX_SYS_read 0 @@ -307,4 +307,4 @@ #define LINUX_SYS_linux_process_vm_writev 310 #define LINUX_SYS_linux_kcmp 311 #define LINUX_SYS_linux_finit_module 312 -#define LINUX_SYS_MAXSYSCALL 313 +#define LINUX_SYS_MAXSYSCALL 314 Modified: head/sys/amd64/linux/linux_syscalls.c ============================================================================== --- head/sys/amd64/linux/linux_syscalls.c Sun May 24 17:38:02 2015 (r283467) +++ head/sys/amd64/linux/linux_syscalls.c Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/amd64/linux/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/amd64/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ const char *linux_syscallnames[] = { @@ -321,4 +321,5 @@ const char *linux_syscallnames[] = { "linux_process_vm_writev", /* 310 = linux_process_vm_writev */ "linux_kcmp", /* 311 = linux_kcmp */ "linux_finit_module", /* 312 = linux_finit_module */ + "#313", /* 313 = nosys */ }; Modified: head/sys/amd64/linux/linux_sysent.c ============================================================================== --- head/sys/amd64/linux/linux_sysent.c Sun May 24 17:38:02 2015 (r283467) +++ head/sys/amd64/linux/linux_sysent.c Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/amd64/linux/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/amd64/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #include <sys/param.h> @@ -331,4 +331,5 @@ struct sysent linux_sysent[] = { { 0, (sy_call_t *)linux_process_vm_writev, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 310 = linux_process_vm_writev */ { 0, (sy_call_t *)linux_kcmp, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 311 = linux_kcmp */ { 0, (sy_call_t *)linux_finit_module, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 312 = linux_finit_module */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT }, /* 313 = nosys */ }; Modified: head/sys/amd64/linux32/linux32_proto.h ============================================================================== --- head/sys/amd64/linux32/linux32_proto.h Sun May 24 17:38:02 2015 (r283467) +++ head/sys/amd64/linux32/linux32_proto.h Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #ifndef _LINUX_SYSPROTO_H_ Modified: head/sys/amd64/linux32/linux32_syscall.h ============================================================================== --- head/sys/amd64/linux32/linux32_syscall.h Sun May 24 17:38:02 2015 (r283467) +++ head/sys/amd64/linux32/linux32_syscall.h Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #define LINUX_SYS_linux_exit 1 @@ -321,4 +321,4 @@ #define LINUX_SYS_linux_setns 346 #define LINUX_SYS_linux_process_vm_readv 347 #define LINUX_SYS_linux_process_vm_writev 348 -#define LINUX_SYS_MAXSYSCALL 349 +#define LINUX_SYS_MAXSYSCALL 350 Modified: head/sys/amd64/linux32/linux32_syscalls.c ============================================================================== --- head/sys/amd64/linux32/linux32_syscalls.c Sun May 24 17:38:02 2015 (r283467) +++ head/sys/amd64/linux32/linux32_syscalls.c Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ const char *linux_syscallnames[] = { @@ -357,4 +357,5 @@ const char *linux_syscallnames[] = { "linux_setns", /* 346 = linux_setns */ "linux_process_vm_readv", /* 347 = linux_process_vm_readv */ "linux_process_vm_writev", /* 348 = linux_process_vm_writev */ + "#349", /* 349 = nosys */ }; Modified: head/sys/amd64/linux32/linux32_sysent.c ============================================================================== --- head/sys/amd64/linux32/linux32_sysent.c Sun May 24 17:38:02 2015 (r283467) +++ head/sys/amd64/linux32/linux32_sysent.c Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #include "opt_compat.h" @@ -368,4 +368,5 @@ struct sysent linux_sysent[] = { { 0, (sy_call_t *)linux_setns, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 346 = linux_setns */ { 0, (sy_call_t *)linux_process_vm_readv, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 347 = linux_process_vm_readv */ { 0, (sy_call_t *)linux_process_vm_writev, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 348 = linux_process_vm_writev */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT }, /* 349 = nosys */ }; Modified: head/sys/i386/linux/linux_proto.h ============================================================================== --- head/sys/i386/linux/linux_proto.h Sun May 24 17:38:02 2015 (r283467) +++ head/sys/i386/linux/linux_proto.h Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/i386/linux/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/i386/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #ifndef _LINUX_SYSPROTO_H_ Modified: head/sys/i386/linux/linux_syscall.h ============================================================================== --- head/sys/i386/linux/linux_syscall.h Sun May 24 17:38:02 2015 (r283467) +++ head/sys/i386/linux/linux_syscall.h Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/i386/linux/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/i386/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #define LINUX_SYS_linux_exit 1 @@ -328,4 +328,4 @@ #define LINUX_SYS_linux_setns 346 #define LINUX_SYS_linux_process_vm_readv 347 #define LINUX_SYS_linux_process_vm_writev 348 -#define LINUX_SYS_MAXSYSCALL 349 +#define LINUX_SYS_MAXSYSCALL 350 Modified: head/sys/i386/linux/linux_syscalls.c ============================================================================== --- head/sys/i386/linux/linux_syscalls.c Sun May 24 17:38:02 2015 (r283467) +++ head/sys/i386/linux/linux_syscalls.c Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/i386/linux/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/i386/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ const char *linux_syscallnames[] = { @@ -357,4 +357,5 @@ const char *linux_syscallnames[] = { "linux_setns", /* 346 = linux_setns */ "linux_process_vm_readv", /* 347 = linux_process_vm_readv */ "linux_process_vm_writev", /* 348 = linux_process_vm_writev */ + "#349", /* 349 = nosys */ }; Modified: head/sys/i386/linux/linux_sysent.c ============================================================================== --- head/sys/i386/linux/linux_sysent.c Sun May 24 17:38:02 2015 (r283467) +++ head/sys/i386/linux/linux_sysent.c Sun May 24 17:39:18 2015 (r283468) @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: head/sys/i386/linux/syscalls.master 283465 2015-05-24 17:33:21Z dchagin + * created from FreeBSD: head/sys/i386/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin */ #include <sys/param.h> @@ -367,4 +367,5 @@ struct sysent linux_sysent[] = { { 0, (sy_call_t *)linux_setns, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 346 = linux_setns */ { 0, (sy_call_t *)linux_process_vm_readv, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 347 = linux_process_vm_readv */ { 0, (sy_call_t *)linux_process_vm_writev, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 348 = linux_process_vm_writev */ + { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT }, /* 349 = nosys */ };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505241739.t4OHdJmi025315>