From nobody Mon May 6 12:24:15 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=intel.com ARC-Seal: i=1; a=rsa-sha256; t=1562943036; cv=none; d=zoho.com; s=zohoarc; b=b244uUHtz4Ssn1jCvz52WK/coqpiZLjb+7zKBH+ttItAXbscEYgj/WT38KJCs8hwD6AA0w4518gf+zhxqNrmD0esfDtcmBwwSxNw8oHw0CNYVHcN6kVhmq4O5j5grIGElStXbhQM815N9lrs1WthuiPIfUf/E87JD0UEWa5RDQs= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1562943036; h=Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=HRige+O3RfBNmVYId495CvhdPqq6oytW14SWyMV55J4=; b=FiIaQ+QPgwA6fkTXVCz3Q+J98/Vli/uw93x2vLZf9S0JX5uxwG+tbWysGEfSUPUidTrgkUmlTjTSrlFHWDBtbFP9TLQKHQHhqAUWYLBH2Gizfa7YMyje0IDLXDb3tYbcQ9v450ZXQ6TiOg7Qg3eY0G2DZ6PRq8B4qqnfA3mmw/Y= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1562943036404911.5789082486832; Fri, 12 Jul 2019 07:50:36 -0700 (PDT) Received: from localhost ([::1]:50232 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlwsd-0003cL-24 for importer@patchew.org; Fri, 12 Jul 2019 10:50:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50361) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlwsQ-0003Cb-Rs for qemu-devel@nongnu.org; Fri, 12 Jul 2019 10:50:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlwsP-0006g5-UF for qemu-devel@nongnu.org; Fri, 12 Jul 2019 10:50:22 -0400 Received: from mga11.intel.com ([192.55.52.93]:19585) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hlwsP-0006dU-Lk for qemu-devel@nongnu.org; Fri, 12 Jul 2019 10:50:21 -0400 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Jul 2019 07:50:18 -0700 Received: from unknown (HELO fedora.zpn.intel.com.) ([10.219.4.39]) by fmsmga001.fm.intel.com with ESMTP; 12 Jul 2019 07:50:17 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,482,1557212400"; d="scan'208";a="186615576" From: Julio Montes To: qemu-devel@nongnu.org Date: Fri, 12 Jul 2019 14:50:17 +0000 Message-Id: <20190712145017.17879-1-julio.montes@intel.com> X-Mailer: git-send-email 2.17.2 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 192.55.52.93 Subject: [Qemu-devel] [PATCH] hw/i386: turn off vmport if CONFIG_VMPORT is disabled X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Julio Montes , pbonzini@redhat.com, philmd@redhat.com Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" vmport device is not included when CONFIG_VMPORT is disabled, hence QEMU fails with the following error: `Unknown device 'vmport' for bus 'ISA': unknown.` Signed-off-by: Julio Montes --- hw/i386/pc.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hw/i386/pc.c b/hw/i386/pc.c index c33ce47578..549c437050 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -83,6 +83,7 @@ #include "hw/mem/memory-device.h" #include "sysemu/replay.h" #include "qapi/qmp/qerror.h" +#include "config-devices.h" =20 /* debug PC/ISA interrupts */ //#define DEBUG_IRQ @@ -2793,7 +2794,11 @@ static void pc_machine_initfn(Object *obj) =20 pcms->max_ram_below_4g =3D 0; /* use default */ pcms->smm =3D ON_OFF_AUTO_AUTO; +#ifdef CONFIG_VMPORT pcms->vmport =3D ON_OFF_AUTO_AUTO; +#else + pcms->vmport =3D ON_OFF_AUTO_OFF; +#endif /* CONFIG_VMPORT */ /* acpi build is enabled by default if machine supports it */ pcms->acpi_build_enabled =3D PC_MACHINE_GET_CLASS(pcms)->has_acpi_buil= d; pcms->smbus_enabled =3D true; --=20 2.17.2