From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f46.google.com (mail-wm0-f46.google.com [74.125.82.46]) by dpdk.org (Postfix) with ESMTP id 33C8437B1 for ; Thu, 5 Oct 2017 13:40:17 +0200 (CEST) Received: by mail-wm0-f46.google.com with SMTP id i124so1599546wmf.3 for ; Thu, 05 Oct 2017 04:40:17 -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:in-reply-to; bh=0Ae+hHeSRjNwnauCIZrfudpj6SrIParf6ugo1BptfIk=; b=XJsYQ2rFO0CPc2cbASre25BYwxV+vfXYWBN6uA4rbGP3jfLnaKLoAPvcyyaC88zXKV 0l/FUd29NJxadkXtRDnaCyI1G2Z4tZ4UiAiS9ac511x9C7p15Noi7JQJFF/qIGNx0SPV IMJl8MFthdNKtI89L/KqyljstRDsLPVlaVjlbYkYnzikNNL9vI0jdDgdQvb9VAOpirrZ N+4TPPaCY+pklLWlZCHjRa2uKkxROGa7hMOFypx/HJgEI/sraz/bcVJjoM8lPwSxDu5v 48jQ1vhFFTXFeC3zVoe1MRCzxe4vYc3dphT5M6EJqBy7wJXlm72Oq7XhrrMhu9LTxkOP +8Cg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=0Ae+hHeSRjNwnauCIZrfudpj6SrIParf6ugo1BptfIk=; b=MUmhR152bwheD6BRK218uQ6YFyEY8INQ9uquY2FMJWtDBGvtCgwDPfV/Mm3NyUxjr1 hLAu1WXPkkQynIiSUzyFNxZuwA6jX31vR0+FoghftROh4MOiPB76zjYEiuVtdd3r8e+7 qzA8WBHBz2aKYHG+4pWBS/pZqq6+Vm3mCzBt93/nSzlH4E2hh+goYNAq9Zehjb8IEW98 2iMJntI2JMCY6bp6Nx2F70JH8R4F8sIFmzG/ZH3DTJGKU+A9gz2eeomzZ+BuFaKiqEzc 3klTUYdhwM59zrrrmwWvwYxab0KCZ5ZnJyrTLN+MoAOaA0YadtIJ6u0JWqSt+AlcUNJ3 xq3Q== X-Gm-Message-State: AMCzsaWF6TLv+ba+domrst1fCZf1qIZYsQbrsxgx//yjTe30OWqUXK7W UPRse3jV+2E2B/ZvctV0XwDeVA== X-Google-Smtp-Source: AOwi7QDhiontvxIXrnjd74bNbgQotNDA+B5ezc3UIOxazV2+T/nHw0W7I/vsJ6Tv+Z11VsFCUaT6qg== X-Received: by 10.80.179.187 with SMTP id s56mr7993428edd.237.1507203616795; Thu, 05 Oct 2017 04:40:16 -0700 (PDT) Received: from 6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id c25sm15499803edb.57.2017.10.05.04.40.15 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 05 Oct 2017 04:40:16 -0700 (PDT) Date: Thu, 5 Oct 2017 13:40:05 +0200 From: Adrien Mazarguil To: Ophir Munk Cc: dev@dpdk.org, Thomas Monjalon , Olga Shern , Matan Azrad Message-ID: <20171005114005.GZ3871@6wind.com> References: <1507195992-12513-1-git-send-email-ophirmu@mellanox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1507195992-12513-1-git-send-email-ophirmu@mellanox.com> Subject: Re: [dpdk-dev] [PATCH v4 0/7] new mlx4 datapath bypassing ibverbs 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, 05 Oct 2017 11:40:17 -0000 On Thu, Oct 05, 2017 at 09:33:05AM +0000, Ophir Munk wrote: > v4 (Ophir): > - Split "net/mlx4: restore Rx scatter support" commit from "net/mlx4: > restore full Rx support bypassing Verbs" commit > > v3 (Adrien): > - Drop a few unrelated or unnecessary changes such as the removal of > MLX4_PMD_TX_MP_CACHE. > - Move device checksum support detection code to its previous location. > - Fix include guard in mlx4_prm.h. > - Reorder #includes alphabetically. > - Replace MLX4_TRANSPOSE() macro with documented inline function. > - Remove extra spaces and blank lines. > - Use uint8_t * instead of char * for buffers. > - Replace mlx4_get_cqe() macro with a documented inline function. > - Replace several unsigned int with uint32_t. > - Add consistency to field names (sge_n => sges_n). > - Make mbuf size checks in RX queue setup function similar to mlx5. > - Update various comments. > - Fix indentation. > - Replace run-time endian conversion with static ones where possible. > - Reorder fields in struct rxq and struct txq for consistency, remove > one level of unnecessary inner structures. > - Fix memory leak on Tx bounce buffer. > - Update commit logs. > - Fix remaining checkpatch warnings. > > v2 (Matan): > Rearange patches. > Semantics. > Enhancements. > Fix compilation issues. > > Moti Haimovsky (6): > net/mlx4: add simple Tx bypassing Verbs > net/mlx4: restore full Rx support bypassing Verbs > net/mlx4: restore Tx gather support > net/mlx4: restore Tx checksum offloads > net/mlx4: restore Rx offloads > net/mlx4: add loopback Tx from VF > > Ophir Munk (1): > net/mlx4: restore Rx scatter support Thanks Ophir for merging both v3's. Ferruh, v4 supersedes all prior revisions (Moti's v1, Matan's v2, my own v3 and Ophir's v3-bis, I can't update patchwork for all of them). For the entire series: Acked-by: Adrien Mazarguil -- Adrien Mazarguil 6WIND