标签:str off 默认 func code 无效 nbsp set dpdk
打开IXGBE调试日志发发现:tx使用ixgbe_xmit_pkts_vec,默认tx offload无效了
PMD: ixgbe_set_tx_function(): Using simple tx code path
PMD: ixgbe_set_tx_function(): Vector tx enabled.
PMD: ixgbe_set_tx_function(): Using ixgbe_xmit_pkts_vec
解法:
打开ixgbe_ethdev.c 3113行 修订:
dev_info->default_txconf = (struct rte_eth_txconf) {
……
.txq_flags = 0/*ETH_TXQ_FLAGS_NOMULTSEGS |
ETH_TXQ_FLAGS_NOOFFLOADS*/,
};
DPDK 16.04/16.11.2 默认tx offload是关闭的引起tx vlan offload无效
标签:str off 默认 func code 无效 nbsp set dpdk
原文地址:http://www.cnblogs.com/mull/p/7260074.html