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 06F36A0C4B; Fri, 22 Oct 2021 08:14:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EFE8841147; Fri, 22 Oct 2021 08:14:25 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 5923240040 for ; Fri, 22 Oct 2021 08:14:24 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10144"; a="227999117" X-IronPort-AV: E=Sophos;i="5.87,171,1631602800"; d="scan'208";a="227999117" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Oct 2021 23:14:17 -0700 X-IronPort-AV: E=Sophos;i="5.87,171,1631602800"; d="scan'208";a="633103187" Received: from unknown (HELO localhost.localdomain) ([10.240.183.103]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Oct 2021 23:14:16 -0700 From: Zou Ping To: dts@dpdk.org Cc: Zou Ping Date: Fri, 22 Oct 2021 22:44:40 +0800 Message-Id: <20211022144440.10099-2-pingx.zou@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20211022144440.10099-1-pingx.zou@intel.com> References: <20211022144440.10099-1-pingx.zou@intel.com> Subject: [dts] [PATCH V1 2/2] test_plans/rteflow_priority: modify the priority of switch and fdir 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 Sender: "dts" the priority of switch and fdir changed,modified influenced rules. Signed-off-by: Zou Ping --- test_plans/rteflow_priority_test_plan.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_plans/rteflow_priority_test_plan.rst b/test_plans/rteflow_priority_test_plan.rst index b1815ce7..8ed5c971 100644 --- a/test_plans/rteflow_priority_test_plan.rst +++ b/test_plans/rteflow_priority_test_plan.rst @@ -77,14 +77,14 @@ Patterns in this case: #. Create a rule with priority 0, Check the flow can be created but it will map to fdir filter:: - testpmd> flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end + testpmd> flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end ice_interrupt_handler(): OICR: MDD event ice_flow_create(): Succeeded to create (1) flow Flow rule #0 created #. Create a rule with priority 1, check the flow can not be created for the vallue of priority is 0 in non-pipeline mode:: - testpmd> flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end + testpmd> flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end ice_flow_create(): Failed to create flow Caught error type 4 (priority field): cause: 0x7ffe24e65738, Not support priority.: Invalid argument @@ -96,14 +96,14 @@ Patterns in this case: #. Create a rule with priority 0, Check the flow can be created but it will map to fdir filter:: - testpmd> flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end + testpmd> flow create 0 priority 0 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end ice_interrupt_handler(): OICR: MDD event ice_flow_create(): Succeeded to create (1) flow Flow rule #0 created #. Create a rule with priority 1, check the flow can not be created for the vallue of priority is 0 in non-pipeline mode:: - testpmd> flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / end + testpmd> flow create 0 priority 1 ingress pattern eth / ipv4 src is 192.168.0.2 dst is 192.168.0.3 tos is 4 / end actions queue index 2 / mark / end ice_flow_create(): Failed to create flow Caught error type 4 (priority field): cause: 0x7ffe24e65738, Not support priority.: Invalid argument -- 2.17.1