From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 8BDB92986 for ; Fri, 5 May 2017 17:44:27 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 1D9B620896; Fri, 5 May 2017 11:44:27 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 05 May 2017 11:44:27 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=DiY56VczsIDn9ex qPpX/bk+qXnQ/+ABB3ujXDeSCnVY=; b=gpwUzbo0SIA2gMPgtJJWEBAiO/5YRd4 yEEg/Cs6aiMBdDzG83JmddxWZcOcBwvhOJPLcVCWjKgXTM6x3nLobUtplKUhqhQo m5PiDYXOXHuSI/Mom2krT+bY0US8pop8da4gxRBIXdiCX+lebDM4Vzl0zKOf8i9W B1nSRSDQTYAU= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=DiY56VczsIDn9exqPpX/bk+qXnQ/+ABB3ujXDeSCnVY=; b=eiL0ZQae iB7i0Zle5EWeVVKQHj8nsoS3ka+A805+QVZi3c9fOZT9HX8Hi7FGK8eJQH9wsj1Q M9OwDtjlBnkF2hA4Lu3Tb0YfRkvzZBCw7Q+SnyFqPMj4reRnlhE12J5A5iTQdP1t ufBhMAgEzax44AdlQ72vGIcWtzzWwipUReWtxRT4krR1nC6A7eRug97A/+VV1WAS JL5ENCXaBm8L332nZeuIzvZ3r+HVzqPkM8Ept7IFrE5C8oDCfw4IVwGvm3lnKarA JJAOFb3GaTC6JvHfi2mfv7MDfFdnaPOHVw0Vlpekiw6zzf13QbHMPrkxizCLcrHh L4ghrlblPXHSFw== X-ME-Sender: X-Sasl-enc: qdF63GYfsyWzLkoXS6Dgy/+LratC88677bamAiCwMQG6 1493999066 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id D391424050; Fri, 5 May 2017 11:44:26 -0400 (EDT) From: Thomas Monjalon To: Shahaf Shuler Cc: dev@dpdk.org, =?ISO-8859-1?Q?N=E9lio?= Laranjeiro , adrien.mazarguil@6wind.com Date: Fri, 05 May 2017 17:44:26 +0200 Message-ID: <1711827.nElDvMWAaO@xps> In-Reply-To: <20170503065931.GK31330@autoinstall.dev.6wind.com> References: <20170503065535.188899-1-shahafs@mellanox.com> <20170503065931.GK31330@autoinstall.dev.6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="iso-8859-1" Subject: Re: [dpdk-dev] [PATCH] net/mlx5: fix Tx max inline with TSO X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 May 2017 15:44:27 -0000 03/05/2017 08:59, N=E9lio Laranjeiro: > On Wed, May 03, 2017 at 09:55:35AM +0300, Shahaf Shuler wrote: > > When TSO is enabled, Verbs layer aggregates the TSO > > inline size with the txq inline size for the Tx creation, > > while the PMD takes the maximum among them. > >=20 > > Fixing it by adjusting the max inline parameter before > > passing to to Verbs. > >=20 > > Fixes: 3f13f8c23a7c ("net/mlx5: support hardware TSO") > >=20 > > Signed-off-by: Shahaf Shuler > > Acked-by: Yongseok Koh >=20 > Acked-by: Nelio Laranjeiro Applied with minor fix (from Adrien comment), thanks