All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net/i40e: fix I40e start failing for missing JUMBO_FRAME offload
@ 2018-04-17  7:28 Yanglong Wu
  2018-04-17 10:38 ` Zhang, Qi Z
  2018-04-18  1:42 ` [PATCH v2] " Yanglong Wu
  0 siblings, 2 replies; 7+ messages in thread
From: Yanglong Wu @ 2018-04-17  7:28 UTC (permalink / raw)
  To: dev; +Cc: qi.z.zhang, wei.dai, lei.a.yao, Yanglong Wu

JUMBO_FRAME offload should be set as default,
missing it will lead to start failing for I40e.

Signed-off-by: Yanglong Wu <yanglong.wu@intel.com>
---
 drivers/net/i40e/i40e_ethdev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c
index 180ac7449..c3bd254ae 100644
--- a/drivers/net/i40e/i40e_ethdev.c
+++ b/drivers/net/i40e/i40e_ethdev.c
@@ -3228,7 +3228,8 @@ i40e_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
 		DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
 		DEV_RX_OFFLOAD_CRC_STRIP |
 		DEV_RX_OFFLOAD_VLAN_EXTEND |
-		DEV_RX_OFFLOAD_VLAN_FILTER;
+		DEV_RX_OFFLOAD_VLAN_FILTER |
+		DEV_RX_OFFLOAD_JUMBO_FRAME;
 
 	dev_info->tx_queue_offload_capa = 0;
 	dev_info->tx_offload_capa =
-- 
2.11.0

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

end of thread, other threads:[~2018-04-27  7:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-17  7:28 [PATCH] net/i40e: fix I40e start failing for missing JUMBO_FRAME offload Yanglong Wu
2018-04-17 10:38 ` Zhang, Qi Z
2018-04-18  1:42 ` [PATCH v2] " Yanglong Wu
2018-04-18 12:16   ` Zhang, Qi Z
2018-04-19  2:10   ` [PATCH] " Yanglong Wu
2018-04-19  2:19   ` [PATCH v3] net/i40e:fix missing jumbo frame offload capability Yanglong Wu
2018-04-27  7:27     ` Zhang, Helin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.