Message ID | 20210429004143.2921260-1-qi.z.zhang@intel.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 520FEA0A0E; Thu, 29 Apr 2021 02:38:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C798C40697; Thu, 29 Apr 2021 02:38:02 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 42EA040147 for <dev@dpdk.org>; Thu, 29 Apr 2021 02:38:01 +0200 (CEST) IronPort-SDR: Vgc0idrF03Y4Di5A2mjSD4/ksxx6ZVA6jgXPs0wRm8p1+YwIOtW7AkT0Z9rpZXWm6iPkHgwyUe 1Gj00XCZC2hg== X-IronPort-AV: E=McAfee;i="6200,9189,9968"; a="196444569" X-IronPort-AV: E=Sophos;i="5.82,258,1613462400"; d="scan'208";a="196444569" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Apr 2021 17:38:00 -0700 IronPort-SDR: tey5vTqtMWNbsn0ZWvmwCTXQDyfPFLbWdATtMWevxpT97sV1t2q72AXuXunF6sY17H8hVR2ye6 kSy65n97aGtw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,258,1613462400"; d="scan'208";a="423790752" Received: from dpdk51.sh.intel.com ([10.67.111.142]) by fmsmga008.fm.intel.com with ESMTP; 28 Apr 2021 17:37:59 -0700 From: Qi Zhang <qi.z.zhang@intel.com> To: qiming.yang@intel.com Cc: dev@dpdk.org, Qi Zhang <qi.z.zhang@intel.com> Date: Thu, 29 Apr 2021 08:41:37 +0800 Message-Id: <20210429004143.2921260-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 0/6] net/ice: base update update batch 3. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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> |
Series |
net/ice: base update update batch 3.
|
|
Message
Qi Zhang
April 29, 2021, 12:41 a.m. UTC
Add IP fragment support in base code and couple QinQ improvement. update the release date as the last base patch for DPDK 21.05. Qi Zhang (6): net/ice/base: add IP fragment flags net/ice/base: add function for post DDP download VLAN mode configuration net/ice/base: add print if DDP/FW don't support QinQ as expected net/ice/base: modififcation to support L3 DSCP QoS net/ice/base: signed External Device Package Programming net/ice/base: support IP fragment RSS and FDIR drivers/net/ice/base/README | 2 +- drivers/net/ice/base/ice_adminq_cmd.h | 39 +++--- drivers/net/ice/base/ice_common.c | 119 ++++++++++++++++- drivers/net/ice/base/ice_common.h | 10 ++ drivers/net/ice/base/ice_dcb.c | 185 +++++++++++++++++++++++--- drivers/net/ice/base/ice_dcb.h | 16 +++ drivers/net/ice/base/ice_fdir.c | 51 ++++++- drivers/net/ice/base/ice_fdir.h | 20 ++- drivers/net/ice/base/ice_flex_pipe.c | 5 +- drivers/net/ice/base/ice_flow.c | 51 ++++++- drivers/net/ice/base/ice_flow.h | 9 +- drivers/net/ice/base/ice_type.h | 24 +++- drivers/net/ice/base/ice_vlan_mode.c | 97 ++++++++++++-- drivers/net/ice/base/ice_vlan_mode.h | 2 +- 14 files changed, 565 insertions(+), 65 deletions(-)
Comments
Hi, > -----Original Message----- > From: Zhang, Qi Z <qi.z.zhang@intel.com> > Sent: 2021年4月29日 8:42 > To: Yang, Qiming <qiming.yang@intel.com> > Cc: dev@dpdk.org; Zhang, Qi Z <qi.z.zhang@intel.com> > Subject: [PATCH 0/6] net/ice: base update update batch 3. > > Add IP fragment support in base code and couple QinQ improvement. > update the release date as the last base patch for DPDK 21.05. > > Qi Zhang (6): > net/ice/base: add IP fragment flags > net/ice/base: add function for post DDP download VLAN mode > configuration > net/ice/base: add print if DDP/FW don't support QinQ as expected > net/ice/base: modififcation to support L3 DSCP QoS > net/ice/base: signed External Device Package Programming > net/ice/base: support IP fragment RSS and FDIR > > drivers/net/ice/base/README | 2 +- > drivers/net/ice/base/ice_adminq_cmd.h | 39 +++--- > drivers/net/ice/base/ice_common.c | 119 ++++++++++++++++- > drivers/net/ice/base/ice_common.h | 10 ++ > drivers/net/ice/base/ice_dcb.c | 185 +++++++++++++++++++++++--- > drivers/net/ice/base/ice_dcb.h | 16 +++ > drivers/net/ice/base/ice_fdir.c | 51 ++++++- > drivers/net/ice/base/ice_fdir.h | 20 ++- > drivers/net/ice/base/ice_flex_pipe.c | 5 +- > drivers/net/ice/base/ice_flow.c | 51 ++++++- > drivers/net/ice/base/ice_flow.h | 9 +- > drivers/net/ice/base/ice_type.h | 24 +++- > drivers/net/ice/base/ice_vlan_mode.c | 97 ++++++++++++-- > drivers/net/ice/base/ice_vlan_mode.h | 2 +- > 14 files changed, 565 insertions(+), 65 deletions(-) > > -- > 2.26.2 Acked-by: Qiming Yang <qiming.yang@intel.com>
> -----Original Message----- > From: Yang, Qiming <qiming.yang@intel.com> > Sent: Thursday, April 29, 2021 10:30 AM > To: Zhang, Qi Z <qi.z.zhang@intel.com> > Cc: dev@dpdk.org > Subject: RE: [PATCH 0/6] net/ice: base update update batch 3. > > Hi, > > > -----Original Message----- > > From: Zhang, Qi Z <qi.z.zhang@intel.com> > > Sent: 2021年4月29日 8:42 > > To: Yang, Qiming <qiming.yang@intel.com> > > Cc: dev@dpdk.org; Zhang, Qi Z <qi.z.zhang@intel.com> > > Subject: [PATCH 0/6] net/ice: base update update batch 3. > > > > Add IP fragment support in base code and couple QinQ improvement. > > update the release date as the last base patch for DPDK 21.05. > > > > Qi Zhang (6): > > net/ice/base: add IP fragment flags > > net/ice/base: add function for post DDP download VLAN mode > > configuration > > net/ice/base: add print if DDP/FW don't support QinQ as expected > > net/ice/base: modififcation to support L3 DSCP QoS > > net/ice/base: signed External Device Package Programming > > net/ice/base: support IP fragment RSS and FDIR > > > > drivers/net/ice/base/README | 2 +- > > drivers/net/ice/base/ice_adminq_cmd.h | 39 +++--- > > drivers/net/ice/base/ice_common.c | 119 ++++++++++++++++- > > drivers/net/ice/base/ice_common.h | 10 ++ > > drivers/net/ice/base/ice_dcb.c | 185 > +++++++++++++++++++++++--- > > drivers/net/ice/base/ice_dcb.h | 16 +++ > > drivers/net/ice/base/ice_fdir.c | 51 ++++++- > > drivers/net/ice/base/ice_fdir.h | 20 ++- > > drivers/net/ice/base/ice_flex_pipe.c | 5 +- > > drivers/net/ice/base/ice_flow.c | 51 ++++++- > > drivers/net/ice/base/ice_flow.h | 9 +- > > drivers/net/ice/base/ice_type.h | 24 +++- > > drivers/net/ice/base/ice_vlan_mode.c | 97 ++++++++++++-- > > drivers/net/ice/base/ice_vlan_mode.h | 2 +- > > 14 files changed, 565 insertions(+), 65 deletions(-) > > > > -- > > 2.26.2 > > Acked-by: Qiming Yang <qiming.yang@intel.com> Applied to dpdk-next-net-intel. Thanks Qi
On 4/29/2021 1:41 AM, Qi Zhang wrote: > Add IP fragment support in base code and couple QinQ improvement. > update the release date as the last base patch for DPDK 21.05. > > Qi Zhang (6): > net/ice/base: add IP fragment flags > net/ice/base: add function for post DDP download VLAN mode > configuration > net/ice/base: add print if DDP/FW don't support QinQ as expected > net/ice/base: modififcation to support L3 DSCP QoS > net/ice/base: signed External Device Package Programming > net/ice/base: support IP fragment RSS and FDIR > Hi Qi, Patch by patch build fails, can you please check it? Also some of the above patches title doesn't match to our convention, plus there is a checkpatch warning, can you please fix them too? And in 4/6, the message logs are too long, yes we allow long lines instead of breaking them, this is to help searching log in the code, but those lines are ~150 chars and I think makes harder to read the code, what do you think indent the message and break in the sentences boundary, something like: " ice_info(hw "QinQ functionality cannot be enabled on this device. " "Update your DDP package and NVM to versions that support QinQ.\n"); "
> -----Original Message----- > From: Yigit, Ferruh <ferruh.yigit@intel.com> > Sent: Friday, April 30, 2021 7:57 PM > To: Zhang, Qi Z <qi.z.zhang@intel.com>; Yang, Qiming > <qiming.yang@intel.com> > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH 0/6] net/ice: base update update batch 3. > > On 4/29/2021 1:41 AM, Qi Zhang wrote: > > Add IP fragment support in base code and couple QinQ improvement. > > update the release date as the last base patch for DPDK 21.05. > > > > Qi Zhang (6): > > net/ice/base: add IP fragment flags > > net/ice/base: add function for post DDP download VLAN mode > > configuration > > net/ice/base: add print if DDP/FW don't support QinQ as expected > > net/ice/base: modififcation to support L3 DSCP QoS > > net/ice/base: signed External Device Package Programming > > net/ice/base: support IP fragment RSS and FDIR > > > > Hi Qi, > > Patch by patch build fails, can you please check it? > > Also some of the above patches title doesn't match to our convention, plus > there is a checkpatch warning, can you please fix them too? > > And in 4/6, the message logs are too long, yes we allow long lines instead of > breaking them, this is to help searching log in the code, but those lines are > ~150 chars and I think makes harder to read the code, what do you think > indent the message and break in the sentences boundary, something like: > " > ice_info(hw > "QinQ functionality cannot be enabled on this device. " > "Update your DDP package and NVM to versions that support > QinQ.\n"); " Thanks for the capture, all issue fixed in v2.