From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f42.google.com (mail-wm0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 3CFEB8E60 for ; Wed, 14 Sep 2016 14:21:24 +0200 (CEST) Received: by mail-wm0-f42.google.com with SMTP id b187so44290610wme.1 for ; Wed, 14 Sep 2016 05:21:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to :user-agent; bh=fCnnC/6LXWdzUDP3EuFaMjD3AVFlC5jZdp8gIQ82S7E=; b=L/w/4Ryol2ycArXyThSy0XxbBBwDYHYQ1oq5vuvQmuiASbYrAlZiQqTt5/AFI/v+QN zNbSDWfc7Hh0uMjTkWDHgfLVfERYe9DZn8sQCqcogUx6yMJ9ZifAoqHuIDE0CBUNeOlL QrCqoQQaWBqD/3d2on3d2obK4/4909lPrsKtwFqZi9klsLs6LhEKAWgnA4i21nQiG+O0 PAOmVc766cbvKLEiZU436rlyjSA9aAygxo6EhZFC9ljduZauk1xSmrjvfEh1GJdMPLB9 L4eM198PtzRDIsxIS3zlJd1TWia2xoKTKxNl0yWBMDdnWhUYQLth5GC8Tnzba8GSLEos X0yw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to:user-agent; bh=fCnnC/6LXWdzUDP3EuFaMjD3AVFlC5jZdp8gIQ82S7E=; b=NzkgAbv+YaKOrqGC3oRw5zDhzaPksQp8rUunfhU+npT2g7CSB5h/q7RbLZrGccxIhe UIPKb9blVIW6wijaw7tiNdrxEjTL381CyXOWornVUFb1US+Y4uy3bkiDDum9FW1YN8kL ws8rO+1DsQw67xNikQuOCk0LqtNC46AMnDIaBIpGyRJnmjbhzH/dwAVTtkusgfYrHzcn nWu3oNJgbJnKE93qkjvBiV2RAwPPURKnrdX+4PRGCc+sisedoCcMVAsRATwztXzwDfa3 NKK6ghDDo160fWtfV/fzw4IcqC/OXkkHQKkcbEMBPG9tPmDnbuEn7FjbkNs89l2GVNwn 8bsA== X-Gm-Message-State: AE9vXwMm46I3iS2vX3YEvfV9RLTZcxvdUZD1Cgke3/iHJ+4RE56IWX4q+OGmVBWt/qGcyQTO X-Received: by 10.28.52.73 with SMTP id b70mr10912533wma.109.1473855683942; Wed, 14 Sep 2016 05:21:23 -0700 (PDT) Received: from autoinstall.dev.6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id s184sm10526524wmb.11.2016.09.14.05.21.23 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 14 Sep 2016 05:21:23 -0700 (PDT) Date: Wed, 14 Sep 2016 14:21:18 +0200 From: =?iso-8859-1?Q?N=E9lio?= Laranjeiro To: Ferruh Yigit Cc: dev@dpdk.org Message-ID: <20160914122117.GG32397@autoinstall.dev.6wind.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH V2 0/8] net/mlx5: various fixes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 12:21:24 -0000 On Wed, Sep 14, 2016 at 01:53:47PM +0200, Nelio Laranjeiro wrote: > - Flow director > - Rx Capabilities > - Inline > > Changes in V2: > > - Fix a compilation error. > > Adrien Mazarguil (1): > net/mlx5: fix Rx VLAN offload capability report > > Nelio Laranjeiro (3): > net/mlx5: force inline for completion function > net/mlx5: re-factorize functions > net/mlx5: fix inline logic > > Raslan Darawsheh (1): > net/mlx5: fix removing VLAN filter > > Yaacov Hazan (3): > net/mlx5: fix inconsistent return value in Flow Director > net/mlx5: refactor allocation of flow director queues > net/mlx5: fix support for flow director drop mode > > doc/guides/nics/mlx5.rst | 3 +- > drivers/net/mlx5/mlx5.h | 2 + > drivers/net/mlx5/mlx5_ethdev.c | 7 +- > drivers/net/mlx5/mlx5_fdir.c | 270 +++++++++++++++------- > drivers/net/mlx5/mlx5_rxq.c | 2 + > drivers/net/mlx5/mlx5_rxtx.c | 497 +++++++++-------------------------------- > drivers/net/mlx5/mlx5_rxtx.h | 7 +- > drivers/net/mlx5/mlx5_txq.c | 9 +- > drivers/net/mlx5/mlx5_vlan.c | 3 +- > 9 files changed, 317 insertions(+), 483 deletions(-) > > -- > 2.1.4 > Sorry Ferruh, I forgot to add you in this serie. -- Nélio Laranjeiro 6WIND