From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 91B312C5E for ; Thu, 4 Oct 2018 22:39:05 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 207B621964; Thu, 4 Oct 2018 16:39:05 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 04 Oct 2018 16:39:05 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=0eH+j6Nmy3LH7mbsWIMP0uN3bOXLNUWTHY1Ew1TrGkQ=; b=G2Lb64BC7uAV +EFwk+KsFfNGteXePusvsG8VUK9WL/mLYm+1cz4PPUuYK3rvDQCoM/4mh9Fd/3Qs fAs/ibh5/LQLdWB5sZKcSseO803EJefp+JDktqXq+J2g2WjjKH6OywR2HcM1x6dr wD+Tymoxbpk1qSOqiTXOT8x1lV4cZ/M= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm3; bh=0eH+j6Nmy3LH7mbsWIMP0uN3bOXLNUWTHY1Ew1TrG kQ=; b=lgshEeonrCB+jEyxuq0W/iDgtHFHeqMDeLGZOZUBDTJ7juCCIWXxuDe2e aTL0QZ1z77CmddyNF4bSTPDM/T9i8s2OO4jgq4gvE9fEgLDPc/dyLySmAudIE4uC QWILBzDefMxBrGDhFjfEzdBRhKchYPP2SAVeiZD8EpI/BA/Jpyu2cdh5NFDVseui 88TtEcJqNfL+FL5jDyzTl5ZNCKmt9X8N99kV5tqPEaOwxr2LFLT9vB4x8MH4OPAW ravjn6xxVAQP0gspy9Xvpcockqm8/B4WJwnoj4Jz51sIkfvXxQnD1uwy+wI5bIYf IzitjGTzm9V/Wmq9oXNVrOyAU4dUA== X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id D1E67102E2; Thu, 4 Oct 2018 16:39:03 -0400 (EDT) From: Thomas Monjalon To: Ori Kam Cc: dev@dpdk.org, Yongseok Koh , Shahaf Shuler Date: Thu, 04 Oct 2018 22:39:01 +0200 Message-ID: <1894764.h71D8BIBkf@xps> In-Reply-To: <1538632399-13135-1-git-send-email-orika@mellanox.com> References: <1538632399-13135-1-git-send-email-orika@mellanox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2] net/mlx5: fix Direct Verbs flow matcher caching 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: Thu, 04 Oct 2018 20:39:05 -0000 04/10/2018 07:53, Ori Kam: > The Direct Verbs are using matcher object to filter flows, This object > can be reused for all flows that are using the same flow items and > masks. > > This was implemented with an issue, that the list pointer pointed > to incorrect list type, this resulted in compilation error when using > GCC greater then 4.8.5 > > This commit fixes this issue by setting that the matcher object > will include the LIST required members directly and not as a subobject. > > Fixes: 8d21c3d7b237 ("net/mlx5: add Direct Verbs translate items") > > Signed-off-by: Ori Kam > Acked-by: Yongseok Koh applied to dpdk-next-net-mlx