[dpdk-dev] [PATCH v6] enic: receive path performance improvements

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


2016-03-04 13:09, John Daley:
> +#ifdef RTE_NEXT_ABI
> +               pkt_err_flags |= PKT_RX_MAC_ERR;
> +#else
> +               pkt_err_flags |= PKT_EXT_RX_PKT_ERROR;
> +#endif
> +       }
> +
> +       /* Check for bad FCS. MAC error isn't quite, but no other choice */
> +       if (!enic_cq_rx_desc_fcs_ok(cqrd)) {
> +#ifdef RTE_NEXT_ABI
> +               pkt_err_flags |= PKT_RX_MAC_ERR;
> +#else
> +               pkt_err_flags |= PKT_EXT_RX_BAD_FCS;
> +#endif

It seems to be a mistake, leading to build failure when NEXT_ABI is disabled.
Will be fixed when rebased on master branch.


More information about the dev mailing list