mbox series

[v2,0/8] update i40e base code

Message ID 20200727053451.22214-1-guinanx.sun@intel.com (mailing list archive)
Headers
Series update i40e base code |

Message

Guinan Sun July 27, 2020, 5:34 a.m. UTC
  update i40e base code.

source code of i40e driver:
cid-i40e.2020.07.16.tar.gz dropped by the team which develop
basic drivers for any i40e NIC.

changelog in ND share repo:
From fc99a1143d3f ("i40e-shared: FEC on/off support flag for X722")
To 673ff35c1c73 ("i40e-shared: Add support for firmware lockdown")

The following commits are ignored.
ea2cd04e5db1 ("i40e-shared: do AQ calls without sleeping by default")
4eec86f12992 ("i40e-shared: Fix undeclared i40e_asq_send_command() function")
9d60cec99eb7 ("i40e-shared: Send rx ctl write command in atomic context")
a204afdc1cad ("i40e-shared: Send uc/mc commands in atomic context")
d22f8cb2a111 ("i40e-shared: Send commands in atomic context")
136a7d931a45 ("i40e-shared: Fix improper preprocessor conditional")

Guinan Sun (8):
  net/i40e/base: enable FEC on/off flag setting for X722
  net/i40e/base: add PTYPE definition
  net/i40e/base: add new custom cloud filter types
  net/i40e/base: update FW API version to 1.11
  net/i40e/base: fix possible uninitialized variable
  net/i40e/base: support unused ports disabling
  net/i40e/base: replace AQ command for NVM update
  net/i40e/base: update version

 drivers/net/i40e/base/README            |  2 +-
 drivers/net/i40e/base/i40e_adminq.c     |  6 +++
 drivers/net/i40e/base/i40e_adminq_cmd.h | 19 +++++++-
 drivers/net/i40e/base/i40e_common.c     | 61 +++++++++++++++----------
 drivers/net/i40e/base/i40e_prototype.h  |  6 ++-
 drivers/net/i40e/base/i40e_type.h       |  5 +-
 6 files changed, 70 insertions(+), 29 deletions(-)
  

Comments

Guo, Jia July 28, 2020, 1:32 a.m. UTC | #1
Acked-by: Jeff Guo <jia.guo@intel.com>

On 7/27/2020 1:34 PM, Guinan Sun wrote:
> update i40e base code.
>
> source code of i40e driver:
> cid-i40e.2020.07.16.tar.gz dropped by the team which develop
> basic drivers for any i40e NIC.
>
> changelog in ND share repo:
>  From fc99a1143d3f ("i40e-shared: FEC on/off support flag for X722")
> To 673ff35c1c73 ("i40e-shared: Add support for firmware lockdown")
>
> The following commits are ignored.
> ea2cd04e5db1 ("i40e-shared: do AQ calls without sleeping by default")
> 4eec86f12992 ("i40e-shared: Fix undeclared i40e_asq_send_command() function")
> 9d60cec99eb7 ("i40e-shared: Send rx ctl write command in atomic context")
> a204afdc1cad ("i40e-shared: Send uc/mc commands in atomic context")
> d22f8cb2a111 ("i40e-shared: Send commands in atomic context")
> 136a7d931a45 ("i40e-shared: Fix improper preprocessor conditional")
>
> Guinan Sun (8):
>    net/i40e/base: enable FEC on/off flag setting for X722
>    net/i40e/base: add PTYPE definition
>    net/i40e/base: add new custom cloud filter types
>    net/i40e/base: update FW API version to 1.11
>    net/i40e/base: fix possible uninitialized variable
>    net/i40e/base: support unused ports disabling
>    net/i40e/base: replace AQ command for NVM update
>    net/i40e/base: update version
>
>   drivers/net/i40e/base/README            |  2 +-
>   drivers/net/i40e/base/i40e_adminq.c     |  6 +++
>   drivers/net/i40e/base/i40e_adminq_cmd.h | 19 +++++++-
>   drivers/net/i40e/base/i40e_common.c     | 61 +++++++++++++++----------
>   drivers/net/i40e/base/i40e_prototype.h  |  6 ++-
>   drivers/net/i40e/base/i40e_type.h       |  5 +-
>   6 files changed, 70 insertions(+), 29 deletions(-)
>
  
Qi Zhang Aug. 31, 2020, 3:58 a.m. UTC | #2
> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Jeff Guo
> Sent: Tuesday, July 28, 2020 9:33 AM
> To: Sun, GuinanX <guinanx.sun@intel.com>; dev@dpdk.org
> Cc: Xing, Beilei <beilei.xing@intel.com>
> Subject: Re: [dpdk-dev] [PATCH v2 0/8] update i40e base code
> 
> Acked-by: Jeff Guo <jia.guo@intel.com>
> 
> On 7/27/2020 1:34 PM, Guinan Sun wrote:
> > update i40e base code.
> >
> > source code of i40e driver:
> > cid-i40e.2020.07.16.tar.gz dropped by the team which develop basic
> > drivers for any i40e NIC.
> >
> > changelog in ND share repo:
> >  From fc99a1143d3f ("i40e-shared: FEC on/off support flag for X722")
> > To 673ff35c1c73 ("i40e-shared: Add support for firmware lockdown")
> >
> > The following commits are ignored.
> > ea2cd04e5db1 ("i40e-shared: do AQ calls without sleeping by default")
> > 4eec86f12992 ("i40e-shared: Fix undeclared i40e_asq_send_command()
> > function")
> > 9d60cec99eb7 ("i40e-shared: Send rx ctl write command in atomic
> > context") a204afdc1cad ("i40e-shared: Send uc/mc commands in atomic
> > context")
> > d22f8cb2a111 ("i40e-shared: Send commands in atomic context")
> > 136a7d931a45 ("i40e-shared: Fix improper preprocessor conditional")
> >
> > Guinan Sun (8):
> >    net/i40e/base: enable FEC on/off flag setting for X722
> >    net/i40e/base: add PTYPE definition
> >    net/i40e/base: add new custom cloud filter types
> >    net/i40e/base: update FW API version to 1.11
> >    net/i40e/base: fix possible uninitialized variable
> >    net/i40e/base: support unused ports disabling
> >    net/i40e/base: replace AQ command for NVM update
> >    net/i40e/base: update version
> >
> >   drivers/net/i40e/base/README            |  2 +-
> >   drivers/net/i40e/base/i40e_adminq.c     |  6 +++
> >   drivers/net/i40e/base/i40e_adminq_cmd.h | 19 +++++++-
> >   drivers/net/i40e/base/i40e_common.c     | 61 +++++++++++++++----------
> >   drivers/net/i40e/base/i40e_prototype.h  |  6 ++-
> >   drivers/net/i40e/base/i40e_type.h       |  5 +-
> >   6 files changed, 70 insertions(+), 29 deletions(-)
> >

Applied to dpdk-next-net-intel.

Thanks
Qi