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 5D62F44079; Mon, 20 May 2024 19:56:29 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D76084068A; Mon, 20 May 2024 19:56:28 +0200 (CEST) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mails.dpdk.org (Postfix) with ESMTP id 7EF5E400EF for ; Mon, 20 May 2024 19:56:27 +0200 (CEST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id E1284DA7; Mon, 20 May 2024 10:56:50 -0700 (PDT) Received: from [10.57.67.203] (unknown [10.57.67.203]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id D80083F641; Mon, 20 May 2024 10:56:24 -0700 (PDT) Message-ID: Date: Mon, 20 May 2024 18:56:22 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v1 4/4] dts: add test case that utilizes offload to pmd_buffer_scatter Content-Language: en-GB To: jspewock@iol.unh.edu, yoan.picchi@foss.arm.com, Honnappa.Nagarahalli@arm.com, paul.szczepanek@arm.com, juraj.linkes@pantheon.tech, probb@iol.unh.edu, wathsala.vithanage@arm.com, thomas@monjalon.net Cc: dev@dpdk.org References: <20240514201436.2496-1-jspewock@iol.unh.edu> <20240514201436.2496-5-jspewock@iol.unh.edu> From: Luca Vizzarro In-Reply-To: <20240514201436.2496-5-jspewock@iol.unh.edu> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On 14/05/2024 21:14, jspewock@iol.unh.edu wrote: > + # adjust the MTU of the SUT ports > + testpmd.set_port_mtu(0, 9000) > + testpmd.set_port_mtu(1, 9000) should you perhaps do this for every port in the testpmd shell instead? for port_id in range(testpmd.number_of_ports): testpmd.set_port_mtu(port_id, 9000) > testpmd.stop() > + # reset the MTU of the SUT ports > + testpmd.set_port_mtu(0, 1500) > + testpmd.set_port_mtu(1, 1500) As above