From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e4567-0000aI-Hc for qemu-devel@nongnu.org; Mon, 16 Oct 2017 09:06:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e4562-0004kb-0o for qemu-devel@nongnu.org; Mon, 16 Oct 2017 09:06:23 -0400 Received: from jessie.kos.to ([212.47.231.226]:52512 helo=pilvi.kos.to) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1e4561-0004k2-QX for qemu-devel@nongnu.org; Mon, 16 Oct 2017 09:06:17 -0400 Date: Mon, 16 Oct 2017 13:06:16 +0000 From: Riku Voipio Message-ID: <20171016130616.GF1918@kos.to> References: <1507822245-15748-1-git-send-email-peter.maydell@linaro.org> <1507822245-15748-3-git-send-email-peter.maydell@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 2/2] linux-user: Fix TARGET_MTIOCTOP/MTIOCGET/MTIOCPOS values List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Laurent Vivier Cc: Peter Maydell , QEMU Developers , pgndev On Thu, Oct 12, 2017 at 07:08:55PM +0200, Laurent Vivier wrote: > Le 12/10/2017 =C3=A0 18:53, Peter Maydell a =C3=A9crit=C2=A0: > > On 12 October 2017 at 17:49, Laurent Vivier wrote= : > >> Le 12/10/2017 =C3=A0 17:30, Peter Maydell a =C3=A9crit : > >>> +#if defined(TARGET_SPARC) || defined(TARGET_MIPS) > >>> +typedef abi_long target_kernel_daddr_t; > >>> +#else > >>> +typedef abi_int target_kernel_daddr_t; > >>> +#endif > >> > >> Perhaps you can add these ones into include/exec/user/abitypes.h ? > >=20 > > I don't think they belong there -- that file is for basic > > CPU ABI dependent types, not things which are just part of > > the kernel interface. > I agree So we should go with the patch as-is? Riku