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 21495A0471 for ; Wed, 19 Jun 2019 09:21:06 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F14541C22A; Wed, 19 Jun 2019 09:21:05 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 935011C229 for ; Wed, 19 Jun 2019 09:21:03 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Jun 2019 00:21:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,392,1557212400"; d="scan'208";a="168160641" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by FMSMGA003.fm.intel.com with ESMTP; 19 Jun 2019 00:21:02 -0700 Received: from fmsmsx123.amr.corp.intel.com (10.18.125.38) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 19 Jun 2019 00:21:02 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx123.amr.corp.intel.com (10.18.125.38) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 19 Jun 2019 00:21:02 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.87]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.246]) with mapi id 14.03.0439.000; Wed, 19 Jun 2019 15:21:00 +0800 From: "Zhu, ShuaiX" To: "Ma, LihongX" , "dts@dpdk.org" CC: "Ma, LihongX" , "Zhu, ShuaiX" Thread-Topic: [dts] [PATCH V1] tests/ipfrag: add RTE prefix to ipv4 route Thread-Index: AQHVJm0OvO4vPhfQykeOnR1wVjum16aikh9w Date: Wed, 19 Jun 2019 07:20:59 +0000 Message-ID: <4DC48DF9BDA3E54A836D2D3C057DEC6F0B1ABAD9@SHSMSX101.ccr.corp.intel.com> References: <1560901264-19074-1-git-send-email-lihongx.ma@intel.com> In-Reply-To: <1560901264-19074-1-git-send-email-lihongx.ma@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.600.7 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH V1] tests/ipfrag: add RTE prefix to ipv4 route 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" Tested-by: Zhu, ShuaiX > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lihong > Sent: Wednesday, June 19, 2019 7:41 AM > To: dts@dpdk.org > Cc: Ma, LihongX > Subject: [dts] [PATCH V1] tests/ipfrag: add RTE prefix to ipv4 route >=20 > As dpdk commit 24ac604ef7469eb5773 and 0c9da7555da8c8373, add RTE > prefix to ipv4 route struct. >=20 > Signed-off-by: lihong > --- > tests/TestSuite_ipfrag.py | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) >=20 > diff --git a/tests/TestSuite_ipfrag.py b/tests/TestSuite_ipfrag.py index > 38a27e9..a75fff2 100644 > --- a/tests/TestSuite_ipfrag.py > +++ b/tests/TestSuite_ipfrag.py > @@ -42,14 +42,14 @@ from settings import HEADER_SIZE from packet > import Packet >=20 > lpm_table_ipv4 =3D [ > - "{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}", > ] >=20 > lpm_table_ipv6 =3D [ > -- > 2.7.4