From owner-svn-src-head@FreeBSD.ORG Tue Feb 12 17:24:42 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 833D9E6D; Tue, 12 Feb 2013 17:24:42 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 69EB6328; Tue, 12 Feb 2013 17:24:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1CHOgGB016766; Tue, 12 Feb 2013 17:24:42 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1CHOgAh016765; Tue, 12 Feb 2013 17:24:42 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201302121724.r1CHOgAh016765@svn.freebsd.org> From: Marcel Moolenaar Date: Tue, 12 Feb 2013 17:24:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r246714 - head/sys/ia64/include X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Feb 2013 17:24:42 -0000 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