[dpdk-dev] [PATCH] kni: ignore double calls to rte_kni_init()
Zhang, Helin
helin.zhang at intel.com
Mon Jun 15 03:08:46 CEST 2015
Hi Marc
> -----Original Message-----
> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Marc Sune
> Sent: Monday, June 1, 2015 8:33 AM
> To: dev at dpdk.org
> Subject: [dpdk-dev] [PATCH] kni: ignore double calls to rte_kni_init()
>
> Prevent double initialization of the KNI subsytem.
>
> Signed-off-by: Marc Sune <marc.sune at bisdn.de>
> ---
> lib/librte_kni/rte_kni.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/lib/librte_kni/rte_kni.c b/lib/librte_kni/rte_kni.c index
> c5a0089..df0449f 100644
> --- a/lib/librte_kni/rte_kni.c
> +++ b/lib/librte_kni/rte_kni.c
> @@ -201,6 +201,10 @@ rte_kni_init(unsigned int max_kni_ifaces)
> char obj_name[OBJNAMSIZ];
> char mz_name[RTE_MEMZONE_NAMESIZE];
>
> + /* Immediately return if KNI is already initialized */
> + if (kni_memzone_pool.initialized)
> + return;
I'd prefer to have a debug log before returning out, as there is no error code for it.
Thanks,
Helin
> +
> if (max_kni_ifaces == 0) {
> RTE_LOG(ERR, KNI, "Invalid number of max_kni_ifaces %d\n",
> max_kni_ifaces);
> --
> 2.1.4
More information about the dev
mailing list