From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B88CA436AD; Fri, 8 Dec 2023 21:46:42 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A3CF9432E2; Fri, 8 Dec 2023 21:46:42 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 945DA40144; Fri, 8 Dec 2023 21:46:40 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id BA05D20B74C0; Fri, 8 Dec 2023 12:46:39 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com BA05D20B74C0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1702068399; bh=ckgPt5K3NqeiAVUQNV/o1mg7cu8PEmZeEbdCmce+RNk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=T0NsFw29eu5fQ4U5d48PEo2WO6R6kcn8EIDd5lokmUpzRGx/las9Rm0djTVMmbywS J90BpT9fn5tpxtx/Z9Vmta2YjWHGCMsJhdcioiCU/+//ZVPUj+asubjyjd/ouH0kAE 7F5NGx6SdtHo6xecXUUcj5SHTAzzsZKX3MnsZUdg= Date: Fri, 8 Dec 2023 12:46:39 -0800 From: Tyler Retzlaff To: David Marchand Cc: dev@dpdk.org, thomas@monjalon.net, ferruh.yigit@amd.com, bruce.richardson@intel.com, stephen@networkplumber.org, mb@smartsharesystems.com, stable@dpdk.org, Ori Kam , Parav Pandit , Guy Kaneti Subject: Re: [RFC v2 02/14] regexdev: fix logtype register Message-ID: <20231208204639.GB5699@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20231117131824.1977792-1-david.marchand@redhat.com> <20231208145950.2184940-1-david.marchand@redhat.com> <20231208145950.2184940-3-david.marchand@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231208145950.2184940-3-david.marchand@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Fri, Dec 08, 2023 at 03:59:36PM +0100, David Marchand wrote: > This library logtype was not initialized so its logs would end up under > the 0 logtype, iow, RTE_LOGTYPE_EAL. > > Fixes: b25246beaefc ("regexdev: add core functions") > Cc: stable@dpdk.org > > Signed-off-by: David Marchand > --- Reviewed-by: Tyler Retzlaff