Regen for r283444.

This commit is contained in:
Dmitry Chagin 2015-05-24 16:50:17 +00:00
parent a31d76867d
commit 22f3dfdc12
15 changed files with 117 additions and 30 deletions

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@ -997,7 +997,7 @@ struct linux_timerfd_args {
register_t dummy;
};
struct linux_eventfd_args {
register_t dummy;
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
};
struct linux_fallocate_args {
register_t dummy;
@ -1018,7 +1018,8 @@ struct linux_signalfd4_args {
register_t dummy;
};
struct linux_eventfd2_args {
register_t dummy;
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
};
struct linux_epoll_create1_args {
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#define LINUX_SYS_read 0

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
const char *linux_syscallnames[] = {

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#include <sys/param.h>
@ -302,13 +302,13 @@ struct sysent linux_sysent[] = {
{ AS(linux_epoll_pwait_args), (sy_call_t *)linux_epoll_pwait, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 281 = linux_epoll_pwait */
{ 0, (sy_call_t *)linux_signalfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 282 = linux_signalfd */
{ 0, (sy_call_t *)linux_timerfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 283 = linux_timerfd */
{ 0, (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 284 = linux_eventfd */
{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 284 = linux_eventfd */
{ 0, (sy_call_t *)linux_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 285 = linux_fallocate */
{ 0, (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 286 = linux_timerfd_settime */
{ 0, (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 287 = linux_timerfd_gettime */
{ AS(linux_accept4_args), (sy_call_t *)linux_accept4, AUE_ACCEPT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 288 = linux_accept4 */
{ 0, (sy_call_t *)linux_signalfd4, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 289 = linux_signalfd4 */
{ 0, (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 290 = linux_eventfd2 */
{ AS(linux_eventfd2_args), (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 290 = linux_eventfd2 */
{ AS(linux_epoll_create1_args), (sy_call_t *)linux_epoll_create1, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 291 = linux_epoll_create1 */
{ AS(linux_dup3_args), (sy_call_t *)linux_dup3, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 292 = linux_dup3 */
{ AS(linux_pipe2_args), (sy_call_t *)linux_pipe2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 293 = linux_pipe2 */

View File

@ -2072,7 +2072,9 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_eventfd */
case 284: {
*n_args = 0;
struct linux_eventfd_args *p = params;
iarg[0] = p->initval; /* l_uint */
*n_args = 1;
break;
}
/* linux_fallocate */
@ -2107,7 +2109,10 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_eventfd2 */
case 290: {
*n_args = 0;
struct linux_eventfd2_args *p = params;
iarg[0] = p->initval; /* l_uint */
iarg[1] = p->flags; /* l_int */
*n_args = 2;
break;
}
/* linux_epoll_create1 */
@ -5351,6 +5356,13 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_eventfd */
case 284:
switch(ndx) {
case 0:
p = "l_uint";
break;
default:
break;
};
break;
/* linux_fallocate */
case 285:
@ -5385,6 +5397,16 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_eventfd2 */
case 290:
switch(ndx) {
case 0:
p = "l_uint";
break;
case 1:
p = "l_int";
break;
default:
break;
};
break;
/* linux_epoll_create1 */
case 291:
@ -6638,6 +6660,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
case 283:
/* linux_eventfd */
case 284:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_fallocate */
case 285:
/* linux_timerfd_settime */
@ -6653,6 +6678,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
case 289:
/* linux_eventfd2 */
case 290:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_epoll_create1 */
case 291:
if (ndx == 0 || ndx == 1)

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@ -1057,7 +1057,7 @@ struct linux_timerfd_create_args {
register_t dummy;
};
struct linux_eventfd_args {
register_t dummy;
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
};
struct linux_fallocate_args {
register_t dummy;
@ -1072,7 +1072,8 @@ struct linux_signalfd4_args {
register_t dummy;
};
struct linux_eventfd2_args {
register_t dummy;
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
};
struct linux_epoll_create1_args {
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#define LINUX_SYS_linux_exit 1

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
const char *linux_syscallnames[] = {

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#include "opt_compat.h"
@ -342,12 +342,12 @@ struct sysent linux_sysent[] = {
{ 0, (sy_call_t *)linux_utimensat, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 320 = linux_utimensat */
{ 0, (sy_call_t *)linux_signalfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 321 = linux_signalfd */
{ 0, (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 322 = linux_timerfd_create */
{ 0, (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 323 = linux_eventfd */
{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 323 = linux_eventfd */
{ 0, (sy_call_t *)linux_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 324 = linux_fallocate */
{ 0, (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 325 = linux_timerfd_settime */
{ 0, (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 326 = linux_timerfd_gettime */
{ 0, (sy_call_t *)linux_signalfd4, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 327 = linux_signalfd4 */
{ 0, (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 328 = linux_eventfd2 */
{ AS(linux_eventfd2_args), (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 328 = linux_eventfd2 */
{ AS(linux_epoll_create1_args), (sy_call_t *)linux_epoll_create1, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 329 = linux_epoll_create1 */
{ AS(linux_dup3_args), (sy_call_t *)linux_dup3, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 330 = linux_dup3 */
{ AS(linux_pipe2_args), (sy_call_t *)linux_pipe2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 331 = linux_pipe2 */

View File

@ -2179,7 +2179,9 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_eventfd */
case 323: {
*n_args = 0;
struct linux_eventfd_args *p = params;
iarg[0] = p->initval; /* l_uint */
*n_args = 1;
break;
}
/* linux_fallocate */
@ -2204,7 +2206,10 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_eventfd2 */
case 328: {
*n_args = 0;
struct linux_eventfd2_args *p = params;
iarg[0] = p->initval; /* l_uint */
iarg[1] = p->flags; /* l_int */
*n_args = 2;
break;
}
/* linux_epoll_create1 */
@ -5558,6 +5563,13 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_eventfd */
case 323:
switch(ndx) {
case 0:
p = "l_uint";
break;
default:
break;
};
break;
/* linux_fallocate */
case 324:
@ -5573,6 +5585,16 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_eventfd2 */
case 328:
switch(ndx) {
case 0:
p = "l_uint";
break;
case 1:
p = "l_int";
break;
default:
break;
};
break;
/* linux_epoll_create1 */
case 329:
@ -6901,6 +6923,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
case 322:
/* linux_eventfd */
case 323:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_fallocate */
case 324:
/* linux_timerfd_settime */
@ -6911,6 +6936,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
case 327:
/* linux_eventfd2 */
case 328:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_epoll_create1 */
case 329:
if (ndx == 0 || ndx == 1)

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@ -1075,7 +1075,7 @@ struct linux_timerfd_create_args {
register_t dummy;
};
struct linux_eventfd_args {
register_t dummy;
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
};
struct linux_fallocate_args {
register_t dummy;
@ -1090,7 +1090,8 @@ struct linux_signalfd4_args {
register_t dummy;
};
struct linux_eventfd2_args {
register_t dummy;
char initval_l_[PADL_(l_uint)]; l_uint initval; char initval_r_[PADR_(l_uint)];
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
};
struct linux_epoll_create1_args {
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#define LINUX_SYS_linux_exit 1

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
const char *linux_syscallnames[] = {

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283441 2015-05-24 16:41:39Z dchagin
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283444 2015-05-24 16:49:14Z dchagin
*/
#include <sys/param.h>
@ -341,12 +341,12 @@ struct sysent linux_sysent[] = {
{ 0, (sy_call_t *)linux_utimensat, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 320 = linux_utimensat */
{ 0, (sy_call_t *)linux_signalfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 321 = linux_signalfd */
{ 0, (sy_call_t *)linux_timerfd_create, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 322 = linux_timerfd_create */
{ 0, (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 323 = linux_eventfd */
{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 323 = linux_eventfd */
{ 0, (sy_call_t *)linux_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 324 = linux_fallocate */
{ 0, (sy_call_t *)linux_timerfd_settime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 325 = linux_timerfd_settime */
{ 0, (sy_call_t *)linux_timerfd_gettime, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 326 = linux_timerfd_gettime */
{ 0, (sy_call_t *)linux_signalfd4, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 327 = linux_signalfd4 */
{ 0, (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 328 = linux_eventfd2 */
{ AS(linux_eventfd2_args), (sy_call_t *)linux_eventfd2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 328 = linux_eventfd2 */
{ AS(linux_epoll_create1_args), (sy_call_t *)linux_epoll_create1, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 329 = linux_epoll_create1 */
{ AS(linux_dup3_args), (sy_call_t *)linux_dup3, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 330 = linux_dup3 */
{ AS(linux_pipe2_args), (sy_call_t *)linux_pipe2, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 331 = linux_pipe2 */

View File

@ -2255,7 +2255,9 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_eventfd */
case 323: {
*n_args = 0;
struct linux_eventfd_args *p = params;
iarg[0] = p->initval; /* l_uint */
*n_args = 1;
break;
}
/* linux_fallocate */
@ -2280,7 +2282,10 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_eventfd2 */
case 328: {
*n_args = 0;
struct linux_eventfd2_args *p = params;
iarg[0] = p->initval; /* l_uint */
iarg[1] = p->flags; /* l_int */
*n_args = 2;
break;
}
/* linux_epoll_create1 */
@ -5789,6 +5794,13 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_eventfd */
case 323:
switch(ndx) {
case 0:
p = "l_uint";
break;
default:
break;
};
break;
/* linux_fallocate */
case 324:
@ -5804,6 +5816,16 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_eventfd2 */
case 328:
switch(ndx) {
case 0:
p = "l_uint";
break;
case 1:
p = "l_int";
break;
default:
break;
};
break;
/* linux_epoll_create1 */
case 329:
@ -7179,6 +7201,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
case 322:
/* linux_eventfd */
case 323:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_fallocate */
case 324:
/* linux_timerfd_settime */
@ -7189,6 +7214,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
case 327:
/* linux_eventfd2 */
case 328:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_epoll_create1 */
case 329:
if (ndx == 0 || ndx == 1)