mbox series

[00/12] base code update

Message ID 20191205123847.39579-1-qi.z.zhang@intel.com (mailing list archive)
Headers
Series base code update |

Message

Qi Zhang Dec. 5, 2019, 12:38 p.m. UTC
  Main changes:
1. add support for MAC rules on specific port
2. support MAC/VLAN with TCP/UDP in switch rule
3. support 1/10G device
4. couple bug fix and code clean.

Qi Zhang (12):
  net/ice/base: whitelist register for NVM access
  net/ice/base: support MAC/VLAN with TCP/UDP in switch
  net/ice/base: do not wait for PE unit to load
  net/ice/base: cleanup format of static const declarations
  net/ice/base: flexbytes should match on header data
  net/ice/base: enable clearing of the HW tables
  net/ice/base: fix loop limit
  net/ice/base: increase PF reset wait timeout
  net/ice/base: change fdir desc preparation
  net/ice/base: support add MAC rules on specific port
  net/ice: support 1/10G device IDs
  net/ice/base: minor code clean

 drivers/net/ice/base/ice_adminq_cmd.h |   1 +
 drivers/net/ice/base/ice_common.c     |  26 +-
 drivers/net/ice/base/ice_devids.h     |   4 +
 drivers/net/ice/base/ice_fdir.c       |  92 +++---
 drivers/net/ice/base/ice_flex_pipe.c  |  63 ++++-
 drivers/net/ice/base/ice_flex_pipe.h  |   1 +
 drivers/net/ice/base/ice_flow.c       |  17 +-
 drivers/net/ice/base/ice_flow.h       |   2 +-
 drivers/net/ice/base/ice_nvm.c        |  10 +-
 drivers/net/ice/base/ice_switch.c     | 517 +++++++++++++++++++++++++---------
 drivers/net/ice/base/ice_switch.h     |   3 +-
 drivers/net/ice/base/ice_type.h       |   4 -
 drivers/net/ice/ice_ethdev.c          |   2 +
 13 files changed, 534 insertions(+), 208 deletions(-)
  

Comments

Qiming Yang Jan. 2, 2020, 6 a.m. UTC | #1
> -----Original Message-----
> From: Zhang, Qi Z
> Sent: Thursday, December 5, 2019 8:39 PM
> To: Yang, Qiming <qiming.yang@intel.com>
> Cc: Ye, Xiaolong <xiaolong.ye@intel.com>; dev@dpdk.org; Zhang, Qi Z
> <qi.z.zhang@intel.com>
> Subject: [PATCH 00/12] base code update
> 
> Main changes:
> 1. add support for MAC rules on specific port 2. support MAC/VLAN with
> TCP/UDP in switch rule 3. support 1/10G device 4. couple bug fix and code
> clean.
> 
> Qi Zhang (12):
>   net/ice/base: whitelist register for NVM access
>   net/ice/base: support MAC/VLAN with TCP/UDP in switch
>   net/ice/base: do not wait for PE unit to load
>   net/ice/base: cleanup format of static const declarations
>   net/ice/base: flexbytes should match on header data
>   net/ice/base: enable clearing of the HW tables
>   net/ice/base: fix loop limit
>   net/ice/base: increase PF reset wait timeout
>   net/ice/base: change fdir desc preparation
>   net/ice/base: support add MAC rules on specific port
>   net/ice: support 1/10G device IDs
>   net/ice/base: minor code clean
> 
>  drivers/net/ice/base/ice_adminq_cmd.h |   1 +
>  drivers/net/ice/base/ice_common.c     |  26 +-
>  drivers/net/ice/base/ice_devids.h     |   4 +
>  drivers/net/ice/base/ice_fdir.c       |  92 +++---
>  drivers/net/ice/base/ice_flex_pipe.c  |  63 ++++-
>  drivers/net/ice/base/ice_flex_pipe.h  |   1 +
>  drivers/net/ice/base/ice_flow.c       |  17 +-
>  drivers/net/ice/base/ice_flow.h       |   2 +-
>  drivers/net/ice/base/ice_nvm.c        |  10 +-
>  drivers/net/ice/base/ice_switch.c     | 517 +++++++++++++++++++++++++------
> ---
>  drivers/net/ice/base/ice_switch.h     |   3 +-
>  drivers/net/ice/base/ice_type.h       |   4 -
>  drivers/net/ice/ice_ethdev.c          |   2 +
>  13 files changed, 534 insertions(+), 208 deletions(-)
> 
> --
> 2.13.6

Can delete the unnecessary space line in patch  03/12.

Acked-by: Qiming Yang <qiming.yang@inte.com>