Re: [dpdk-dev] [PATCH 3/3] testpmd: use exit instead of panic

2019-08-02 Thread Stephen Hemminger
On Fri, 2 Aug 2019 17:08:26 +0100 "Burakov, Anatoly" wrote: > On 02-Aug-19 3:51 AM, Stephen Hemminger wrote: > > rte_panic causes a backtrace (which is uniformative since all > > these calls are in main). Instead use rte_exit and try and make the > > messages informative. > > > > Signed-off-by:

Re: [dpdk-dev] [PATCH 3/3] testpmd: use exit instead of panic

2019-08-02 Thread Burakov, Anatoly
On 02-Aug-19 3:51 AM, Stephen Hemminger wrote: rte_panic causes a backtrace (which is uniformative since all these calls are in main). Instead use rte_exit and try and make the messages informative. Signed-off-by: Stephen Hemminger --- Missed opportunity for a "keep calm" joke... Reviewed-by

[dpdk-dev] [PATCH 3/3] testpmd: use exit instead of panic

2019-08-01 Thread Stephen Hemminger
rte_panic causes a backtrace (which is uniformative since all these calls are in main). Instead use rte_exit and try and make the messages informative. Signed-off-by: Stephen Hemminger --- app/test-pmd/testpmd.c | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/a