mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 22:02:58 -04:00
Make powerpc use MAXARGS (defined as 8) instead of hardcoding '10'.
This brings its 'struct syscall_args' in sync with other architectures. Reviewed by: bdragon, jhibbits MFC after: 2 weeks Sponsored by: EPSRC Differential Revision: https://reviews.freebsd.org/D26605
This commit is contained in:
parent
24adaab477
commit
096068b976
1 changed files with 2 additions and 1 deletions
|
|
@ -59,10 +59,11 @@ struct mdproc {
|
|||
#define KINFO_PROC_SIZE 816
|
||||
#endif
|
||||
|
||||
#define MAXARGS 8
|
||||
struct syscall_args {
|
||||
u_int code;
|
||||
struct sysent *callp;
|
||||
register_t args[10];
|
||||
register_t args[MAXARGS];
|
||||
};
|
||||
|
||||
#ifdef _KERNEL
|
||||
|
|
|
|||
Loading…
Reference in a new issue