From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54816) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TF42u-0000F4-TL for qemu-devel@nongnu.org; Fri, 21 Sep 2012 10:17:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TF42p-0002ht-1R for qemu-devel@nongnu.org; Fri, 21 Sep 2012 10:17:32 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:46130) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TF42o-0002gn-RJ for qemu-devel@nongnu.org; Fri, 21 Sep 2012 10:17:26 -0400 Received: by mail-pb0-f45.google.com with SMTP id rp12so7780302pbb.4 for ; Fri, 21 Sep 2012 07:17:26 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Fri, 21 Sep 2012 07:17:13 -0700 Message-Id: <1348237034-15851-6-git-send-email-rth@twiddle.net> In-Reply-To: <1348237034-15851-1-git-send-email-rth@twiddle.net> References: <1348237034-15851-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH 5/6] target-alpha: Fix cpu_alpha_init List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio The cpu_model string must be stored for use during clone. Signed-off-by: Richard Henderson --- target-alpha/translate.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target-alpha/translate.c b/target-alpha/translate.c index 12de6a3..93063fb 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -3549,6 +3549,7 @@ CPUAlphaState * cpu_alpha_init (const char *cpu_model) } env->implver = implver; env->amask = amask; + env->cpu_model_str = cpu_model; qemu_init_vcpu(env); return env; -- 1.7.11.4