From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 8D6C4A045E for ; Thu, 30 May 2019 06:39:34 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4280D2C0C; Thu, 30 May 2019 06:39:34 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id AC3071B05 for ; Thu, 30 May 2019 06:39:32 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 May 2019 21:39:31 -0700 X-ExtLoop1: 1 Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by orsmga002.jf.intel.com with ESMTP; 29 May 2019 21:39:30 -0700 From: Wenjie Li To: dts@dpdk.org Cc: "Wenjie Li" Date: Thu, 30 May 2019 12:43:52 +0800 Message-Id: <1559191432-117013-1-git-send-email-wenjiex.a.li@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/ipfrag: align the change in DPDK 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: "Wenjie Li" align changes in dpdk a7c528e5d71ff3f56: " net: add rte prefix to IP structure Add 'rte_' prefix to structures: - rename struct ipv4_hdr as struct rte_ipv4_hdr. - rename struct ipv6_hdr as struct rte_ipv6_hdr. " Signed-off-by: Wenjie Li --- tests/TestSuite_ipfrag.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/TestSuite_ipfrag.py b/tests/TestSuite_ipfrag.py index 38a27e9..c148d2a 100644 --- a/tests/TestSuite_ipfrag.py +++ b/tests/TestSuite_ipfrag.py @@ -42,14 +42,14 @@ from settings import HEADER_SIZE from packet import Packet lpm_table_ipv4 = [ - "{IPv4(100,10,0,0), 16, P1}", - "{IPv4(100,20,0,0), 16, P1}", - "{IPv4(100,30,0,0), 16, P0}", - "{IPv4(100,40,0,0), 16, P0}", - "{IPv4(100,50,0,0), 16, P1}", - "{IPv4(100,60,0,0), 16, P1}", - "{IPv4(100,70,0,0), 16, P0}", - "{IPv4(100,80,0,0), 16, P0}", + "{RTE_IPv4(100,10,0,0), 16, P1}", + "{RTE_IPv4(100,20,0,0), 16, P1}", + "{RTE_IPv4(100,30,0,0), 16, P0}", + "{RTE_IPv4(100,40,0,0), 16, P0}", + "{RTE_IPv4(100,50,0,0), 16, P1}", + "{RTE_IPv4(100,60,0,0), 16, P1}", + "{RTE_IPv4(100,70,0,0), 16, P0}", + "{RTE_IPv4(100,80,0,0), 16, P0}", ] lpm_table_ipv6 = [ -- 2.17.2