Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/linux/arch Regen.
details: https://anonhg.NetBSD.org/src/rev/62b4b9c1f411
branches: trunk
changeset: 325145:62b4b9c1f411
user: njoly <njoly%NetBSD.org@localhost>
date: Sun Dec 08 15:56:12 2013 +0000
description:
Regen.
diffstat:
sys/compat/linux/arch/alpha/linux_syscall.h | 14 +++++++-------
sys/compat/linux/arch/alpha/linux_syscallargs.h | 10 +++++-----
sys/compat/linux/arch/alpha/linux_syscalls.c | 6 +++---
sys/compat/linux/arch/alpha/linux_sysent.c | 6 +++---
sys/compat/linux/arch/amd64/linux_syscall.h | 6 +++---
sys/compat/linux/arch/amd64/linux_syscallargs.h | 6 +++---
sys/compat/linux/arch/amd64/linux_syscalls.c | 6 +++---
sys/compat/linux/arch/amd64/linux_sysent.c | 6 +++---
sys/compat/linux/arch/arm/linux_syscall.h | 14 +++++++-------
sys/compat/linux/arch/arm/linux_syscallargs.h | 10 +++++-----
sys/compat/linux/arch/arm/linux_syscalls.c | 6 +++---
sys/compat/linux/arch/arm/linux_sysent.c | 6 +++---
sys/compat/linux/arch/m68k/linux_syscall.h | 14 +++++++-------
sys/compat/linux/arch/m68k/linux_syscallargs.h | 10 +++++-----
sys/compat/linux/arch/m68k/linux_syscalls.c | 6 +++---
sys/compat/linux/arch/m68k/linux_sysent.c | 6 +++---
sys/compat/linux/arch/mips/linux_syscall.h | 14 +++++++-------
sys/compat/linux/arch/mips/linux_syscallargs.h | 10 +++++-----
sys/compat/linux/arch/mips/linux_syscalls.c | 6 +++---
sys/compat/linux/arch/mips/linux_sysent.c | 6 +++---
sys/compat/linux/arch/powerpc/linux_syscall.h | 14 +++++++-------
sys/compat/linux/arch/powerpc/linux_syscallargs.h | 10 +++++-----
sys/compat/linux/arch/powerpc/linux_syscalls.c | 6 +++---
sys/compat/linux/arch/powerpc/linux_sysent.c | 6 +++---
24 files changed, 102 insertions(+), 102 deletions(-)
diffs (truncated from 822 to 300 lines):
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h Sun Dec 08 15:56:12 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.86 2013/11/19 03:53:09 chs Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.87 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.80 2013/11/19 03:52:07 chs Exp
+ * created from NetBSD: syscalls.master,v 1.81 2013/12/08 15:55:10 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALL_H_
@@ -30,7 +30,7 @@
/* syscall: "close" ret: "int" args: "int" */
#define LINUX_SYS_close 6
-/* syscall: "creat" ret: "int" args: "const char *" "mode_t" */
+/* syscall: "creat" ret: "int" args: "const char *" "linux_umode_t" */
#define LINUX_SYS_creat 8
/* syscall: "link" ret: "int" args: "const char *" "const char *" */
@@ -45,7 +45,7 @@
/* syscall: "fchdir" ret: "int" args: "int" */
#define LINUX_SYS_fchdir 13
-/* syscall: "mknod" ret: "int" args: "const char *" "int" "int" */
+/* syscall: "mknod" ret: "int" args: "const char *" "linux_umode_t" "int" */
#define LINUX_SYS_mknod 14
/* syscall: "chmod" ret: "int" args: "const char *" "int" */
@@ -90,7 +90,7 @@
/* syscall: "pipe" ret: "int" args: */
#define LINUX_SYS_pipe 42
-/* syscall: "open" ret: "int" args: "const char *" "int" "int" */
+/* syscall: "open" ret: "int" args: "const char *" "int" "linux_umode_t" */
#define LINUX_SYS_open 45
/* syscall: "getgid_with_egid" ret: "gid_t" args: */
@@ -234,7 +234,7 @@
/* syscall: "__posix_fchown" ret: "int" args: "int" "int" "int" */
#define LINUX_SYS___posix_fchown 123
-/* syscall: "fchmod" ret: "int" args: "int" "mode_t" */
+/* syscall: "fchmod" ret: "int" args: "int" "linux_umode_t" */
#define LINUX_SYS_fchmod 124
/* syscall: "recvfrom" ret: "int" args: "int" "void *" "int" "int" "struct osockaddr *" "int *" */
@@ -270,7 +270,7 @@
/* syscall: "socketpair" ret: "int" args: "int" "int" "int" "int *" */
#define LINUX_SYS_socketpair 135
-/* syscall: "mkdir" ret: "int" args: "const char *" "int" */
+/* syscall: "mkdir" ret: "int" args: "const char *" "linux_umode_t" */
#define LINUX_SYS_mkdir 136
/* syscall: "rmdir" ret: "int" args: "const char *" */
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h Sun Dec 08 15:56:12 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.85 2013/11/19 03:53:09 chs Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.86 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.80 2013/11/19 03:52:07 chs Exp
+ * created from NetBSD: syscalls.master,v 1.81 2013/12/08 15:55:10 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
@@ -52,7 +52,7 @@
struct linux_sys_creat_args {
syscallarg(const char *) path;
- syscallarg(mode_t) mode;
+ syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_creat)
@@ -69,7 +69,7 @@
struct linux_sys_mknod_args {
syscallarg(const char *) path;
- syscallarg(int) mode;
+ syscallarg(linux_umode_t) mode;
syscallarg(int) dev;
};
check_syscall_args(linux_sys_mknod)
@@ -126,7 +126,7 @@
struct linux_sys_open_args {
syscallarg(const char *) path;
syscallarg(int) flags;
- syscallarg(int) mode;
+ syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_open)
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/alpha/linux_syscalls.c
--- a/sys/compat/linux/arch/alpha/linux_syscalls.c Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscalls.c Sun Dec 08 15:56:12 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.87 2013/11/19 03:53:09 chs Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.88 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.80 2013/11/19 03:52:07 chs Exp
+ * created from NetBSD: syscalls.master,v 1.81 2013/12/08 15:55:10 njoly Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.87 2013/11/19 03:53:09 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.88 2013/12/08 15:56:12 njoly Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/alpha/linux_sysent.c
--- a/sys/compat/linux/arch/alpha/linux_sysent.c Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/alpha/linux_sysent.c Sun Dec 08 15:56:12 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.86 2013/11/19 03:53:09 chs Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.87 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.80 2013/11/19 03:52:07 chs Exp
+ * created from NetBSD: syscalls.master,v 1.81 2013/12/08 15:55:10 njoly Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.86 2013/11/19 03:53:09 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.87 2013/12/08 15:56:12 njoly Exp $");
#if defined(_KERNEL_OPT)
#include "opt_sysv.h"
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/amd64/linux_syscall.h
--- a/sys/compat/linux/arch/amd64/linux_syscall.h Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/amd64/linux_syscall.h Sun Dec 08 15:56:12 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.47 2013/11/18 01:36:35 chs Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.48 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.45 2013/11/18 01:32:52 chs Exp
+ * created from NetBSD: syscalls.master,v 1.46 2013/12/08 15:55:10 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALL_H_
@@ -276,7 +276,7 @@
/* syscall: "rmdir" ret: "int" args: "const char *" */
#define LINUX_SYS_rmdir 84
-/* syscall: "creat" ret: "int" args: "const char *" "int" */
+/* syscall: "creat" ret: "int" args: "const char *" "linux_umode_t" */
#define LINUX_SYS_creat 85
/* syscall: "link" ret: "int" args: "const char *" "const char *" */
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/amd64/linux_syscallargs.h
--- a/sys/compat/linux/arch/amd64/linux_syscallargs.h Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/amd64/linux_syscallargs.h Sun Dec 08 15:56:12 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.47 2013/11/18 01:36:35 chs Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.48 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.45 2013/11/18 01:32:52 chs Exp
+ * created from NetBSD: syscalls.master,v 1.46 2013/12/08 15:55:10 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
@@ -404,7 +404,7 @@
struct linux_sys_creat_args {
syscallarg(const char *) path;
- syscallarg(int) mode;
+ syscallarg(linux_umode_t) mode;
};
check_syscall_args(linux_sys_creat)
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/amd64/linux_syscalls.c
--- a/sys/compat/linux/arch/amd64/linux_syscalls.c Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/amd64/linux_syscalls.c Sun Dec 08 15:56:12 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.47 2013/11/18 01:36:35 chs Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.48 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.45 2013/11/18 01:32:52 chs Exp
+ * created from NetBSD: syscalls.master,v 1.46 2013/12/08 15:55:10 njoly Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.47 2013/11/18 01:36:35 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.48 2013/12/08 15:56:12 njoly Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/amd64/linux_sysent.c
--- a/sys/compat/linux/arch/amd64/linux_sysent.c Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/amd64/linux_sysent.c Sun Dec 08 15:56:12 2013 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.47 2013/11/18 01:36:35 chs Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.48 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.45 2013/11/18 01:32:52 chs Exp
+ * created from NetBSD: syscalls.master,v 1.46 2013/12/08 15:55:10 njoly Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.47 2013/11/18 01:36:35 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.48 2013/12/08 15:56:12 njoly Exp $");
#if defined(_KERNEL_OPT)
#include "opt_sysv.h"
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/arm/linux_syscall.h
--- a/sys/compat/linux/arch/arm/linux_syscall.h Sun Dec 08 15:55:10 2013 +0000
+++ b/sys/compat/linux/arch/arm/linux_syscall.h Sun Dec 08 15:56:12 2013 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.56 2013/11/19 03:53:09 chs Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.57 2013/12/08 15:56:12 njoly Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.53 2013/11/19 03:52:07 chs Exp
+ * created from NetBSD: syscalls.master,v 1.54 2013/12/08 15:55:10 njoly Exp
*/
#ifndef _LINUX_SYS_SYSCALL_H_
@@ -27,7 +27,7 @@
/* syscall: "write" ret: "int" args: "int" "char *" "u_int" */
#define LINUX_SYS_write 4
-/* syscall: "open" ret: "int" args: "const char *" "int" "int" */
+/* syscall: "open" ret: "int" args: "const char *" "int" "linux_umode_t" */
#define LINUX_SYS_open 5
/* syscall: "close" ret: "int" args: "int" */
@@ -36,7 +36,7 @@
/* syscall: "waitpid" ret: "int" args: "int" "int *" "int" */
#define LINUX_SYS_waitpid 7
-/* syscall: "creat" ret: "int" args: "const char *" "int" */
+/* syscall: "creat" ret: "int" args: "const char *" "linux_umode_t" */
#define LINUX_SYS_creat 8
/* syscall: "link" ret: "int" args: "const char *" "const char *" */
@@ -54,7 +54,7 @@
/* syscall: "time" ret: "int" args: "linux_time_t *" */
#define LINUX_SYS_time 13
-/* syscall: "mknod" ret: "int" args: "const char *" "int" "int" */
+/* syscall: "mknod" ret: "int" args: "const char *" "linux_umode_t" "int" */
#define LINUX_SYS_mknod 14
/* syscall: "chmod" ret: "int" args: "const char *" "int" */
@@ -112,7 +112,7 @@
/* syscall: "__posix_rename" ret: "int" args: "const char *" "const char *" */
#define LINUX_SYS___posix_rename 38
-/* syscall: "mkdir" ret: "int" args: "const char *" "int" */
+/* syscall: "mkdir" ret: "int" args: "const char *" "linux_umode_t" */
#define LINUX_SYS_mkdir 39
/* syscall: "rmdir" ret: "int" args: "const char *" */
@@ -267,7 +267,7 @@
/* syscall: "ftruncate" ret: "int" args: "int" "long" */
#define LINUX_SYS_ftruncate 93
-/* syscall: "fchmod" ret: "int" args: "int" "int" */
+/* syscall: "fchmod" ret: "int" args: "int" "linux_umode_t" */
#define LINUX_SYS_fchmod 94
/* syscall: "fchown16" ret: "int" args: "int" "linux_uid16_t" "linux_gid16_t" */
diff -r b8f21e184564 -r 62b4b9c1f411 sys/compat/linux/arch/arm/linux_syscallargs.h
Home |
Main Index |
Thread Index |
Old Index