mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-02 17:08:56 +00:00
Regen for r302215 (Linux personality).
This commit is contained in:
parent
23e8912c60
commit
ab231b83ea
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=302516
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_SYSPROTO_H_
|
||||
@ -499,7 +499,7 @@ struct linux_mknod_args {
|
||||
char dev_l_[PADL_(l_dev_t)]; l_dev_t dev; char dev_r_[PADR_(l_dev_t)];
|
||||
};
|
||||
struct linux_personality_args {
|
||||
char per_l_[PADL_(l_ulong)]; l_ulong per; char per_r_[PADR_(l_ulong)];
|
||||
char per_l_[PADL_(l_uint)]; l_uint per; char per_r_[PADR_(l_uint)];
|
||||
};
|
||||
struct linux_ustat_args {
|
||||
char dev_l_[PADL_(l_dev_t)]; l_dev_t dev; char dev_r_[PADR_(l_dev_t)];
|
||||
@ -1397,6 +1397,13 @@ int linux_finit_module(struct thread *, struct linux_finit_module_args *);
|
||||
|
||||
#endif /* COMPAT_FREEBSD7 */
|
||||
|
||||
|
||||
#ifdef COMPAT_FREEBSD10
|
||||
|
||||
#define nosys linux_nosys
|
||||
|
||||
#endif /* COMPAT_FREEBSD10 */
|
||||
|
||||
#define LINUX_SYS_AUE_linux_open AUE_OPEN_RWTC
|
||||
#define LINUX_SYS_AUE_linux_newstat AUE_STAT
|
||||
#define LINUX_SYS_AUE_linux_newfstat AUE_FSTAT
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#define LINUX_SYS_read 0
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
const char *linux_syscallnames[] = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -1120,7 +1120,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
/* linux_personality */
|
||||
case 135: {
|
||||
struct linux_personality_args *p = params;
|
||||
iarg[0] = p->per; /* l_ulong */
|
||||
iarg[0] = p->per; /* l_uint */
|
||||
*n_args = 1;
|
||||
break;
|
||||
}
|
||||
@ -4112,7 +4112,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 135:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_ulong";
|
||||
p = "l_uint";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#ifndef _LINUX32_SYSPROTO_H_
|
||||
@ -427,7 +427,7 @@ struct linux_sysfs_args {
|
||||
char arg2_l_[PADL_(l_ulong)]; l_ulong arg2; char arg2_r_[PADR_(l_ulong)];
|
||||
};
|
||||
struct linux_personality_args {
|
||||
char per_l_[PADL_(l_ulong)]; l_ulong per; char per_r_[PADR_(l_ulong)];
|
||||
char per_l_[PADL_(l_uint)]; l_uint per; char per_r_[PADR_(l_uint)];
|
||||
};
|
||||
struct linux_setfsuid16_args {
|
||||
char uid_l_[PADL_(l_uid16_t)]; l_uid16_t uid; char uid_r_[PADR_(l_uid16_t)];
|
||||
@ -1466,6 +1466,13 @@ int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args
|
||||
|
||||
#endif /* COMPAT_FREEBSD7 */
|
||||
|
||||
|
||||
#ifdef COMPAT_FREEBSD10
|
||||
|
||||
#define nosys linux_nosys
|
||||
|
||||
#endif /* COMPAT_FREEBSD10 */
|
||||
|
||||
#define LINUX32_SYS_AUE_linux_exit AUE_EXIT
|
||||
#define LINUX32_SYS_AUE_linux_fork AUE_FORK
|
||||
#define LINUX32_SYS_AUE_linux_open AUE_OPEN_RWTC
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#define LINUX32_SYS_linux_exit 1
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
const char *linux32_syscallnames[] = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#include "opt_compat.h"
|
||||
|
@ -910,7 +910,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
/* linux_personality */
|
||||
case 136: {
|
||||
struct linux_personality_args *p = params;
|
||||
iarg[0] = p->per; /* l_ulong */
|
||||
iarg[0] = p->per; /* l_uint */
|
||||
*n_args = 1;
|
||||
break;
|
||||
}
|
||||
@ -3715,7 +3715,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 136:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_ulong";
|
||||
p = "l_uint";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#ifndef _LINUX_SYSPROTO_H_
|
||||
@ -435,7 +435,7 @@ struct linux_sysfs_args {
|
||||
char arg2_l_[PADL_(l_ulong)]; l_ulong arg2; char arg2_r_[PADR_(l_ulong)];
|
||||
};
|
||||
struct linux_personality_args {
|
||||
char per_l_[PADL_(l_ulong)]; l_ulong per; char per_r_[PADR_(l_ulong)];
|
||||
char per_l_[PADL_(l_uint)]; l_uint per; char per_r_[PADR_(l_uint)];
|
||||
};
|
||||
struct linux_setfsuid16_args {
|
||||
char uid_l_[PADL_(l_uid16_t)]; l_uid16_t uid; char uid_r_[PADR_(l_uid16_t)];
|
||||
@ -1486,6 +1486,13 @@ int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args
|
||||
|
||||
#endif /* COMPAT_FREEBSD7 */
|
||||
|
||||
|
||||
#ifdef COMPAT_FREEBSD10
|
||||
|
||||
#define nosys linux_nosys
|
||||
|
||||
#endif /* COMPAT_FREEBSD10 */
|
||||
|
||||
#define LINUX_SYS_AUE_linux_exit AUE_EXIT
|
||||
#define LINUX_SYS_AUE_linux_fork AUE_FORK
|
||||
#define LINUX_SYS_AUE_linux_open AUE_OPEN_RWTC
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#define LINUX_SYS_linux_exit 1
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
const char *linux_syscallnames[] = {
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* $FreeBSD$
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 300359 2016-05-21 08:01:14Z dchagin
|
||||
* created from FreeBSD: head/sys/i386/linux/syscalls.master 302515 2016-07-10 08:15:50Z dchagin
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -948,7 +948,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
|
||||
/* linux_personality */
|
||||
case 136: {
|
||||
struct linux_personality_args *p = params;
|
||||
iarg[0] = p->per; /* l_ulong */
|
||||
iarg[0] = p->per; /* l_uint */
|
||||
*n_args = 1;
|
||||
break;
|
||||
}
|
||||
@ -3849,7 +3849,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
|
||||
case 136:
|
||||
switch(ndx) {
|
||||
case 0:
|
||||
p = "l_ulong";
|
||||
p = "l_uint";
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user