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 0E5BB42397; Mon, 20 Mar 2023 09:16:58 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0A234410F3; Mon, 20 Mar 2023 09:16:58 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id E39C9406BC for ; Mon, 20 Mar 2023 09:16:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1679300216; x=1710836216; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=cPkO+dCPmJL6+7zMqHka8Qr6ERZ45VXuJ9d0s49PLWM=; b=WvDtDe/OEy5hvqQOP9qaKWsEOu5Dttq1n0oOs0NH/dhDD613+BV61W99 0uTH3/7BDz3WgM4LVwbZ0XEKraCeP+PEfXsq8OQjVKW49QzddWIP39x4k +On5oc18DnzY9vMRNAZSW20QPyGNGwcup2X9Ug33IUaQbS9iBgGut5Qkn rjJ7oLpveUlS3RcA2Af+uhA1x7pdrY6lvSssaVGSto155BkihXP2cXWhM mXiQxoNd0zjjiamVb8YrZglE09GHUpl/YKJgcTupNtCF4Jk88PpEcLd/R BZavbrK4VIZQOmsXI1xNmhgO8hX4mg3Uw3AyeHHMGn0QAjFvKeB84OCWm w==; X-IronPort-AV: E=McAfee;i="6600,9927,10654"; a="337318662" X-IronPort-AV: E=Sophos;i="5.98,274,1673942400"; d="scan'208";a="337318662" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Mar 2023 01:16:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10654"; a="711250329" X-IronPort-AV: E=Sophos;i="5.98,274,1673942400"; d="scan'208";a="711250329" Received: from unknown (HELO localhost.localdomain) ([10.239.252.20]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Mar 2023 01:16:53 -0700 From: Song Jiale To: dts@dpdk.org Cc: Song Jiale Subject: [dts] [PATCH V1 1/2] test_plans/ipv4_reassembly: modify script to adapt changes in dpdk Date: Mon, 20 Mar 2023 16:13:33 +0000 Message-Id: <20230320161334.3300860-2-songx.jiale@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230320161334.3300860-1-songx.jiale@intel.com> References: <20230320161334.3300860-1-songx.jiale@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 DPDK increase default value for config parameter RTE_LIBRTE_IP_FRAG_MAX_FRAG from 4 to 8. Modify the script to adapt to this change. According to dpdk commit f8e0f8ce90303b("ip_frag: increase default maximum of fragments"). Signed-off-by: Song Jiale --- test_plans/ipv4_reassembly_test_plan.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test_plans/ipv4_reassembly_test_plan.rst b/test_plans/ipv4_reassembly_test_plan.rst index 7f721123..43d18590 100644 --- a/test_plans/ipv4_reassembly_test_plan.rst +++ b/test_plans/ipv4_reassembly_test_plan.rst @@ -153,12 +153,11 @@ Sample command:: .//examples/dpdk-ip_reassembly -c 0x2 -n 4 -- \ -P -p 0x2 --config "(1,0,1)" --maxflows=1024 --flowttl=10s -Sends 1 packet split in 5 fragments while the maximum number of supported -fragments per packet is 4. +Sends 1 frame split in into maximum fragments + 1 fragment, the packet can't be forwarded back. It expects: - - 5 IP packets to be sent to the DUT. + - (maximum fragments + 1 fragment) IP packets to be sent to the DUT. - 0 TCP packets being forwarded back to the TESTER. - 0 packets with a valid TCP checksum. -- 2.25.1