Re: [dpdk-dev] [PATCH] examples/helloworld: add eal clean up to the example

2021-04-13 Thread Min Hu (Connor)
在 2021/4/8 21:09, Min Hu (Connor) 写道: 在 2021/4/8 19:21, David Marchand 写道: On Thu, Apr 8, 2021 at 12:17 PM Min Hu (Connor) wrote: From: Chengchang Tang According to the programming guide, the rte_eal_init should be used pairs with rte_eal_cleanup. So, we should add the use of clean

Re: [dpdk-dev] [PATCH] examples/helloworld: add eal clean up to the example

2021-04-08 Thread Min Hu (Connor)
在 2021/4/8 19:21, David Marchand 写道: On Thu, Apr 8, 2021 at 12:17 PM Min Hu (Connor) wrote: From: Chengchang Tang According to the programming guide, the rte_eal_init should be used pairs with rte_eal_cleanup. So, we should add the use of clean up to the hello world example to encourage

Re: [dpdk-dev] [PATCH] examples/helloworld: add eal clean up to the example

2021-04-08 Thread David Marchand
On Thu, Apr 8, 2021 at 12:17 PM Min Hu (Connor) wrote: > > From: Chengchang Tang > > According to the programming guide, the rte_eal_init should be used pairs > with rte_eal_cleanup. > > So, we should add the use of clean up to the hello world example to > encourage new users of DPDK to use it. >

[dpdk-dev] [PATCH] examples/helloworld: add eal clean up to the example

2021-04-08 Thread Min Hu (Connor)
From: Chengchang Tang According to the programming guide, the rte_eal_init should be used pairs with rte_eal_cleanup. So, we should add the use of clean up to the hello world example to encourage new users of DPDK to use it. Fixes: af75078fece3 ("first public release") Cc: sta...@dpdk.org Sign