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 50F6CA00C5; Tue, 15 Feb 2022 08:59:51 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CF4AF40E78; Tue, 15 Feb 2022 08:59:50 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 8FB0E40DDA for ; Tue, 15 Feb 2022 08:59:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644911989; x=1676447989; h=from:to:cc:subject:date:message-id:references: in-reply-to:content-transfer-encoding:mime-version; bh=Nhswji/9BXwniKFmboGgAndAMBWMQRWnchb3AFtZoVQ=; b=BddVdd/9tNc7lcRV68yvmvCHDpmehu/G5atRfKAqA5rp7AZ79WS/ZVEU k156AbwyHgEyN1pPMYmw6z036cT75UQUU9Tm5DHMivfoWbwqKxtZpW9BG t+p0QEHSll8LfuZqdGWUjsJ1VSKgLpzrUKdJxsd5w7hrLW5CCk9JuaXLn e9+aCks/aQ4XMSkEwpevGLasXG4odyFuBJh9rNI6Ic8CGHIbyxetkkEBX Me41hZKFqtr+Ub3o/sZPsO2s96ol7+bsF1PiRT662tLOvL4//+r3NIPpB pRd53AokhfKvdX+wxj46uDaevInE+d+SVGIIW8C0r5IZHJlKTHU1Pgyp2 A==; X-IronPort-AV: E=McAfee;i="6200,9189,10258"; a="250480668" X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="250480668" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Feb 2022 23:59:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="680893183" Received: from fmsmsx603.amr.corp.intel.com ([10.18.126.83]) by fmsmga001.fm.intel.com with ESMTP; 14 Feb 2022 23:59:48 -0800 Received: from shsmsx602.ccr.corp.intel.com (10.109.6.142) by fmsmsx603.amr.corp.intel.com (10.18.126.83) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Mon, 14 Feb 2022 23:59:47 -0800 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX602.ccr.corp.intel.com (10.109.6.142) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.20; Tue, 15 Feb 2022 15:59:45 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.2308.020; Tue, 15 Feb 2022 15:59:45 +0800 From: "Zhang, Qi Z" To: "Huang, ZhiminX" , "Nicolau, Radu" , "Wu, Jingjing" , "Xing, Beilei" CC: "dev@dpdk.org" , "Jiang, YuX" , "Nicolau, Radu" Subject: RE: [PATCH] net/iavf: fix segmentation offload buffer size Thread-Topic: [PATCH] net/iavf: fix segmentation offload buffer size Thread-Index: AQHYHn97suf9h9/JuEG3mGA5UDRQMayTpBcAgACi2EA= Date: Tue, 15 Feb 2022 07:59:45 +0000 Message-ID: <47a389beb856460faec4faf62222c9e2@intel.com> References: <20220210130923.1442905-1-radu.nicolau@intel.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.6.200.16 dlp-product: dlpe-windows x-originating-ip: [10.239.127.36] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 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 > -----Original Message----- > From: Huang, ZhiminX > Sent: Tuesday, February 15, 2022 2:17 PM > To: Nicolau, Radu ; Wu, Jingjing > ; Xing, Beilei > Cc: dev@dpdk.org; Jiang, YuX ; Nicolau, Radu > > Subject: RE: [PATCH] net/iavf: fix segmentation offload buffer size >=20 > > -----Original Message----- > > From: Radu Nicolau > > Sent: Thursday, February 10, 2022 9:09 PM > > To: Wu, Jingjing ; Xing, Beilei > > > > Cc: dev@dpdk.org; Jiang, YuX ; Nicolau, Radu > > > > Subject: [PATCH] net/iavf: fix segmentation offload buffer size > > > > This reverts commit ff8b8bcd2ebe, which resulted in incorrect buffer > > size being computed for TSO packets. > > > > Fixes: ff8b8bcd2ebe ("net/iavf: fix segmentation offload condition") > > > > Signed-off-by: Radu Nicolau > > --- > > drivers/net/iavf/iavf_rxtx.c | 7 ++++--- > > 1 file changed, 4 insertions(+), 3 deletions(-) > > > Tested-by: Zhimin Huang Applied to dpdk-next-net-intel. Thanks Qi >=20 >=20