From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id B49768E96 for ; Sat, 31 Oct 2015 00:19:15 +0100 (CET) Received: by wmff134 with SMTP id f134so22379866wmf.0 for ; Fri, 30 Oct 2015 16:19:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind_com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=ECBX74o6XQWOTfkAAhvpct79gEZYBA7ry8/PAtms0JU=; b=mWaQvasU6R/fTaRRLgKKkeBnOA2qSosMlFdMOEOTYe4BKfJWsadTslG0wUG7AbTE/X uQLzA61FZ79hqfBsHJcibCk3NGLcZldmYP+XYz1yNozHH3giHFQpkmSZMDAlqNoapkKN XgndjsP8zNDbOLkZ16EhM8c1/BzLzXcvlj10pzUnnHzp0qBCA/imzkfhj3xsQhGPFpBh 57eSiq4Zi6M1x3hHmDk3W+bYejAaTLXkHKEdAiUKlQepTn5LW0ItURddnTdihhxv97TA MbgF/V2oW1X1TCXUXEzId/BiqUU5eecRzrXdRAxx2QwHhWh7jfKR7ymI9jR6ZZHD+73O SoWQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=ECBX74o6XQWOTfkAAhvpct79gEZYBA7ry8/PAtms0JU=; b=JmMtsG/aBo2EaJyv032uJCXRKplRzpTAqu5TmIoPnaTX/HkWzw0kqKe8sKoZysUROW 1a8/QfqXX9+3hKLwFXpza/B2yb6bqzeBamYiIlUXpHPuInVq/kB/hGJ/zOME2pl+Ifw9 0doVkG97866xLk+OPCFq8JgZFpO415yflKXu9dIdfk9hABa1XNTAKDBpDlaIFfB13D70 dOWWaq/Ne63fsE7aq4sc4SHS4Q+j8yMjI2R3H1Eq95A3mR16uE91jWtQ77trQk/z1Ed6 IA/utsyZrZBJ00LuJdD8ualHcoIn9X3DkqIUMtZ9LgxUlXOcxcRkPP1ebv+Xg7iEHThP 8weg== X-Gm-Message-State: ALoCoQlmsKo63eiyCe7gYiGcVp71eRVJZUT/Edg1PzXro0tUo4S6Z3M88frt4IAGpeW0UriCP6i5 X-Received: by 10.28.87.15 with SMTP id l15mr729096wmb.66.1446247155494; Fri, 30 Oct 2015 16:19:15 -0700 (PDT) Received: from xps13.localnet (107.202.154.77.rev.sfr.net. [77.154.202.107]) by smtp.gmail.com with ESMTPSA id e79sm5076820wmd.16.2015.10.30.16.19.14 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 30 Oct 2015 16:19:14 -0700 (PDT) From: Thomas Monjalon To: Adrien Mazarguil Date: Sat, 31 Oct 2015 00:18:03 +0100 Message-ID: <4691736.R3nFjyt8fP@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1446231162-8075-1-git-send-email-adrien.mazarguil@6wind.com> References: <1444067589-29513-1-git-send-email-adrien.mazarguil@6wind.com> <1446231162-8075-1-git-send-email-adrien.mazarguil@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2 00/13] Mellanox ConnectX-4 PMD (mlx5) 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: Fri, 30 Oct 2015 23:19:15 -0000 2015-10-30 19:52, Adrien Mazarguil: > This PMD adds basic support for Mellanox ConnectX-4 (mlx5) families of > 10/25/40/50/100 Gb/s adapters through the Verbs framework. > > Its design is very similar to that of mlx4 from which most of its code is > borrowed without the mistake of putting it all in a single huge file. > > It is disabled by default due to its dependency on libibverbs. > > Changes in v2: > - Removed useless port inactive warning. > - Simplified code by replacing configured MAC addresses RX queue bit-field > with flow pointer checks. > - Replaced allmulti/promisc status bits with request bits to fix > inconsistencies when restoring these modes. > - Updated comments about maximum number of MAC addresses and VLAN filters. > - Improved performance with better prefetching. > - Fixed deadlock in case of error during port start. > - Simplified VLAN filtering configuration storage using a basic list instead > of a table (with holes). Applied, thanks