From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 86B5CA046B for ; Thu, 27 Jun 2019 11:03:03 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 380901E20; Thu, 27 Jun 2019 11:03:03 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id C7F3AF64 for ; Thu, 27 Jun 2019 11:03:01 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x5R8xCfL024555 for ; Thu, 27 Jun 2019 02:03:01 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-type; s=pfpt0818; bh=OlimV0cDSgQedz8ZQXFWGbVjpuBiDk4Ij/rJ0y5b390=; b=hTVip9se80GDzbMRpsFdJ8SfKmp8O3zRveCVq1pKu3YLfxGzWBj2Ey4bc88BfgBSfI2C zL4jNOIugnAO070plbV5SJ55KseStiiqPeOJHt72ifRJ/WN+Ik0ViHxEcfXj22115bIT 2DhkYwMzcZNKjZvM2QgU16W36T9vYPJlBbzxMAkDz6Q4ezM9QFAacyDDfTVJC2GfKXMP leMOBiOgm6R7Dw6aYi36csU+H28Hp4EiWW3JpRKFMl4xwJn6n/QsA0v3CGZFLfuHsVzh CGTr0LKl/FAM8dORWMq+Qypuca2NJaCdL3gDAUWfqmlxdruf/kSlpTrcAGrdlMAqta78 7A== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0b-0016f401.pphosted.com with ESMTP id 2tcbgcbm4e-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 27 Jun 2019 02:03:00 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 27 Jun 2019 02:02:59 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 27 Jun 2019 02:02:59 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id 2752B3F7040; Thu, 27 Jun 2019 02:02:57 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Thu, 27 Jun 2019 14:32:54 +0530 Message-ID: <1561626174-29015-1-git-send-email-pvukkisala@marvell.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-06-27_04:, , signatures=0 Subject: [dts] [PATCH] qemu-kvm: Fix failing to start VM with machine parameter X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" From: Phanendra Vukkisala Signed-off-by: Phanendra Vukkisala --- framework/qemu_kvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/qemu_kvm.py b/framework/qemu_kvm.py index 8408795..cf1f7e7 100644 --- a/framework/qemu_kvm.py +++ b/framework/qemu_kvm.py @@ -303,7 +303,7 @@ class QEMUKvm(VirtBase): separator = ',' if 'machine' in options.keys() and \ options['machine']: - machine_boot_line += '%s' % options['machine'] + machine_boot_line += ' %s' % options['machine'] if 'opt_gic_version' in options.keys() and \ options['opt_gic_version']: machine_boot_line += separator + 'gic_version=%s' % options['opt_gic_version'] -- 1.7.9.5