[dpdk-dev] [PATCH v4 5/6] vmxnet3: add TSO support

Thomas Monjalon thomas.monjalon at 6wind.com
Tue Mar 15 21:39:13 CET 2016


2016-01-12 18:08, Yong Wang:
> +               /* Drop non-TSO packet that is excessively fragmented */
> +               if (unlikely(!tso && count > VMXNET3_MAX_TXD_PER_PKT)) {
> +                       PMD_TX_LOG(ERROR, "Non-TSO packet cannot occupy more than %d tx "
> +                                  "descriptors. Packet dropped.", VMXNET3_MAX_TXD_PER_PKT);
> 

It cannot compile because rte_log.h defines RTE_LOG_ERR not RTE_LOG_ERROR.
Will be fixed when rebased on master branch.


More information about the dev mailing list