DPDK patches and discussions
 help / color / mirror / Atom feed
* Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
  2016-12-14 18:50 [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf Yi Zhang
@ 2016-12-14  7:06 ` Yuanhan Liu
  2017-01-25  1:39   ` Dai, Wei
  2017-01-25  1:21 ` Lu, Wenzhuo
  1 sibling, 1 reply; 6+ messages in thread
From: Yuanhan Liu @ 2016-12-14  7:06 UTC (permalink / raw)
  To: Yi Zhang; +Cc: Helin Zhang, Konstantin Ananyev, dev

On Thu, Dec 15, 2016 at 02:50:19AM +0800, Yi Zhang wrote:
> Current ixgbevf driver get max_rx_pktlen = 15872, but in fact PF
> supports 15872-byte jumbo frame and VF only supports 9728-byte jumbo
> frame. If VF is running DPDK driver and set frame_size > 9728 ,PF
> running kernel ixgbe driver will report an error and set VF failed.
> This patch fixs DPDK ixgbevf driver to get correct jumbo frame size
> of VF.
> 
> Signed-off-by: Yi Zhang <zhang.yi75@zte.com.cn>

Hi,

I saw you have sent this patch 3 times; are you looking for review?
If so, you should not resend it many times, instead, you could reply
to your patch if it hasn't got any comments after one week, with
something like "some one can help review this?", or even a simple
"ping ..." might just work.

Besides that, you should Cc the corresponding maintainers, but not
"maintainer@some.org", which is just an example: I doubt such email
exists.

You could get the maintainers from the MAINTAINERS. Take ixgbe as
example, it's:

    Intel ixgbe
    M: Helin Zhang <helin.zhang@intel.com>
    M: Konstantin Ananyev <konstantin.ananyev@intel.com>
    F: drivers/net/ixgbe/
    F: doc/guides/nics/ixgbe.rst
    F: doc/guides/nics/intel_vf.rst

So for this patch, you should at least Cc (or To) Helin and Konstantin.
I have done that for you this time.

	--yliu
> ---
>  drivers/net/ixgbe/ixgbe_ethdev.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
> index edc9b22..573252c 100644
> --- a/drivers/net/ixgbe/ixgbe_ethdev.c
> +++ b/drivers/net/ixgbe/ixgbe_ethdev.c
> @@ -3168,7 +3168,7 @@ ixgbevf_dev_info_get(struct rte_eth_dev *dev,
>  	dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
>  	dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
>  	dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
> -	dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS reg */
> +	dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
>  	dev_info->max_mac_addrs = hw->mac.num_rar_entries;
>  	dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
>  	dev_info->max_vfs = dev->pci_dev->max_vfs;
> -- 
> 2.9.3
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
@ 2016-12-14 18:50 Yi Zhang
  2016-12-14  7:06 ` Yuanhan Liu
  2017-01-25  1:21 ` Lu, Wenzhuo
  0 siblings, 2 replies; 6+ messages in thread
From: Yi Zhang @ 2016-12-14 18:50 UTC (permalink / raw)
  To: maintainer; +Cc: dev, Yi Zhang

Current ixgbevf driver get max_rx_pktlen = 15872, but in fact PF
supports 15872-byte jumbo frame and VF only supports 9728-byte jumbo
frame. If VF is running DPDK driver and set frame_size > 9728 ,PF
running kernel ixgbe driver will report an error and set VF failed.
This patch fixs DPDK ixgbevf driver to get correct jumbo frame size
of VF.

Signed-off-by: Yi Zhang <zhang.yi75@zte.com.cn>
---
 drivers/net/ixgbe/ixgbe_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c b/drivers/net/ixgbe/ixgbe_ethdev.c
index edc9b22..573252c 100644
--- a/drivers/net/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/ixgbe/ixgbe_ethdev.c
@@ -3168,7 +3168,7 @@ ixgbevf_dev_info_get(struct rte_eth_dev *dev,
 	dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
 	dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
 	dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
-	dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS reg */
+	dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
 	dev_info->max_mac_addrs = hw->mac.num_rar_entries;
 	dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
 	dev_info->max_vfs = dev->pci_dev->max_vfs;
-- 
2.9.3

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
  2016-12-14 18:50 [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf Yi Zhang
  2016-12-14  7:06 ` Yuanhan Liu
@ 2017-01-25  1:21 ` Lu, Wenzhuo
  1 sibling, 0 replies; 6+ messages in thread
From: Lu, Wenzhuo @ 2017-01-25  1:21 UTC (permalink / raw)
  To: Yi Zhang, maintainer, Ananyev, Konstantin, Dai, Wei; +Cc: dev

Hi  Yi,


> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Yi Zhang
> Sent: Thursday, December 15, 2016 2:50 AM
> To: maintainer@some.org
> Cc: dev@dpdk.org; Yi Zhang
> Subject: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
> 
> Current ixgbevf driver get max_rx_pktlen = 15872, but in fact PF supports
> 15872-byte jumbo frame and VF only supports 9728-byte jumbo frame. If VF is
> running DPDK driver and set frame_size > 9728 ,PF running kernel ixgbe driver
> will report an error and set VF failed.
> This patch fixs DPDK ixgbevf driver to get correct jumbo frame size of VF.
> 
> Signed-off-by: Yi Zhang <zhang.yi75@zte.com.cn>
> ---
>  drivers/net/ixgbe/ixgbe_ethdev.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c
> b/drivers/net/ixgbe/ixgbe_ethdev.c
> index edc9b22..573252c 100644
> --- a/drivers/net/ixgbe/ixgbe_ethdev.c
> +++ b/drivers/net/ixgbe/ixgbe_ethdev.c
> @@ -3168,7 +3168,7 @@ ixgbevf_dev_info_get(struct rte_eth_dev *dev,
>  	dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
>  	dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
>  	dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
> -	dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS reg */
> +	dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
I don't see any hard limit for the VF. I checked the kernel code. It defines 9728 as max frame size, I believe for both PF and VF. It's SW limitation. That's why you see the error.
As kernel PF + dpdk VF is a common user case. I don't object to change the value to 9728. But I think some comments needed here to explain where this value comes from, because we can find the max frame size defined by dpdk,  ETHER_MAX_JUMBO_FRAME_LEN, is different.

>  	dev_info->max_mac_addrs = hw->mac.num_rar_entries;
>  	dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
>  	dev_info->max_vfs = dev->pci_dev->max_vfs;
> --
> 2.9.3
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
  2016-12-14  7:06 ` Yuanhan Liu
@ 2017-01-25  1:39   ` Dai, Wei
  2017-01-25  1:42     ` Dai, Wei
  0 siblings, 1 reply; 6+ messages in thread
From: Dai, Wei @ 2017-01-25  1:39 UTC (permalink / raw)
  To: Yuanhan Liu, Yi Zhang; +Cc: Zhang, Helin, Ananyev, Konstantin, dev, Lu, Wenzhuo

I think your patch does fix an error in ixgbevf and I can acknowledge it after
I have checked with 82599 and x540 and x550 datasheet.

In 82599 datasheet, there is an annotation in the chapter 1.3 Features Summary (page 29)
 The 82599 supports full-size 15.5 KB (15872-byte) jumbo packets while in a basic mode of operation. When DCB mode is enabled,
or security engines enabled or virtualization is enabled, the 82599 supports 9.5 KB (9728-byte) jumbo packets

In x540 datasheet, there is also an annotation in the chapter 1.3 Features Summary (page 13)
The X540 and 82599 support full-size 15.5 KB jumbo packets while in a basic mode of operation. When DCB mode is enabled,
or security engines enabled, or virtualization is enabled, or OS2BMC is enabled, then the X540 supports 9.5 KB jumbo packets.
Packets to/from MC longer than 2KB are filtered out.

In x550 datasheet, there is still also an annotation in the chapter 1.4 Feature Summary (page 23)
All the products support full-size 15.5 KB jumbo packets while in a basic mode of operation. When DCB mode is enabled, or security
engines enabled, or virtualization is enabled, or OS2BMC is enabled, then only 9.5 KB jumbo packets are supported. Packets to/
from the MC longer than 2 KB are filtered out.


> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Yuanhan Liu
> Sent: Wednesday, December 14, 2016 3:06 PM
> To: Yi Zhang <zhang.yi75@zte.com.cn>
> Cc: Zhang, Helin <helin.zhang@intel.com>; Ananyev, Konstantin
> <konstantin.ananyev@intel.com>; dev@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
> 
> On Thu, Dec 15, 2016 at 02:50:19AM +0800, Yi Zhang wrote:
> > Current ixgbevf driver get max_rx_pktlen = 15872, but in fact PF
> > supports 15872-byte jumbo frame and VF only supports 9728-byte jumbo
> > frame. If VF is running DPDK driver and set frame_size > 9728 ,PF
> > running kernel ixgbe driver will report an error and set VF failed.
> > This patch fixs DPDK ixgbevf driver to get correct jumbo frame size of
> > VF.
> >
> > Signed-off-by: Yi Zhang <zhang.yi75@zte.com.cn>
> 
> Hi,
> 
> I saw you have sent this patch 3 times; are you looking for review?
> If so, you should not resend it many times, instead, you could reply to your
> patch if it hasn't got any comments after one week, with something like "some
> one can help review this?", or even a simple "ping ..." might just work.
> 
> Besides that, you should Cc the corresponding maintainers, but not
> "maintainer@some.org", which is just an example: I doubt such email exists.
> 
> You could get the maintainers from the MAINTAINERS. Take ixgbe as example,
> it's:
> 
>     Intel ixgbe
>     M: Helin Zhang <helin.zhang@intel.com>
>     M: Konstantin Ananyev <konstantin.ananyev@intel.com>
>     F: drivers/net/ixgbe/
>     F: doc/guides/nics/ixgbe.rst
>     F: doc/guides/nics/intel_vf.rst
> 
> So for this patch, you should at least Cc (or To) Helin and Konstantin.
> I have done that for you this time.
> 
> 	--yliu
> > ---
> >  drivers/net/ixgbe/ixgbe_ethdev.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c
> > b/drivers/net/ixgbe/ixgbe_ethdev.c
> > index edc9b22..573252c 100644
> > --- a/drivers/net/ixgbe/ixgbe_ethdev.c
> > +++ b/drivers/net/ixgbe/ixgbe_ethdev.c
> > @@ -3168,7 +3168,7 @@ ixgbevf_dev_info_get(struct rte_eth_dev *dev,
> >  	dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
> >  	dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
> >  	dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
> > -	dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS reg */
> > +	dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
> >  	dev_info->max_mac_addrs = hw->mac.num_rar_entries;
> >  	dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
> >  	dev_info->max_vfs = dev->pci_dev->max_vfs;
> > --
> > 2.9.3
> >

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
  2017-01-25  1:39   ` Dai, Wei
@ 2017-01-25  1:42     ` Dai, Wei
  2017-01-25 14:40       ` Ferruh Yigit
  0 siblings, 1 reply; 6+ messages in thread
From: Dai, Wei @ 2017-01-25  1:42 UTC (permalink / raw)
  To: Dai, Wei, Yuanhan Liu, Yi Zhang
  Cc: Zhang, Helin, Ananyev, Konstantin, dev, Lu, Wenzhuo

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Dai, Wei
> Sent: Wednesday, January 25, 2017 9:40 AM
> To: Yuanhan Liu <yuanhan.liu@linux.intel.com>; Yi Zhang
> <zhang.yi75@zte.com.cn>
> Cc: Zhang, Helin <helin.zhang@intel.com>; Ananyev, Konstantin
> <konstantin.ananyev@intel.com>; dev@dpdk.org; Lu, Wenzhuo
> <wenzhuo.lu@intel.com>
> Subject: Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
> 
> I think your patch does fix an error in ixgbevf and I can acknowledge it after I
> have checked with 82599 and x540 and x550 datasheet.
> 
> In 82599 datasheet, there is an annotation in the chapter 1.3 Features
> Summary (page 29)  The 82599 supports full-size 15.5 KB (15872-byte) jumbo
> packets while in a basic mode of operation. When DCB mode is enabled, or
> security engines enabled or virtualization is enabled, the 82599 supports 9.5 KB
> (9728-byte) jumbo packets
> 
> In x540 datasheet, there is also an annotation in the chapter 1.3 Features
> Summary (page 13) The X540 and 82599 support full-size 15.5 KB jumbo
> packets while in a basic mode of operation. When DCB mode is enabled, or
> security engines enabled, or virtualization is enabled, or OS2BMC is enabled,
> then the X540 supports 9.5 KB jumbo packets.
> Packets to/from MC longer than 2KB are filtered out.
> 
> In x550 datasheet, there is still also an annotation in the chapter 1.4 Feature
> Summary (page 23) All the products support full-size 15.5 KB jumbo packets
> while in a basic mode of operation. When DCB mode is enabled, or security
> engines enabled, or virtualization is enabled, or OS2BMC is enabled, then only
> 9.5 KB jumbo packets are supported. Packets to/ from the MC longer than 2 KB
> are filtered out.
> 
> 
> > -----Original Message-----
> > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Yuanhan Liu
> > Sent: Wednesday, December 14, 2016 3:06 PM
> > To: Yi Zhang <zhang.yi75@zte.com.cn>
> > Cc: Zhang, Helin <helin.zhang@intel.com>; Ananyev, Konstantin
> > <konstantin.ananyev@intel.com>; dev@dpdk.org
> > Subject: Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in
> > ixgbevf
> >
> > On Thu, Dec 15, 2016 at 02:50:19AM +0800, Yi Zhang wrote:
> > > Current ixgbevf driver get max_rx_pktlen = 15872, but in fact PF
> > > supports 15872-byte jumbo frame and VF only supports 9728-byte jumbo
> > > frame. If VF is running DPDK driver and set frame_size > 9728 ,PF
> > > running kernel ixgbe driver will report an error and set VF failed.
> > > This patch fixs DPDK ixgbevf driver to get correct jumbo frame size
> > > of VF.
> > >
> > > Signed-off-by: Yi Zhang <zhang.yi75@zte.com.cn>
Acked-by: Wei Dai <wei.dai@intel.com>
> >
> > Hi,
> >
> > I saw you have sent this patch 3 times; are you looking for review?
> > If so, you should not resend it many times, instead, you could reply
> > to your patch if it hasn't got any comments after one week, with
> > something like "some one can help review this?", or even a simple "ping ..."
> might just work.
> >
> > Besides that, you should Cc the corresponding maintainers, but not
> > "maintainer@some.org", which is just an example: I doubt such email exists.
> >
> > You could get the maintainers from the MAINTAINERS. Take ixgbe as
> > example,
> > it's:
> >
> >     Intel ixgbe
> >     M: Helin Zhang <helin.zhang@intel.com>
> >     M: Konstantin Ananyev <konstantin.ananyev@intel.com>
> >     F: drivers/net/ixgbe/
> >     F: doc/guides/nics/ixgbe.rst
> >     F: doc/guides/nics/intel_vf.rst
> >
> > So for this patch, you should at least Cc (or To) Helin and Konstantin.
> > I have done that for you this time.
> >
> > 	--yliu
> > > ---
> > >  drivers/net/ixgbe/ixgbe_ethdev.c | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/net/ixgbe/ixgbe_ethdev.c
> > > b/drivers/net/ixgbe/ixgbe_ethdev.c
> > > index edc9b22..573252c 100644
> > > --- a/drivers/net/ixgbe/ixgbe_ethdev.c
> > > +++ b/drivers/net/ixgbe/ixgbe_ethdev.c
> > > @@ -3168,7 +3168,7 @@ ixgbevf_dev_info_get(struct rte_eth_dev *dev,
> > >  	dev_info->max_rx_queues = (uint16_t)hw->mac.max_rx_queues;
> > >  	dev_info->max_tx_queues = (uint16_t)hw->mac.max_tx_queues;
> > >  	dev_info->min_rx_bufsize = 1024; /* cf BSIZEPACKET in SRRCTL reg */
> > > -	dev_info->max_rx_pktlen = 15872; /* includes CRC, cf MAXFRS reg */
> > > +	dev_info->max_rx_pktlen = 9728; /* includes CRC, cf MAXFRS reg */
> > >  	dev_info->max_mac_addrs = hw->mac.num_rar_entries;
> > >  	dev_info->max_hash_mac_addrs = IXGBE_VMDQ_NUM_UC_MAC;
> > >  	dev_info->max_vfs = dev->pci_dev->max_vfs;
> > > --
> > > 2.9.3
> > >

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
  2017-01-25  1:42     ` Dai, Wei
@ 2017-01-25 14:40       ` Ferruh Yigit
  0 siblings, 0 replies; 6+ messages in thread
From: Ferruh Yigit @ 2017-01-25 14:40 UTC (permalink / raw)
  To: Dai, Wei, Yuanhan Liu, Yi Zhang
  Cc: Zhang, Helin, Ananyev, Konstantin, dev, Lu, Wenzhuo, dpdk stable

On 1/25/2017 1:42 AM, Dai, Wei wrote:
>> -----Original Message-----
>> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Dai, Wei
>> Sent: Wednesday, January 25, 2017 9:40 AM
>> To: Yuanhan Liu <yuanhan.liu@linux.intel.com>; Yi Zhang
>> <zhang.yi75@zte.com.cn>
>> Cc: Zhang, Helin <helin.zhang@intel.com>; Ananyev, Konstantin
>> <konstantin.ananyev@intel.com>; dev@dpdk.org; Lu, Wenzhuo
>> <wenzhuo.lu@intel.com>
>> Subject: Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf
>>
>> I think your patch does fix an error in ixgbevf and I can acknowledge it after I
>> have checked with 82599 and x540 and x550 datasheet.
>>
>> In 82599 datasheet, there is an annotation in the chapter 1.3 Features
>> Summary (page 29)  The 82599 supports full-size 15.5 KB (15872-byte) jumbo
>> packets while in a basic mode of operation. When DCB mode is enabled, or
>> security engines enabled or virtualization is enabled, the 82599 supports 9.5 KB
>> (9728-byte) jumbo packets
>>
>> In x540 datasheet, there is also an annotation in the chapter 1.3 Features
>> Summary (page 13) The X540 and 82599 support full-size 15.5 KB jumbo
>> packets while in a basic mode of operation. When DCB mode is enabled, or
>> security engines enabled, or virtualization is enabled, or OS2BMC is enabled,
>> then the X540 supports 9.5 KB jumbo packets.
>> Packets to/from MC longer than 2KB are filtered out.
>>
>> In x550 datasheet, there is still also an annotation in the chapter 1.4 Feature
>> Summary (page 23) All the products support full-size 15.5 KB jumbo packets
>> while in a basic mode of operation. When DCB mode is enabled, or security
>> engines enabled, or virtualization is enabled, or OS2BMC is enabled, then only
>> 9.5 KB jumbo packets are supported. Packets to/ from the MC longer than 2 KB
>> are filtered out.
>>
>>
>>> -----Original Message-----
>>> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Yuanhan Liu
>>> Sent: Wednesday, December 14, 2016 3:06 PM
>>> To: Yi Zhang <zhang.yi75@zte.com.cn>
>>> Cc: Zhang, Helin <helin.zhang@intel.com>; Ananyev, Konstantin
>>> <konstantin.ananyev@intel.com>; dev@dpdk.org
>>> Subject: Re: [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in
>>> ixgbevf
>>>
>>> On Thu, Dec 15, 2016 at 02:50:19AM +0800, Yi Zhang wrote:
>>>> Current ixgbevf driver get max_rx_pktlen = 15872, but in fact PF
>>>> supports 15872-byte jumbo frame and VF only supports 9728-byte jumbo
>>>> frame. If VF is running DPDK driver and set frame_size > 9728 ,PF
>>>> running kernel ixgbe driver will report an error and set VF failed.
>>>> This patch fixs DPDK ixgbevf driver to get correct jumbo frame size
>>>> of VF.
>>>>

Fixes: 2144f6630fca ("ixgbe: add redirection table size in device info")
Cc: stable@dpdk.org

>>>> Signed-off-by: Yi Zhang <zhang.yi75@zte.com.cn>
> Acked-by: Wei Dai <wei.dai@intel.com>

Applied to dpdk-next-net/master, thanks.

(datasheet references by Wei added into commit log)

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-01-25 14:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-14 18:50 [dpdk-dev] [PATCH v3] net/ixgbe:fix max packet length in ixgbevf Yi Zhang
2016-12-14  7:06 ` Yuanhan Liu
2017-01-25  1:39   ` Dai, Wei
2017-01-25  1:42     ` Dai, Wei
2017-01-25 14:40       ` Ferruh Yigit
2017-01-25  1:21 ` Lu, Wenzhuo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).