[dpdk-dev] [PATCH 01/13] net/bnxt: check return values in bnxt_dev_init

Stephen Hemminger stephen at networkplumber.org
Mon Jan 8 21:53:35 CET 2018


On Mon,  8 Jan 2018 12:24:25 -0800
Ajit Khaparde <ajit.khaparde at broadcom.com> wrote:

> +	rc = bnxt_hwrm_queue_qportcfg(bp);
> +	if (rc) {
> +		RTE_LOG(ERR, PMD, "hwrm queue qportcfg failed\n");
> +		goto error_free;
> +	}

I noticed that this driver is still using RTE_LOG directly.
The current desired behaviour is for each driver to define its own dynamic
log type (see i40e for an example).


More information about the dev mailing list