Re: [dpdk-dev] [PATCH v2] service: print errors to rte log

2019-10-15 Thread David Marchand
On Wed, Aug 21, 2019 at 11:11 AM Harry van Haaren wrote: > > From: Stephen Hemminger > > EAL should always use rte_log instead of putting errors to > stderr (which maybe redirected to /dev/null in a daemon). > > Also checks for null before rte_free are unnecessary. > Minor code consistency improv

[dpdk-dev] [PATCH v2] service: print errors to rte log

2019-08-21 Thread Harry van Haaren
From: Stephen Hemminger EAL should always use rte_log instead of putting errors to stderr (which maybe redirected to /dev/null in a daemon). Also checks for null before rte_free are unnecessary. Minor code consistency improvements. Signed-off-by: Stephen Hemminger Signed-off-by: Harry van Haar