From patchwork Fri Sep 21 14:17:13 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 185745 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B199A2C0085 for ; Sat, 22 Sep 2012 00:18:43 +1000 (EST) Received: from localhost ([::1]:49895 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TF441-0002Kk-NF for incoming@patchwork.ozlabs.org; Fri, 21 Sep 2012 10:18:41 -0400 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=GlJP7AuiviYN+5dFCOuLyIAwfQrS8B/ftoUQKLhT/2g=; b=W/+1RLH0yJr2U5mbhl0BhUzk14x8oVq6lUohmSl7jOU0CJDb5dhmwR1pLQ0wO/sA/f X/h6YuP319HGh6YaImHokxMGrkGSZ0gnfDAWdcXCDswJygvDPQcKN7pk7GmeofpZpGMQ EPk24bg0PTukjbK49ov1dFrPyYSSwdz9ku7hY9mzU9OGfGn7DPkmUzFZClyxDAYx8sMN 2DVb4AeRsJUUBLxBKwB5FvPxKm6RwhjhqU2WIpiS+CxJaeLfTMvgGN4kcZX0Ux/zeUUE GKIkjhjNHWCQpQWkkgkA0sc2slz7t9hXL8oTmy0Xpvvyn9Opw1qU5ASnlRnPtDfVnD/D tjQQ== Received: by 10.68.193.196 with SMTP id hq4mr16382841pbc.32.1348237046515; Fri, 21 Sep 2012 07:17:26 -0700 (PDT) Received: from anchor.twiddle.home.com ([173.160.232.49]) by mx.google.com with ESMTPS id vf8sm5204020pbc.27.2012.09.21.07.17.25 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 21 Sep 2012 07:17:26 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Fri, 21 Sep 2012 07:17:13 -0700 Message-Id: <1348237034-15851-6-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.11.4 In-Reply-To: <1348237034-15851-1-git-send-email-rth@twiddle.net> References: <1348237034-15851-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.45 Cc: Riku Voipio Subject: [Qemu-devel] [PATCH 5/6] target-alpha: Fix cpu_alpha_init X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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;