From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54369) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ejBZ9-0007go-6z for qemu-devel@nongnu.org; Tue, 06 Feb 2018 17:18:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ejBZ8-0006lh-E6 for qemu-devel@nongnu.org; Tue, 06 Feb 2018 17:18:15 -0500 Date: Tue, 6 Feb 2018 20:18:05 -0200 From: Eduardo Habkost Message-ID: <20180206221805.GC13301@localhost.localdomain> References: <1516694904-64879-1-git-send-email-imammedo@redhat.com> <1516694904-64879-4-git-send-email-imammedo@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1516694904-64879-4-git-send-email-imammedo@redhat.com> Subject: Re: [Qemu-devel] [PATCH v3 03/25] arm: cpu: add CPU_RESOLVING_TYPE macro List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Mammedov Cc: qemu-devel@nongnu.org, Peter Maydell , Andrew Jones , Laurent Vivier , qemu-s390x@nongnu.org, qemu-arm@nongnu.org, qemu-ppc@nongnu.org On Tue, Jan 23, 2018 at 09:08:02AM +0100, Igor Mammedov wrote: > it will be used for providing to cpu name resolving class for > parsing cpu model for system and user emulation code. > > Along with change add target to null-machine test, so > that when switch to CPU_RESOLVING_TYPE happens, > thest would ensure that null-mchine usecase still works. > > Signed-off-by: Igor Mammedov > --- [...] > @@ -4325,8 +4325,6 @@ int main(int argc, char **argv, char **envp) > #else > cpu_model = "qemu32"; > #endif > -#elif defined(TARGET_ARM) > - cpu_model = "any"; I don't see any explanation for this hunk in the commit message. > #elif defined(TARGET_UNICORE32) > cpu_model = "any"; > #elif defined(TARGET_M68K) [...] -- Eduardo