Re: [dpdk-dev] [PATCH 08/11] app: fix exit messages

2021-03-10 Thread Wisam Monther
Hi, > -Original Message- > From: Thomas Monjalon > Sent: Wednesday, March 10, 2021 1:31 AM > To: dev@dpdk.org > Cc: david.march...@redhat.com; Declan Doherty > ; Ciara Power ; Wisam > Monther ; Xiaoyun Li ; Ori > Kam > Subject: [PATCH 08/11] app: fix exit messages > > Some applications

Re: [dpdk-dev] [PATCH 08/11] app: fix exit messages

2021-03-09 Thread Ori Kam
Hi > -Original Message- > From: Thomas Monjalon > Subject: [PATCH 08/11] app: fix exit messages > > Some applications were printing useless messages with rte_exit() > after showing the help. Using exit() is enough in this case. > > Some applications were using a redundant printf or fpri

[dpdk-dev] [PATCH 08/11] app: fix exit messages

2021-03-09 Thread Thomas Monjalon
Some applications were printing useless messages with rte_exit() after showing the help. Using exit() is enough in this case. Some applications were using a redundant printf or fprintf() before calling rte_exit(). The messages are unified in a single rte_exit(). Some rte_exit() calls were missing