From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LSzLn-00075B-7L for qemu-devel@nongnu.org; Fri, 30 Jan 2009 14:48:27 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LSzLm-00074J-M9 for qemu-devel@nongnu.org; Fri, 30 Jan 2009 14:48:26 -0500 Received: from [199.232.76.173] (port=48784 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LSzLm-000745-Gw for qemu-devel@nongnu.org; Fri, 30 Jan 2009 14:48:26 -0500 Received: from savannah.gnu.org ([199.232.41.3]:58109 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LSzLm-0003yC-8h for qemu-devel@nongnu.org; Fri, 30 Jan 2009 14:48:26 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1LSzLl-0003XS-Od for qemu-devel@nongnu.org; Fri, 30 Jan 2009 19:48:25 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1LSzLl-0003XJ-Ff for qemu-devel@nongnu.org; Fri, 30 Jan 2009 19:48:25 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Fri, 30 Jan 2009 19:48:25 +0000 Subject: [Qemu-devel] [6482] target-sh4: Fix struct target_stat64 for 64-bit host Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 6482 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6482 Author: aurel32 Date: 2009-01-30 19:48:24 +0000 (Fri, 30 Jan 2009) Log Message: ----------- target-sh4: Fix struct target_stat64 for 64-bit host Signed-off-by: Takashi YOSHII Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/linux-user/syscall_defs.h Modified: trunk/linux-user/syscall_defs.h =================================================================== --- trunk/linux-user/syscall_defs.h 2009-01-30 19:48:17 UTC (rev 6481) +++ trunk/linux-user/syscall_defs.h 2009-01-30 19:48:24 UTC (rev 6482) @@ -1475,7 +1475,7 @@ /* This matches struct stat64 in glibc2.1, hence the absolutely * insane amounts of padding around dev_t's. */ -struct target_stat64 { +struct __attribute__((__packed__)) target_stat64 { unsigned long long st_dev; unsigned char __pad0[4];