Author: trasz
Date: Fri Nov  6 19:27:27 2020
New Revision: 367430
URL: https://svnweb.freebsd.org/changeset/base/367430

Log:
  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

Modified:
  head/sys/powerpc/include/proc.h

Modified: head/sys/powerpc/include/proc.h
==============================================================================
--- head/sys/powerpc/include/proc.h     Fri Nov  6 19:19:51 2020        
(r367429)
+++ head/sys/powerpc/include/proc.h     Fri Nov  6 19:27:27 2020        
(r367430)
@@ -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
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to