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 61D6A41C58; Fri, 10 Feb 2023 02:08:09 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 65007427F2; Fri, 10 Feb 2023 02:08:07 +0100 (CET) Received: from mail-pl1-f172.google.com (mail-pl1-f172.google.com [209.85.214.172]) by mails.dpdk.org (Postfix) with ESMTP id 0E44D40EDB for ; Fri, 10 Feb 2023 02:08:04 +0100 (CET) Received: by mail-pl1-f172.google.com with SMTP id b5so4904047plz.5 for ; Thu, 09 Feb 2023 17:08:04 -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=UPtCDG0D5nzLcLmm+TqbH2Ry/IqpvLKXmxojNPcvGac=; b=xhr8M+x9Xq531RzhVvuemj7ut6p30idShzqRPbwfUBYZOS2O7WPh0UwYI7cLWLMzIK Ky58y0h/KH+vi/8bsjycu+BVl1j9AbCFESJEtkl7c4kmGtP7Rz0LtZb4lGTdmZbFnuV1 C8anp27I0qQEY3xc0LM5z2Ol73z477kUa5vzViYc2FtOHFyhyUdZwg1ipkcEr6PtRphX ACsR1c8HTPzmuJaxssPI5FKVKLYyR6+pbVL/nUrPKMaC6/mkD86afkH54eULgxswFoA2 XoPwdEwmP0rmURQaFyBhfFS0o7Q3r6/mNhCLs45yn79t9vQ8TQE1ABI0LcGQ3bJpUuYX 4QSA== 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=UPtCDG0D5nzLcLmm+TqbH2Ry/IqpvLKXmxojNPcvGac=; b=ejFy6RMHpom2kqUaZAn2mmNtu3OQB2oPLvz4KM+7JpKK8eVAMmupA9ty/ppORHP0sp rwKowx6XnGQVjUXh83npqJSEtmV+By9rKPUipET2+HBsWsIOFNrI+b12PcqQ5B7Cs1dz jHRBKnMb3G7agVe6f5AwKhmnBjJn1/hgQreBIlTSp3qW3esq11iSS0Xt50umA2sbucCA F7aVHbtIjBqQ7athr2bkhrxS3waKNEnBhrD+opke4Ti2u3qIQEKmDv1PDBpLjspuQO3d 76Nxb5zLA9//RglemqMIWZVdUk2lnDBFCQdC/acdMVztXIU2eZCSCZMGpQ0KoY4xkIHC N9qg== X-Gm-Message-State: AO0yUKWSrFH71L53iic1hTQrg5CIksRtBTFBJ7YCA3BTzWj2NJFqZEFC Ne/9NaytZScJBS49VB+O6n5aucuYEfAyiJSynj8= X-Google-Smtp-Source: AK7set9pvCJsoBHOhrXSE8hwDbIlketvQzGpxv6Sg0xFRookxe2px1vcK3O1vgP0D9Qe+5eL/ISovQ== X-Received: by 2002:a17:902:e843:b0:199:2a89:f912 with SMTP id t3-20020a170902e84300b001992a89f912mr15083671plg.20.1675991283904; Thu, 09 Feb 2023 17:08:03 -0800 (PST) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id jd9-20020a170903260900b0019625428cefsm2103023plb.281.2023.02.09.17.08.03 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 09 Feb 2023 17:08:03 -0800 (PST) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Subject: [PATCH v3 02/16] log: drop unused RTE_LOGTYPE_TIMER Date: Thu, 9 Feb 2023 17:07:10 -0800 Message-Id: <20230210010724.890413-3-stephen@networkplumber.org> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230210010724.890413-1-stephen@networkplumber.org> References: <20230207204151.1503491-1-stephen@networkplumber.org> <20230210010724.890413-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 The timer code does not use rte_log. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/eal/common/eal_common_log.c b/lib/eal/common/eal_common_log.c index c369154cb1ea..e7ccde1c9ccd 100644 --- a/lib/eal/common/eal_common_log.c +++ b/lib/eal/common/eal_common_log.c @@ -352,7 +352,6 @@ static const struct logtype logtype_strings[] = { {RTE_LOGTYPE_MALLOC, "lib.malloc"}, {RTE_LOGTYPE_RING, "lib.ring"}, {RTE_LOGTYPE_MEMPOOL, "lib.mempool"}, - {RTE_LOGTYPE_TIMER, "lib.timer"}, {RTE_LOGTYPE_PMD, "pmd"}, {RTE_LOGTYPE_HASH, "lib.hash"}, {RTE_LOGTYPE_LPM, "lib.lpm"}, diff --git a/lib/eal/include/rte_log.h b/lib/eal/include/rte_log.h index 97d6b26a9967..361d1ad96299 100644 --- a/lib/eal/include/rte_log.h +++ b/lib/eal/include/rte_log.h @@ -30,7 +30,7 @@ extern "C" { #define RTE_LOGTYPE_MALLOC 1 /**< Log related to malloc. */ #define RTE_LOGTYPE_RING 2 /**< Log related to ring. */ #define RTE_LOGTYPE_MEMPOOL 3 /**< Log related to mempool. */ -#define RTE_LOGTYPE_TIMER 4 /**< Log related to timers. */ + /* was RTE_LOGTYPE_TIMER */ #define RTE_LOGTYPE_PMD 5 /**< Log related to poll mode driver. */ #define RTE_LOGTYPE_HASH 6 /**< Log related to hash table. */ #define RTE_LOGTYPE_LPM 7 /**< Log related to LPM. */ -- 2.39.1