From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A56F042996; Thu, 20 Apr 2023 10:16:12 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5CD3942B71; Thu, 20 Apr 2023 10:16:12 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 1B00E40687 for ; Thu, 20 Apr 2023 10:16:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1681978571; x=1713514571; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=slbY53APZYf8Ic+xMcZTmnNV2ZTGJHO6XWi/rYVM2wM=; b=HVH4XEu80otlZiVJz7qV+bHdq9VVpazjdcWMPPLQX19PQB7Q9D8Dff6A 0gAuD2CqmNPwBnOxZWQ9VVBnq1FI//zEqg5pvlR5ErCNg9sj23Nq31uAn x+1Y33MPAcHpMolvvMbGCD3VG1J65+CGa+PLOcGpMZhInX9reBQ0aUYpM Tfy95lu1qr11EA1Ita3LW4gN6idb4cm8ZAVZInzA+ZoMe7S00efraQpzw IJtaTJp2KT2WfxYSCIyHp5ngj4fDvrU0FpGMxeOb14DGUUs9qP90zlaF0 ZLKJf9Ivo0QhXXI+N3Gm41b4NWbpe0rfStYMCvGNQDKpbYuhWSEvjyYYy Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10685"; a="325998505" X-IronPort-AV: E=Sophos;i="5.99,212,1677571200"; d="scan'208";a="325998505" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Apr 2023 01:16:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10685"; a="642061687" X-IronPort-AV: E=Sophos;i="5.99,212,1677571200"; d="scan'208";a="642061687" Received: from unknown (HELO localhost.localdomain) ([10.239.252.99]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Apr 2023 01:15:58 -0700 From: Lingli Chen To: dts@dpdk.org Cc: zhiminx.huang@intel.com, Lingli Chen Subject: [dts][PATCH V1 1/5] test_plans/vf_macfilter: change "igb_uio" to "vfio-pci" in kernel pf cases Date: Thu, 20 Apr 2023 03:05:02 -0400 Message-Id: <20230420070506.10015-2-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20230420070506.10015-1-linglix.chen@intel.com> References: <20230420070506.10015-1-linglix.chen@intel.com> X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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 change "igb_uio" to "vfio-pci" in kernel pf cases in the testplan Signed-off-by: Lingli Chen --- test_plans/vf_macfilter_test_plan.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_plans/vf_macfilter_test_plan.rst b/test_plans/vf_macfilter_test_plan.rst index 583d4cae..bcb0ee6a 100644 --- a/test_plans/vf_macfilter_test_plan.rst +++ b/test_plans/vf_macfilter_test_plan.rst @@ -66,10 +66,10 @@ Test Case 1: test_kernel_2pf_2vf_1vm_iplink_macfilter -device pci-assign,host=81:0a.0,id=pt_1 5. Login vm0, got VFs pci device id in vm0, assume they are 00:06.0 & 00:07.0, - bind them to igb_uio driver, and then start testpmd, enable CRC strip, + bind them to vfio-pci driver, and then start testpmd, enable CRC strip, disable promisc mode,set it in mac forward mode:: - ./usertools/dpdk-devbind.py --bind=igb_uio 00:06.0 00:07.0 + ./usertools/dpdk-devbind.py --bind=vfio-pci 00:06.0 00:07.0 if test IAVF, start up VF port:: @@ -155,10 +155,10 @@ Test Case 2: test_kernel_2pf_2vf_1vm_mac_add_filter -device pci-assign,host=81:0a.0,id=pt_1 5. login vm0, got VFs pci device id in vm0, assume they are 00:06.0 & 00:07.0, - bind them to igb_uio driver, and then start testpmd, enable CRC strip on + bind them to vfio-pci driver, and then start testpmd, enable CRC strip on VF, disable promisc mode, add a new MAC to VF0 and then start:: - ./usertools/dpdk-devbind.py --bind=igb_uio 00:06.0 00:07.0 + ./usertools/dpdk-devbind.py --bind=vfio-pci 00:06.0 00:07.0 if test IAVF, start up VF port:: -- 2.17.1