Re: [dpdk-dev] [PATCH 07/10] examples/l3fwd: add function return value check

2023-06-30 Thread Stephen Hemminger
On Mon, 19 Apr 2021 21:34:46 +0800 "Min Hu (Connor)" wrote: > From: HongBo Zheng > > Return value of a function 'rte_eth_macaddr_get' called at > l3fwd_eth_dev_port_setup is not checked, but it is usually > checked for this function. > > This patch fix this problem. > > Fixes: a65bf3d724df ("

[dpdk-dev] [PATCH 07/10] examples/l3fwd: add function return value check

2021-04-19 Thread Min Hu (Connor)
From: HongBo Zheng Return value of a function 'rte_eth_macaddr_get' called at l3fwd_eth_dev_port_setup is not checked, but it is usually checked for this function. This patch fix this problem. Fixes: a65bf3d724df ("examples/l3fwd: add ethdev setup based on eventdev") Cc: sta...@dpdk.org Signed