From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41331) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1euLCy-0001Jx-Ti for qemu-devel@nongnu.org; Fri, 09 Mar 2018 11:49:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1euLCu-0003Sf-Ts for qemu-devel@nongnu.org; Fri, 09 Mar 2018 11:49:28 -0500 Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= References: <20180308130626.12393-1-peter.maydell@linaro.org> <20180308130626.12393-6-peter.maydell@linaro.org> From: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= Message-ID: <1de4234e-fa02-fc82-4057-f1be7b11d2e5@amsat.org> Date: Fri, 9 Mar 2018 17:49:21 +0100 MIME-Version: 1.0 In-Reply-To: <20180308130626.12393-6-peter.maydell@linaro.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v3 5/6] hw/arm/virt: Add "max" to the list of CPU types "virt" supports List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , qemu-arm@nongnu.org, qemu-devel@nongnu.org Cc: patches@linaro.org, Igor Mammedov , =?UTF-8?Q?Alex_Benn=c3=a9e?= On 03/08/2018 02:06 PM, Peter Maydell wrote: > Allow the virt board to support '-cpu max' in the same way > it already handles '-cpu host'. > > Signed-off-by: Peter Maydell Reviewed-by: Philippe Mathieu-Daudé > --- > hw/arm/virt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/hw/arm/virt.c b/hw/arm/virt.c > index dbb3c8036a..cda4b83586 100644 > --- a/hw/arm/virt.c > +++ b/hw/arm/virt.c > @@ -169,6 +169,7 @@ static const char *valid_cpus[] = { > ARM_CPU_TYPE_NAME("cortex-a53"), > ARM_CPU_TYPE_NAME("cortex-a57"), > ARM_CPU_TYPE_NAME("host"), > + ARM_CPU_TYPE_NAME("max"), > }; > > static bool cpu_type_valid(const char *cpu) >