linux(4): Regen for prctl fix.

MFC after:		2 weeks
This commit is contained in:
Dmitry Chagin 2022-05-09 21:48:15 +03:00
parent bfae7fbaa2
commit 7b76c79b0b
4 changed files with 6 additions and 6 deletions

View File

@ -537,7 +537,7 @@ struct linux_getresgid16_args {
struct linux_prctl_args {
char option_l_[PADL_(l_int)]; l_int option; char option_r_[PADR_(l_int)];
char arg2_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg2; char arg2_r_[PADR_(l_uintptr_t)];
char arg3_l_[PADL_(l_ulntptr_t)]; l_ulntptr_t arg3; char arg3_r_[PADR_(l_ulntptr_t)];
char arg3_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg3; char arg3_r_[PADR_(l_uintptr_t)];
char arg4_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg4; char arg4_r_[PADR_(l_uintptr_t)];
char arg5_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg5; char arg5_r_[PADR_(l_uintptr_t)];
};

View File

@ -1162,7 +1162,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
struct linux_prctl_args *p = params;
iarg[a++] = p->option; /* l_int */
uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
iarg[a++] = p->arg3; /* l_ulntptr_t */
uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
*n_args = 5;
@ -5034,7 +5034,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
p = "l_uintptr_t";
break;
case 2:
p = "l_ulntptr_t";
p = "l_uintptr_t";
break;
case 3:
p = "l_uintptr_t";

View File

@ -538,7 +538,7 @@ struct linux_getresgid16_args {
struct linux_prctl_args {
char option_l_[PADL_(l_int)]; l_int option; char option_r_[PADR_(l_int)];
char arg2_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg2; char arg2_r_[PADR_(l_uintptr_t)];
char arg3_l_[PADL_(l_ulntptr_t)]; l_ulntptr_t arg3; char arg3_r_[PADR_(l_ulntptr_t)];
char arg3_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg3; char arg3_r_[PADR_(l_uintptr_t)];
char arg4_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg4; char arg4_r_[PADR_(l_uintptr_t)];
char arg5_l_[PADL_(l_uintptr_t)]; l_uintptr_t arg5; char arg5_r_[PADR_(l_uintptr_t)];
};

View File

@ -1205,7 +1205,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
struct linux_prctl_args *p = params;
iarg[a++] = p->option; /* l_int */
uarg[a++] = (intptr_t)p->arg2; /* l_uintptr_t */
iarg[a++] = p->arg3; /* l_ulntptr_t */
uarg[a++] = (intptr_t)p->arg3; /* l_uintptr_t */
uarg[a++] = (intptr_t)p->arg4; /* l_uintptr_t */
uarg[a++] = (intptr_t)p->arg5; /* l_uintptr_t */
*n_args = 5;
@ -5134,7 +5134,7 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
p = "l_uintptr_t";
break;
case 2:
p = "l_ulntptr_t";
p = "l_uintptr_t";
break;
case 3:
p = "l_uintptr_t";