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 C186141C44; Thu, 9 Feb 2023 00:52:10 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5E03840DDA; Thu, 9 Feb 2023 00:52:10 +0100 (CET) Received: from forward501b.mail.yandex.net (forward501b.mail.yandex.net [178.154.239.145]) by mails.dpdk.org (Postfix) with ESMTP id 4C1994067B for ; Thu, 9 Feb 2023 00:52:09 +0100 (CET) Received: from myt6-fe378243d6ea.qloud-c.yandex.net (myt6-fe378243d6ea.qloud-c.yandex.net [IPv6:2a02:6b8:c12:488f:0:640:fe37:8243]) by forward501b.mail.yandex.net (Yandex) with ESMTP id A02B95F4FB; Thu, 9 Feb 2023 02:52:08 +0300 (MSK) Received: by myt6-fe378243d6ea.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id 6qnBim5ZB0U1-kolDu189; Thu, 09 Feb 2023 02:52:07 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1675900328; bh=TC/MzYHUECLzxX/LwPS/v7yq7zuh/RyRUeJHi/XfUa0=; h=From:In-Reply-To:Cc:Date:References:To:Subject:Message-ID; b=TYwY9En9sdXn3m+t5KLXvivMScR/9bow5d/2sLLzsoFCKZlF5OFiWg3+/8Rsfk/BU mSxsMnluXLjOoSMw/TwHmTpNib1GTnO6fqTVpg/cQx8VMdYCGS4pUpj7Y6GPX5BEYJ 6aHIpyw1pFR5H+7/BJ3iG3Y+XJt14QYCBH9F1xF0= Authentication-Results: myt6-fe378243d6ea.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <5cb1e5ba-3e4e-b2fd-0646-29bfcb1f7846@yandex.ru> Date: Wed, 8 Feb 2023 23:52:04 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [PATCH 1/5] ip_frag: use a dynamic logtype Content-Language: en-US To: Stephen Hemminger , dev@dpdk.org Cc: Anatoly Burakov , Thomas Monjalon References: <20230208044825.1682620-1-stephen@networkplumber.org> <20230208044825.1682620-2-stephen@networkplumber.org> From: Konstantin Ananyev In-Reply-To: <20230208044825.1682620-2-stephen@networkplumber.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit 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 08/02/2023 04:48, Stephen Hemminger пишет: > DPDK libraries should not be reusing RTE_LOGTYPE_USER1 in > lieu of doing proper logtype registration. > > Fixes: 416707812c03 ("ip_frag: refactor reassembly code into a proper library") > Signed-off-by: Stephen Hemminger > --- > lib/ip_frag/ip_frag_common.h | 16 ++- > lib/ip_frag/ip_frag_internal.c | 174 +++++++++++++++--------------- > lib/ip_frag/rte_ip_frag_common.c | 13 +-- > lib/ip_frag/rte_ipv4_reassembly.c | 14 ++- > lib/ip_frag/rte_ipv6_reassembly.c | 59 +++++----- > 5 files changed, 138 insertions(+), 138 deletions(-) Acked-by: Konstantin Ananyev