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 3AEEC41D43; Wed, 22 Feb 2023 22:57:40 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 92A7F4321D; Wed, 22 Feb 2023 22:56:31 +0100 (CET) Received: from mail-pf1-f173.google.com (mail-pf1-f173.google.com [209.85.210.173]) by mails.dpdk.org (Postfix) with ESMTP id A38CF431C8 for ; Wed, 22 Feb 2023 22:56:08 +0100 (CET) Received: by mail-pf1-f173.google.com with SMTP id n20so5278578pfu.12 for ; Wed, 22 Feb 2023 13:56:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=eECXXGmntrXbA8+7KcILaCKIy+GGF4blhlaA75UYdDk=; b=nzRgQ5mJcSJCuh7yOenD7JnEABi+TX3AdI/tPf6ReEfBHU/c4ZFlH70CQzidrqyHm9 DUD37ytqmgG2uED08z9u3WCHV4+WM9/ksBbVOeenBeEfwxZwKY/jQK3VLRpkJQd/OHSi Zuvs/w/4OofNKhqGgtHar/60B8aHTGMcsgLDD/X8cq/apfQhJVakHcvTb7aAF9tfZ1Dt Ar7nXaVx5P8LmOvrXOKDAfxIUYZA7y8HJy4Nahl8sT67MgZ67yunIgnWSQnEwangQZSo wpx9Jl48eV+kQceHmydgKNfsxdHlz5Dh37RFqMxKsC49oQZlFBhCXapAisRbqC3sfqfE HQfg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=eECXXGmntrXbA8+7KcILaCKIy+GGF4blhlaA75UYdDk=; b=Lly98hC/gRAoD/1+O5TDlMwHIWXsEMmIANWtMsgbdzXFPj+SMlWMvcTmY+jY/BuVLz NoCfaRiojveh92ry4WI3ZfVTTPjx7AKxYBYM4Xx/gSp/kVg9cnkG/MmOMKPN+LKxj02U fb9t2KFoxwOIZn8r/gNSqtv6oXcUX0C0RTmxP0r2U7R226inZB1lu60YNGGda/i8tAxh +MglivPupeNGXORABi3Rt6mtxSC5+ZubVwnjzCkocEl4djID7FlT8qrLNqPnAMpep9w4 sIWEPSmhoJ6P/nlgglRit+R+XqR6bf71ALsLI+xtKq6Gia9shVEn2pfXXz5NdImE6OBc Rtmw== X-Gm-Message-State: AO0yUKWUFqfV7/LpsrICTt6BAKh1YizZC3nCNp8+mnFAC0AWJU99fSSt yEd/MPwSmllmG9PYN5VwMi4BapL/gca29WIrQZk= X-Google-Smtp-Source: AK7set+ZYhGp8Xxq52K1Qj0puJT04VlsOMG28MJ2eLKoDfvER5dMy0tMPkN+wWqBIaW0oXaluecDHA== X-Received: by 2002:a62:52d7:0:b0:5a9:d4fa:d3c7 with SMTP id g206-20020a6252d7000000b005a9d4fad3c7mr8329898pfb.7.1677102967900; Wed, 22 Feb 2023 13:56:07 -0800 (PST) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id d7-20020aa78147000000b00571cdbd0771sm6400722pfn.102.2023.02.22.13.56.06 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 22 Feb 2023 13:56:07 -0800 (PST) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Cristian Dumitrescu Subject: [PATCH v11 19/22] pipeline: replace RTE_LOGTYPE_PIPELINE with dynamic type Date: Wed, 22 Feb 2023 13:55:38 -0800 Message-Id: <20230222215541.158205-20-stephen@networkplumber.org> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230222215541.158205-1-stephen@networkplumber.org> References: <20230207204151.1503491-1-stephen@networkplumber.org> <20230222215541.158205-1-stephen@networkplumber.org> MIME-Version: 1.0 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 Use a dynamically allocated logtype. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/pipeline/rte_pipeline.c | 3 +++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/eal/common/eal_common_log.c b/lib/eal/common/eal_common_log.c index d640ed3c88b9..a3498d1a2faf 100644 --- a/lib/eal/common/eal_common_log.c +++ b/lib/eal/common/eal_common_log.c @@ -351,7 +351,6 @@ static const struct logtype logtype_strings[] = { {RTE_LOGTYPE_EAL, "lib.eal"}, {RTE_LOGTYPE_PMD, "pmd"}, {RTE_LOGTYPE_HASH, "lib.hash"}, - {RTE_LOGTYPE_PIPELINE, "lib.pipeline"}, {RTE_LOGTYPE_CRYPTODEV, "lib.cryptodev"}, {RTE_LOGTYPE_EVENTDEV, "lib.eventdev"}, {RTE_LOGTYPE_USER1, "user1"}, diff --git a/lib/eal/include/rte_log.h b/lib/eal/include/rte_log.h index 934bddff9dfa..7473fd53505a 100644 --- a/lib/eal/include/rte_log.h +++ b/lib/eal/include/rte_log.h @@ -41,7 +41,7 @@ extern "C" { /* was RTE_LOGTYPE_SCHED */ /* was RTE_LOGTYPE_PORT */ /* was RTE_LOGTYPE_TABLE */ -#define RTE_LOGTYPE_PIPELINE 15 /**< Log related to pipeline. */ + /* was RTE_LOGTYPE_PIPELINE */ /* was RTE_LOGTYPE_MBUF */ #define RTE_LOGTYPE_CRYPTODEV 17 /**< Log related to cryptodev. */ /* was RTE_LOGTYPE_EFD */ diff --git a/lib/pipeline/rte_pipeline.c b/lib/pipeline/rte_pipeline.c index ff86c7cf96bf..30919cd9fe30 100644 --- a/lib/pipeline/rte_pipeline.c +++ b/lib/pipeline/rte_pipeline.c @@ -12,6 +12,9 @@ #include "rte_pipeline.h" +RTE_LOG_REGISTER_DEFAULT(pipeline_logtype, INFO); +#define RTE_LOGTYPE_PIPELINE pipeline_logtype + #define RTE_TABLE_INVALID UINT32_MAX #ifdef RTE_PIPELINE_STATS_COLLECT -- 2.39.1