From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 92020A04DD;
	Thu, 22 Oct 2020 13:23:15 +0200 (CEST)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id 3DC1CA9C0;
	Thu, 22 Oct 2020 13:23:13 +0200 (CEST)
Received: from smtpbgbr2.qq.com (smtpbgbr2.qq.com [54.207.22.56])
 by dpdk.org (Postfix) with ESMTP id D8B8CA9BE
 for <dev@dpdk.org>; Thu, 22 Oct 2020 13:23:09 +0200 (CEST)
X-QQ-mid: bizesmtp22t1603365784tjc5uao7
Received: from jiawenwu (unknown [183.129.236.74])
 by esmtp6.qq.com (ESMTP) with 
 id ; Thu, 22 Oct 2020 19:23:03 +0800 (CST)
X-QQ-SSF: 01400000000000C0C000B00A0000000
X-QQ-FEAT: UY25tjb9setZnLiRjhsvZ8tWbKpZl7aw+S0NmR3ZZbLXwHrc/BkZJ8IA32k5W
 JNzSp+LVL70h+XOQr+OJFInzsBpdGaojp9lPnyuuPXcQOejsdodQAnpb+kPqsUbPHTyi5Pa
 SgGGYYx3ssaoNlS2muFv93LdYyWLaZIlTq/abyWzVyURPV4VLUtbVSI2TbkPLCr+Rc1OyPx
 nyfOHWtU/NexbcObOUWyps1lQ8S7CIFZAaR02jLp+/U5bdY8N9BC+iaec5Can785CGNGqSt
 +tFEHvmB8qo9HB9xBKdDGQrF1Sj5vwt3WrMx+7ZFzqjdRyTgTKxm2tXUggDdu6nGCIWaJ1j
 9/yE+NUSUxX9bcbNic=
X-QQ-GoodBg: 2
From: "Jiawen Wu" <jiawenwu@trustnetic.com>
To: "'Ferruh Yigit'" <ferruh.yigit@intel.com>,
	<dev@dpdk.org>
References: <20201019085415.82207-1-jiawenwu@trustnetic.com>
In-Reply-To: <20201019085415.82207-1-jiawenwu@trustnetic.com>
Date: Thu, 22 Oct 2020 19:23:03 +0800
Message-ID: <002801d6a865$b53b8b70$1fb2a250$@trustnetic.com>+50819CD213D9B5E2
MIME-Version: 1.0
Content-Type: text/plain;
	charset="us-ascii"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Outlook 16.0
Thread-Index: AQHa8hVbTdzNZG5niZylkY0c60fr5qma4kog
Content-Language: zh-cn
X-QQ-SENDSIZE: 520
Feedback-ID: bizesmtp:trustnetic.com:qybgforeign:qybgforeign5
X-QQ-Bgrelay: 1
Subject: Re: [dpdk-dev] [PATCH v4 00/58] net: txgbe PMD
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

On October 19, 2020 4:53 PM, Jiawen Wu wrote:
> v4: Add log type introduction,
>     add txgbe support in release note.
> v3: Merge some recent changes in the main repo,
>     fix the checkpatch warnings.
> v2: Re-order patches and fix some known problems.
> v1: Introduce txgbe PMD.
> 

Hi Ferruh,

Does this patch still need to be modified?
If it can be merged into the repo, I will make the second patch.
Perhaps, the second patch would miss the proposal deadline?


> 
> Jiawen Wu (58):
>   net/txgbe: add build and doc infrastructure
>   net/txgbe: add ethdev probe and remove
>   net/txgbe: add device init and uninit
>   net/txgbe: add error types and registers
>   net/txgbe: add MAC type and bus lan id
>   net/txgbe: add HW infrastructure and dummy function
>   net/txgbe: add EEPROM functions
>   net/txgbe: add HW init and reset operation
>   net/txgbe: add PHY init
>   net/txgbe: add module identify
>   net/txgbe: add PHY reset
>   net/txgbe: add info get operation
>   net/txgbe: add interrupt operation
>   net/txgbe: add device configure operation
>   net/txgbe: add link status change
>   net/txgbe: add multi-speed link setup
>   net/txgbe: add autoc read and write
>   net/txgbe: add MAC address operations
>   net/txgbe: add unicast hash bitmap
>   net/txgbe: add Rx and Tx init
>   net/txgbe: add Rx and Tx queues setup and release
>   net/txgbe: add Rx and Tx start and stop
>   net/txgbe: add packet type
>   net/txgbe: fill simple transmit function
>   net/txgbe: fill transmit function with hardware offload
>   net/txgbe: fill Tx prepare function
>   net/txgbe: fill receive functions
>   net/txgbe: add device start operation
>   net/txgbe: add Rx and Tx data path start and stop
>   net/txgbe: add device stop and close operations
>   net/txgbe: support Rx interrupt
>   net/txgbe: add Rx and Tx queue info get
>   net/txgbe: add device stats get
>   net/txgbe: add device xstats get
>   net/txgbe: add queue stats mapping
>   net/txgbe: add VLAN handle support
>   net/txgbe: add SWFW semaphore and lock
>   net/txgbe: add PF module init and uninit for SRIOV
>   net/txgbe: add process mailbox operation
>   net/txgbe: add PF module configure for SRIOV
>   net/txgbe: add VMDq configure
>   net/txgbe: add RSS support
>   net/txgbe: add DCB support
>   net/txgbe: add flow control support
>   net/txgbe: add FC auto negotiation support
>   net/txgbe: add priority flow control support
>   net/txgbe: add device promiscuous and allmulticast mode
>   net/txgbe: add MTU set operation
>   net/txgbe: add FW version get operation
>   net/txgbe: add EEPROM info get operation
>   net/txgbe: add register dump support
>   net/txgbe: support device LED on and off
>   net/txgbe: add mirror rule operations
>   net/txgbe: add PTP support
>   net/txgbe: add DCB info get operation
>   net/txgbe: add Rx and Tx descriptor status
>   net/txgbe: change stop operation callback to return int
>   net/txgbe: introduce log type in the driver documentation
>