From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41343) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1epIOz-000868-ST for qemu-devel@nongnu.org; Fri, 23 Feb 2018 13:49:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1epIOy-0005C2-NH for qemu-devel@nongnu.org; Fri, 23 Feb 2018 13:49:01 -0500 Received: from mail-pl0-x241.google.com ([2607:f8b0:400e:c01::241]:39217) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1epIOy-0005AF-HO for qemu-devel@nongnu.org; Fri, 23 Feb 2018 13:49:00 -0500 Received: by mail-pl0-x241.google.com with SMTP id s13so5378644plq.6 for ; Fri, 23 Feb 2018 10:49:00 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: <20171228180814.9749-1-lukeshu@lukeshu.com> <20171228180814.9749-2-lukeshu@lukeshu.com> From: Peter Maydell Date: Fri, 23 Feb 2018 18:48:39 +0000 Message-ID: Content-Type: text/plain; charset="UTF-8" Subject: Re: [Qemu-devel] [PATCH 01/10] linux-user: Use #if to only call validate_guest_space for 32-bit ARM target List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luke Shumaker Cc: QEMU Developers , Luke Shumaker , Riku Voipio , Laurent Vivier On 23 February 2018 at 18:35, Peter Maydell wrote: > On 28 December 2017 at 18:08, Luke Shumaker wrote: >> From: Luke Shumaker >> >> Instead of defining a bogus validate_guest_space that always returns 1 on >> targets other than 32-bit ARM, use #if blocks to only call it on 32-bit ARM >> targets. This makes the "normal" flow control clearer. >> >> Signed-off-by: Luke Shumaker >> @@ -1845,11 +1835,12 @@ unsigned long init_guest_space(unsigned long host_start, >> /* If just a starting address is given, then just verify that >> * address. */ >> if (host_start && !host_size) { >> +#if defined(TARGET_ARM) && !defined(TARGET_AARCH64) > > I would strongly prefer us not to add new "these targets do > this" ifdefs, please. The current approach means that any > target can say it needs an implementation of this hook by > providing one and defining the TARGET_HAS_VALIDATE_GUEST_SPACE > macro to say so. I think that's a better approach. Looking through some of the rest of this patchset I might change my mind on that (the code in master is very confusing). I won't have time to get to this til Tuesday now, though. thanks -- PMM