File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -1353,15 +1353,12 @@ dpdk_eth_dev_init(struct netdev_dpdk *dev)
1353
1353
info .tx_offload_capa &= ~RTE_ETH_TX_OFFLOAD_TCP_CKSUM ;
1354
1354
}
1355
1355
1356
- if (!strcmp (info .driver_name , "net_ice" )
1357
- || !strcmp (info .driver_name , "net_i40e" )
1358
- || !strcmp (info .driver_name , "net_iavf" )
1359
- || !strcmp (info .driver_name , "net_txgbe" )) {
1356
+ if (!strcmp (info .driver_name , "net_txgbe" )) {
1360
1357
/* FIXME: Driver advertises the capability but doesn't seem
1361
1358
* to actually support it correctly. Can remove this once
1362
1359
* the driver is fixed on DPDK side. */
1363
1360
VLOG_INFO ("%s: disabled Tx outer udp checksum offloads for a "
1364
- "net/ice, net/i40e, net/iavf or net/ txgbe port." ,
1361
+ "net/txgbe port." ,
1365
1362
netdev_get_name (& dev -> up ));
1366
1363
info .tx_offload_capa &= ~RTE_ETH_TX_OFFLOAD_OUTER_UDP_CKSUM ;
1367
1364
info .tx_offload_capa &= ~RTE_ETH_TX_OFFLOAD_VXLAN_TNL_TSO ;
You can’t perform that action at this time.
0 commit comments