svn commit: r246714 - head/sys/ia64/include

Marcel Moolenaar marcel at FreeBSD.org
Tue Feb 12 17:24:42 UTC 2013


Author: marcel
Date: Tue Feb 12 17:24:41 2013
New Revision: 246714
URL: http://svnweb.freebsd.org/changeset/base/246714

Log:
  Eliminate padding by moving 'narg' next to 'code'. Both are 32-bit
  entities in the syscall_args structure that otherwise has 64-bit
  only fields.

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

Modified: head/sys/ia64/include/proc.h
==============================================================================
--- head/sys/ia64/include/proc.h	Tue Feb 12 16:57:20 2013	(r246713)
+++ head/sys/ia64/include/proc.h	Tue Feb 12 17:24:41 2013	(r246714)
@@ -44,10 +44,10 @@ struct mdproc {
 #ifdef _KERNEL
 struct syscall_args {
 	u_int code;
+	int narg;
 	struct sysent *callp;
 	register_t *args;
 	register_t args32[8];
-	int narg;
 };
 #endif
 


More information about the svn-src-all mailing list