Regen for r283480.

This commit is contained in:
Dmitry Chagin 2015-05-24 17:58:24 +00:00
parent 19d8b461f4
commit ca045164a7
15 changed files with 105 additions and 24 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 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283480 2015-05-24 17:57:07Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@ -985,7 +985,10 @@ struct linux_move_pages_args {
register_t dummy;
};
struct linux_utimensat_args {
register_t dummy;
char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
char times_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * times; char times_r_[PADR_(const struct l_timespec *)];
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
};
struct linux_epoll_pwait_args {
char epfd_l_[PADL_(l_int)]; l_int epfd; char epfd_r_[PADR_(l_int)];
@ -1612,7 +1615,7 @@ int linux_finit_module(struct thread *, struct linux_finit_module_args *);
#define LINUX_SYS_AUE_linux_sync_file_range AUE_NULL
#define LINUX_SYS_AUE_linux_vmsplice AUE_NULL
#define LINUX_SYS_AUE_linux_move_pages AUE_NULL
#define LINUX_SYS_AUE_linux_utimensat AUE_NULL
#define LINUX_SYS_AUE_linux_utimensat AUE_FUTIMESAT
#define LINUX_SYS_AUE_linux_epoll_pwait AUE_NULL
#define LINUX_SYS_AUE_linux_signalfd AUE_NULL
#define LINUX_SYS_AUE_linux_timerfd AUE_NULL

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283480 2015-05-24 17:57:07Z 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 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283480 2015-05-24 17:57:07Z 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 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/amd64/linux/syscalls.master 283480 2015-05-24 17:57:07Z dchagin
*/
#include <sys/param.h>
@ -298,7 +298,7 @@ struct sysent linux_sysent[] = {
{ 0, (sy_call_t *)linux_sync_file_range, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 277 = linux_sync_file_range */
{ 0, (sy_call_t *)linux_vmsplice, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 278 = linux_vmsplice */
{ 0, (sy_call_t *)linux_move_pages, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 279 = linux_move_pages */
{ 0, (sy_call_t *)linux_utimensat, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 280 = linux_utimensat */
{ AS(linux_utimensat_args), (sy_call_t *)linux_utimensat, AUE_FUTIMESAT, NULL, 0, 0, 0, SY_THR_STATIC }, /* 280 = linux_utimensat */
{ 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 */

View File

@ -2052,7 +2052,12 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_utimensat */
case 280: {
*n_args = 0;
struct linux_utimensat_args *p = params;
iarg[0] = p->dfd; /* l_int */
uarg[1] = (intptr_t) p->pathname; /* const char * */
uarg[2] = (intptr_t) p->times; /* const struct l_timespec * */
iarg[3] = p->flags; /* l_int */
*n_args = 4;
break;
}
/* linux_epoll_pwait */
@ -5355,6 +5360,22 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_utimensat */
case 280:
switch(ndx) {
case 0:
p = "l_int";
break;
case 1:
p = "const char *";
break;
case 2:
p = "const struct l_timespec *";
break;
case 3:
p = "l_int";
break;
default:
break;
};
break;
/* linux_epoll_pwait */
case 281:
@ -6698,6 +6719,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
case 279:
/* linux_utimensat */
case 280:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_epoll_pwait */
case 281:
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 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283480 2015-05-24 17:57:07Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@ -1052,7 +1052,10 @@ struct linux_epoll_pwait_args {
char mask_l_[PADL_(l_osigset_t *)]; l_osigset_t * mask; char mask_r_[PADR_(l_osigset_t *)];
};
struct linux_utimensat_args {
register_t dummy;
char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
char times_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * times; char times_r_[PADR_(const struct l_timespec *)];
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
};
struct linux_signalfd_args {
register_t dummy;
@ -1702,7 +1705,7 @@ int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args
#define LINUX_SYS_AUE_linux_move_pages AUE_NULL
#define LINUX_SYS_AUE_linux_getcpu AUE_NULL
#define LINUX_SYS_AUE_linux_epoll_pwait AUE_NULL
#define LINUX_SYS_AUE_linux_utimensat AUE_NULL
#define LINUX_SYS_AUE_linux_utimensat AUE_FUTIMESAT
#define LINUX_SYS_AUE_linux_signalfd AUE_NULL
#define LINUX_SYS_AUE_linux_timerfd_create AUE_NULL
#define LINUX_SYS_AUE_linux_eventfd AUE_NULL

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283480 2015-05-24 17:57:07Z 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 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283480 2015-05-24 17:57:07Z 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 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/amd64/linux32/syscalls.master 283480 2015-05-24 17:57:07Z dchagin
*/
#include "opt_compat.h"
@ -339,7 +339,7 @@ struct sysent linux_sysent[] = {
{ 0, (sy_call_t *)linux_move_pages, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 317 = linux_move_pages */
{ 0, (sy_call_t *)linux_getcpu, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 318 = linux_getcpu */
{ AS(linux_epoll_pwait_args), (sy_call_t *)linux_epoll_pwait, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 319 = linux_epoll_pwait */
{ 0, (sy_call_t *)linux_utimensat, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 320 = linux_utimensat */
{ AS(linux_utimensat_args), (sy_call_t *)linux_utimensat, AUE_FUTIMESAT, 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 */
{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 323 = linux_eventfd */

View File

@ -2170,7 +2170,12 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_utimensat */
case 320: {
*n_args = 0;
struct linux_utimensat_args *p = params;
iarg[0] = p->dfd; /* l_int */
uarg[1] = (intptr_t) p->pathname; /* const char * */
uarg[2] = (intptr_t) p->times; /* const struct l_timespec * */
iarg[3] = p->flags; /* l_int */
*n_args = 4;
break;
}
/* linux_signalfd */
@ -5584,6 +5589,22 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_utimensat */
case 320:
switch(ndx) {
case 0:
p = "l_int";
break;
case 1:
p = "const char *";
break;
case 2:
p = "const struct l_timespec *";
break;
case 3:
p = "l_int";
break;
default:
break;
};
break;
/* linux_signalfd */
case 321:
@ -6966,6 +6987,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_utimensat */
case 320:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_signalfd */
case 321:
/* linux_timerfd_create */

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283480 2015-05-24 17:57:07Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@ -1070,7 +1070,10 @@ struct linux_epoll_pwait_args {
char mask_l_[PADL_(l_osigset_t *)]; l_osigset_t * mask; char mask_r_[PADR_(l_osigset_t *)];
};
struct linux_utimensat_args {
register_t dummy;
char dfd_l_[PADL_(l_int)]; l_int dfd; char dfd_r_[PADR_(l_int)];
char pathname_l_[PADL_(const char *)]; const char * pathname; char pathname_r_[PADR_(const char *)];
char times_l_[PADL_(const struct l_timespec *)]; const struct l_timespec * times; char times_r_[PADR_(const struct l_timespec *)];
char flags_l_[PADL_(l_int)]; l_int flags; char flags_r_[PADR_(l_int)];
};
struct linux_signalfd_args {
register_t dummy;
@ -1724,7 +1727,7 @@ int linux_process_vm_writev(struct thread *, struct linux_process_vm_writev_args
#define LINUX_SYS_AUE_linux_move_pages AUE_NULL
#define LINUX_SYS_AUE_linux_getcpu AUE_NULL
#define LINUX_SYS_AUE_linux_epoll_pwait AUE_NULL
#define LINUX_SYS_AUE_linux_utimensat AUE_NULL
#define LINUX_SYS_AUE_linux_utimensat AUE_FUTIMESAT
#define LINUX_SYS_AUE_linux_signalfd AUE_NULL
#define LINUX_SYS_AUE_linux_timerfd_create AUE_NULL
#define LINUX_SYS_AUE_linux_eventfd AUE_NULL

View File

@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283480 2015-05-24 17:57:07Z 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 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283480 2015-05-24 17:57:07Z 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 283467 2015-05-24 17:38:02Z dchagin
* created from FreeBSD: head/sys/i386/linux/syscalls.master 283480 2015-05-24 17:57:07Z dchagin
*/
#include <sys/param.h>
@ -338,7 +338,7 @@ struct sysent linux_sysent[] = {
{ 0, (sy_call_t *)linux_move_pages, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 317 = linux_move_pages */
{ 0, (sy_call_t *)linux_getcpu, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 318 = linux_getcpu */
{ AS(linux_epoll_pwait_args), (sy_call_t *)linux_epoll_pwait, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 319 = linux_epoll_pwait */
{ 0, (sy_call_t *)linux_utimensat, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 320 = linux_utimensat */
{ AS(linux_utimensat_args), (sy_call_t *)linux_utimensat, AUE_FUTIMESAT, 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 */
{ AS(linux_eventfd_args), (sy_call_t *)linux_eventfd, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 323 = linux_eventfd */

View File

@ -2246,7 +2246,12 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* linux_utimensat */
case 320: {
*n_args = 0;
struct linux_utimensat_args *p = params;
iarg[0] = p->dfd; /* l_int */
uarg[1] = (intptr_t) p->pathname; /* const char * */
uarg[2] = (intptr_t) p->times; /* const struct l_timespec * */
iarg[3] = p->flags; /* l_int */
*n_args = 4;
break;
}
/* linux_signalfd */
@ -5815,6 +5820,22 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_utimensat */
case 320:
switch(ndx) {
case 0:
p = "l_int";
break;
case 1:
p = "const char *";
break;
case 2:
p = "const struct l_timespec *";
break;
case 3:
p = "l_int";
break;
default:
break;
};
break;
/* linux_signalfd */
case 321:
@ -7244,6 +7265,9 @@ systrace_return_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
break;
/* linux_utimensat */
case 320:
if (ndx == 0 || ndx == 1)
p = "int";
break;
/* linux_signalfd */
case 321:
/* linux_timerfd_create */