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 C3D71A055A; Thu, 27 Feb 2020 10:52:14 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B949F1BFC8; Thu, 27 Feb 2020 10:52:14 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 1A9412C02 for ; Thu, 27 Feb 2020 10:52:12 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Feb 2020 01:52:12 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,491,1574150400"; d="scan'208";a="317731010" Received: from unknown (HELO dpdk-xiaoqimai-dut.sh.intel.com) ([10.240.179.33]) by orsmga001.jf.intel.com with ESMTP; 27 Feb 2020 01:52:11 -0800 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Thu, 27 Feb 2020 17:48:00 +0800 Message-Id: <1582796880-27905-2-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1582796880-27905-1-git-send-email-qimaix.xiao@intel.com> References: <1582796880-27905-1-git-send-email-qimaix.xiao@intel.com> Subject: [dts] [PATCH V1 2/2] add new config file for vhost_event_idx_interrupt 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" Signed-off-by: Xiao Qimai --- conf/vhost_event_idx_interrupt.cfg | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 conf/vhost_event_idx_interrupt.cfg diff --git a/conf/vhost_event_idx_interrupt.cfg b/conf/vhost_event_idx_interrupt.cfg new file mode 100644 index 0000000..39a5f11 --- /dev/null +++ b/conf/vhost_event_idx_interrupt.cfg @@ -0,0 +1,36 @@ +[vm0] +cpu = + model=host,number=8,cpupin=52 53 54 55; +mem = + size=4096,hugepage=yes; +disk = + file=/home/image/ubuntu1910.img; +login = + user=root,password=tester; +vnc = + displayNum=4; +net = + type=user,opt_vlan=2; + type=nic,opt_vlan=2; +daemon = + enable=yes; +qemu = + path=/usr/local/qemu-2.12.0/bin/qemu-system-x86_64; +[vm1] +cpu = + model=host,number=8,cpupin=56 57 58 59; +mem = + size=4096,hugepage=yes; +disk = + file=/home/image/ubuntu1910_2.img; +login = + user=root,password=tester; +net = + type=nic,opt_vlan=3; + type=user,opt_vlan=3; +vnc = + displayNum=5; +daemon = + enable=yes; +qemu = + path=/usr/local/qemu-2.12.0/bin/qemu-system-x86_64; -- 1.8.3.1