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 F0318A0527; Wed, 25 Nov 2020 07:35:02 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E79B8C968; Wed, 25 Nov 2020 07:35:01 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 1353BC968 for ; Wed, 25 Nov 2020 07:34:59 +0100 (CET) IronPort-SDR: JfsV6IoJyNElN3zwKbG6mrhnLxxi9fSZWGFEfgJgtPnG2J0A3ue/pqhtvRfmcIF4r8WvmjKusG YCxXPcwOltGA== X-IronPort-AV: E=McAfee;i="6000,8403,9815"; a="171296912" X-IronPort-AV: E=Sophos;i="5.78,368,1599548400"; d="scan'208";a="171296912" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Nov 2020 22:34:59 -0800 IronPort-SDR: 8AdwzRqUHgKyry/63EKAY0vqPW+SOTBB/GCnOKctEZJk2zE9qlzqa3WTtTqp+Vy1XOgZ4uBbEM usLynyEn0Oww== X-IronPort-AV: E=Sophos;i="5.78,368,1599548400"; d="scan'208";a="312844614" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Nov 2020 22:34:58 -0800 From: lingwei To: dts@dpdk.org Cc: lingwei Date: Wed, 25 Nov 2020 22:29:29 +0800 Message-Id: <20201125142930.77045-5-weix.ling@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20201125142930.77045-1-weix.ling@intel.com> References: <20201125142930.77045-1-weix.ling@intel.com> Subject: [dts] [PATCH V2 4/5] tests/vf_single_core_perf:support columbiaville_25gx2 nic 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" support columbiaville_25gx2 nic Signed-off-by: lingwei --- tests/TestSuite_vf_single_core_perf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vf_single_core_perf.py b/tests/TestSuite_vf_single_core_perf.py index 47550bf8..05974eac 100644 --- a/tests/TestSuite_vf_single_core_perf.py +++ b/tests/TestSuite_vf_single_core_perf.py @@ -249,7 +249,7 @@ class TestVfSingleCorePerf(TestCase): if self.nic in ["fortville_25g", "fortville_spirit"] or thread_num == 2: param += " --rxq=2 --txq=2" # columbiaville use one queue per port for best performance. - elif self.nic in ["columbiaville_100g", "columbiaville_25g"]: + elif self.nic in ["columbiaville_100g", "columbiaville_25g", "columbiaville_25gx2"]: param += " --rxq=1 --txq=1" # workaround for that testpmd can't forward packets in io forward mode param += " --port-topology=loop" -- 2.17.1