From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by dpdk.org (Postfix) with ESMTP id 50C03C392 for ; Tue, 30 Jun 2015 23:02:49 +0200 (CEST) Received: by widjy10 with SMTP id jy10so41019918wid.1 for ; Tue, 30 Jun 2015 14:02:48 -0700 (PDT) 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=zctvCDrDQ++RspwwcVV8MyIeTytc8z6pbQkNomEgSBA=; b=AvL66KZCsf64Punu2tljvLdCvMGRxgs7QIM+c/XvCSgwhJDm/uodvM3awic7ZKwlQt JMrj8yGYpzIkQ6wZEgy4N9QBS0m+5yl6yDkgMkyTbC6PNequcUT1hZ0JnoAti2u94Yl7 uRVjtAYOpr9bOaXbLDLqBipwatrSOZ/yKMK7sSCGHLLheZi5fKjd3+BWk/LOgzzDfP8I cKngZV5kkCqosfGuuL3GLuWBC2ONwF8IflmRz9cXAQlEwiFm238azSLCzLEaMJAHqKIw LTUY9F9eQBMUB5uvtr3SRzxeOrSwKT4xoVq4fe5/ZCeuh0NIvMQYrjBYWqQxwMezwUh8 oO6Q== X-Gm-Message-State: ALoCoQlovGs7d1tnz419lhjkc6ewtm3l6AVoBFBj1IbZpfRp9UcKrZzAiIbr0VbNRgqKCeBeY+Z/ X-Received: by 10.194.236.199 with SMTP id uw7mr42565679wjc.92.1435698168823; Tue, 30 Jun 2015 14:02:48 -0700 (PDT) Received: from xps13.localnet (guy78-1-82-235-116-147.fbx.proxad.net. [82.235.116.147]) by mx.google.com with ESMTPSA id gw7sm18753034wib.15.2015.06.30.14.02.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 30 Jun 2015 14:02:47 -0700 (PDT) From: Thomas Monjalon To: Rahul Lakkireddy Date: Tue, 30 Jun 2015 23:01:39 +0200 Message-ID: <2257313.6hTKfpxLOi@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org, Felix Marti , Nirranjan Kirubaharan , Kumar Sanghvi Subject: Re: [dpdk-dev] [PATCH v4 0/9] Chelsio Terminator 5 (T5) 10G/40G Poll Mode Driver 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: Tue, 30 Jun 2015 21:02:49 -0000 2015-06-30 04:58, Rahul Lakkireddy: > This series of patches add the CXGBE Poll Mode Driver support for Chelsio > Terminator 5 series of 10G/40G adapters. The CXGBE PMD is split into multiple > patches. The first patch adds the hardware specific api for all supported > Chelsio T5 adapters and the patches from 2 to 8 add the actual DPDK CXGBE PMD. > > Also, the CXGBE PMD is enabled for compilation and linking by patch 2. > MAINTAINERS file is also updated by patch 2 to claim responsibility for the > CXGBE PMD. > > More information on the CXGBE PMD can be found in the documentation added by > patch 9. > > v4: > - Fix 32-bit and clang compilation. > - Moved cxgbe doc entry in MAINTAINERS from patch 2 to patch 9 for consistency. > > v3: > - Merge patches 10 and 11 with patch 2. > - Add rte_pmd_cxgbe_version.map and add EXPORT_MAP and LIBABIVER to cxgbe > Makefile. > - Use RTE_DIM macro for calculating ARRAY_SIZE. > > v2: > - Move the driver to drivers/net directory and update all config files and > commit logs. Also update MAINTAINERS. > - Break the second patch into more patches; incrementally, adding features to > the cxgbe poll mode driver. > - Replace bitwise operations in finding last (most significant) bit set with > gcc's __builtin_clz. > - Fix the return value returned by link update eth_dev operation. > - Few bug fixes and code cleanup. > > Rahul Lakkireddy (9): > cxgbe: add hardware specific api for all supported Chelsio T5 series > adapters. > cxgbe: add cxgbe poll mode driver. > cxgbe: add device configuration and RX support for cxgbe PMD. > cxgbe: add TX support for cxgbe PMD. > cxgbe: add device related operations for cxgbe PMD. > cxgbe: add port statistics for cxgbe PMD. > cxgbe: add link related functions for cxgbe PMD. > cxgbe: add flow control functions for cxgbe PMD. > doc: add cxgbe PMD documentation under doc/guides/nics/cxgbe.rst Applied, thanks for the good work and welcome :)