From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HTmKB-00039N-5u for qemu-devel@nongnu.org; Tue, 20 Mar 2007 17:56:59 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HTmK9-000319-My for qemu-devel@nongnu.org; Tue, 20 Mar 2007 17:56:58 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HTmK9-00030J-Je for qemu-devel@nongnu.org; Tue, 20 Mar 2007 16:56:57 -0500 Received: from phoenix.bawue.net ([193.7.176.60] helo=mail.bawue.net) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1HTmIX-0000WT-4K for qemu-devel@nongnu.org; Tue, 20 Mar 2007 17:55:17 -0400 Date: Tue, 20 Mar 2007 21:47:49 +0000 Subject: Re: [Qemu-devel] [PATCH] fcntl64 fix Message-ID: <20070320214749.GE2311@networkno.de> References: <20070319171303.GE28895@networkno.de> <20070320114315.GA26019@localhost.localdomain> <20070320135910.GA18571@localhost.localdomain> <20070320171103.GA20530@localhost.localdomain> <20070320193442.GA11933@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: From: Thiemo Seufer Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stuart Anderson Cc: qemu-devel@nongnu.org Stuart Anderson wrote: [snip] > --- linux-user/syscall_defs.h.orig 2007-02-23 15:44:47.000000000 -0500 > +++ linux-user/syscall_defs.h 2007-02-23 15:44:26.000000000 -0500 > @@ -1414,7 +1414,9 @@ > struct target_eabi_flock64 { > short l_type; > short l_whence; > +#if HOST_LONG_BITS == 32 > int __pad; > +#endif Still, this part makes no sense to me since it is in a packed struct. Can you explain why this works better for you? Thiemo