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 37296A0560; Tue, 18 Oct 2022 03:57:34 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 69BE2410EE; Tue, 18 Oct 2022 03:57:28 +0200 (CEST) Received: from mail-pl1-f182.google.com (mail-pl1-f182.google.com [209.85.214.182]) by mails.dpdk.org (Postfix) with ESMTP id 63E70410E7 for ; Tue, 18 Oct 2022 03:57:25 +0200 (CEST) Received: by mail-pl1-f182.google.com with SMTP id k9so12024624pll.11 for ; Mon, 17 Oct 2022 18:57:25 -0700 (PDT) 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=3iiw7KAXM8F3lQ0YyP8ylVug3EE4QB61ABlLq9t6Kv0=; b=KJ960c1xp/U5Bo/8fIQxjMNUB1y8tQE7YBO0dwXkRtjNdFR7aWDxkffEqmsGbm8LuQ 6uxp/55sUfoGadwru/F2E+UqtZvyMWTnQaieR+wgC1aDK3Hu+l/U8lzV03bKD2tbNjEx 9fEnJPKPvxeBD02JZ3i1/ZnYm1JQVHyX4Fd71IBsf0QlUnfZfI6dPBZGXKh86O1l1eoU J0/HPOxfdo9sx8vZ3929RfQkSN8L2l43/N1yZH007UWJNKTmeuIAt6QYjVvUcCVwDdja Fh2H/QiTR90GkS1Vsj03RCGC5Vrk8bhQw72Ay+K8NLZj1cpElsFug8mYdbtY1eJmkMQ8 +ptA== 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=3iiw7KAXM8F3lQ0YyP8ylVug3EE4QB61ABlLq9t6Kv0=; b=ZQ7bFx2w8HrjU2n5jlr0BIP71lSnXXng4b5pbNktciB9SaeRSxtzuNil6zsavy6qZl oGqqeC7xVTR6mH/MADVMY6V1f9Ogcd/bKFe6ExQwCEeliBd15D8CoJWwcHBcFGJuX/I1 7mASehtENA4JTcVJz74BJllgTf6PkxwbC9rL6IVJdJMDQHkqb2Q62g5F1NC+aH3ruZry le6CoyPXSbeZdBDFuzyzrQwJMo3+wY1Re4r1SALEp9wN96GJV+FWzSVwszRExB2bDoGb 2d91eltNWnMKe4QtpBoJ+7VmCst4dZd/CZ00gZOIt5zTNzywu0CfRvNIPX+h/CqQ/Pjl dxHg== X-Gm-Message-State: ACrzQf0ASWelALZObZ2XDuw9lBUtxuz9KPaKBnut0fM7ov75F14DBjiV 6jeXdupiWjNzDayKCgsUalQaK5XrU2XUOw== X-Google-Smtp-Source: AMsMyM4jGPZnvZ323vCP3BT7BQH++F7K5N4wt/7RzNT4anddVJbaLeqA/kq6JrZOM87VDDZiX1BEyA== X-Received: by 2002:a17:902:f64d:b0:178:a963:d400 with SMTP id m13-20020a170902f64d00b00178a963d400mr631728plg.6.1666058244433; Mon, 17 Oct 2022 18:57:24 -0700 (PDT) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id u15-20020a17090341cf00b0017f93a4e330sm7210064ple.193.2022.10.17.18.57.23 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 17 Oct 2022 18:57:24 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Subject: [PATCH 2/3] eal: make rte_log_list_types not experimental Date: Mon, 17 Oct 2022 18:57:19 -0700 Message-Id: <20221018015720.411702-3-stephen@networkplumber.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20221018015720.411702-1-stephen@networkplumber.org> References: <20221018015720.411702-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 This call was added in 21.05 so time to make it stable. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_log.h | 4 ---- lib/eal/version.map | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/eal/include/rte_log.h b/lib/eal/include/rte_log.h index 25ce42cdfc4d..bba5da3d85dc 100644 --- a/lib/eal/include/rte_log.h +++ b/lib/eal/include/rte_log.h @@ -235,9 +235,6 @@ int rte_log_register(const char *name); int rte_log_register_type_and_pick_level(const char *name, uint32_t level_def); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice - * * Dump name of each logtype, one per line. * * @param out @@ -245,7 +242,6 @@ int rte_log_register_type_and_pick_level(const char *name, uint32_t level_def); * @param prefix * String preceding each logtype in the output. */ -__rte_experimental void rte_log_list_types(FILE *out, const char *prefix); /** diff --git a/lib/eal/version.map b/lib/eal/version.map index 3455388cc8c8..7ad12a7dc985 100644 --- a/lib/eal/version.map +++ b/lib/eal/version.map @@ -148,6 +148,7 @@ DPDK_23 { rte_log_get_global_level; rte_log_get_level; rte_log_get_stream; + rte_log_list_types; rte_log_register; rte_log_register_type_and_pick_level; rte_log_set_global_level; @@ -400,7 +401,6 @@ EXPERIMENTAL { # added in 21.05 rte_devargs_reset; rte_intr_callback_unregister_sync; - rte_log_list_types; rte_thread_key_create; rte_thread_key_delete; rte_thread_value_get; -- 2.35.1