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 AE0584300E; Tue, 8 Aug 2023 19:37:10 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C05D843296; Tue, 8 Aug 2023 19:35:54 +0200 (CEST) Received: from mail-pf1-f171.google.com (mail-pf1-f171.google.com [209.85.210.171]) by mails.dpdk.org (Postfix) with ESMTP id 5B12B43284 for ; Tue, 8 Aug 2023 19:35:51 +0200 (CEST) Received: by mail-pf1-f171.google.com with SMTP id d2e1a72fcca58-686d8c8fc65so4162633b3a.0 for ; Tue, 08 Aug 2023 10:35:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20221208.gappssmtp.com; s=20221208; t=1691516150; x=1692120950; 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=p5ODpMrN8kIUmAYIND+RniYVMDSLMfiFa4G5Xbxs090=; b=FIUT+rAKEjo46pmM3nMfaf/bbn53OS8YiTU2m/aBP/sY1ZGGCqePayIHQdqE+9xs4l rdGCUQFJ40Goq8O6rrPgMFdNgDm0B6CBSqf/a3pxu/bzRmgvZ1DOQKQgiJRK5uIrPmFD dYi0gufEkhvGYK70CwGSBh2QI0XAGsjmrjUgrA6eHfXjJg0SimN9wTvs84sCb2bsazVC IPGHEvLqdvWzgOFW5uBLQzSZtbGPVQq4yC4/ERTl6w2mQq8zg6quH6hYjGOnyWEoGCs1 KStv65rBJNVFbe9TBHaYS23uTwpWShJvOFewEbnGK4ZKm7bSyXHweOlkiJrKDn51I/At 2YUw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1691516150; x=1692120950; 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=p5ODpMrN8kIUmAYIND+RniYVMDSLMfiFa4G5Xbxs090=; b=HBKepUsveqtEPntN5L92R1CmmXwDgNe8pXJtPiYxdDy/aF/Jzo1ZGDQ77RLn3zuGDp yIwSElS1W2am0FeWORhLoYODhYljAYUnABR04JxJbPYXJ8UFeInpu7a7I1D/n2/S0CAe WHzz5i6JlVD3VH4hKUs1syL82Cdc2SCEe36fc42IoXQ3vUd6k4I1D5KxPiUbC2Azte4+ KU1ceXc0m5bErHwmijwX5OAaWAXmdqOO2e4fc1v+aJl4qakUK8iJdyQL4uXJHEA0yq/9 I3zmB/k6ViNEO3hL1gEdaxH3RQO/XlSSjvZNEGUcnXwmmpYcRXW3MevsCPvtjVsMPOah +BRQ== X-Gm-Message-State: AOJu0YztJ2BacsslnqpxesJ1BJZ2OuI7ZqrlhPlqsokA/ypHQLfRIJ0p UwEOltWBhw4I4Y5rdu6pHjmfX8pWX7yrm0sk7W7f2A== X-Google-Smtp-Source: AGHT+IEsjCmaXm1GhqRLZxCncmoEKfyaUwTC0eVDxJJ1HYsJ+nbXwI2fDm9THEBzIf06h7x2G57WDw== X-Received: by 2002:a05:6a00:138f:b0:687:2d90:acfc with SMTP id t15-20020a056a00138f00b006872d90acfcmr219813pfg.2.1691516150375; Tue, 08 Aug 2023 10:35:50 -0700 (PDT) Received: from hermes.local (204-195-127-207.wavecable.com. [204.195.127.207]) by smtp.gmail.com with ESMTPSA id m13-20020aa7900d000000b00682562bf479sm8328945pfo.53.2023.08.08.10.35.49 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 08 Aug 2023 10:35:49 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Erik Gabriel Carrillo Subject: [PATCH 12/20] timer: remove experimental from rte_timer_next_ticks Date: Tue, 8 Aug 2023 10:35:19 -0700 Message-Id: <20230808173527.186042-13-stephen@networkplumber.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230808173527.186042-1-stephen@networkplumber.org> References: <20230808173527.186042-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 Function was added in 20.11, remove experimental flag. Signed-off-by: Stephen Hemminger --- lib/timer/rte_timer.h | 4 ---- lib/timer/version.map | 7 +------ 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/lib/timer/rte_timer.h b/lib/timer/rte_timer.h index c8710c4dc9b1..df791cfbd626 100644 --- a/lib/timer/rte_timer.h +++ b/lib/timer/rte_timer.h @@ -332,9 +332,6 @@ void rte_timer_stop_sync(struct rte_timer *tim); int rte_timer_pending(struct rte_timer *tim); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice - * * Time until the next timer on the current lcore * This function gives the ticks until the next timer will be active. * @@ -344,7 +341,6 @@ int rte_timer_pending(struct rte_timer *tim); * - 0: a timer is pending and will run at next rte_timer_manage() * - >0: ticks until the next timer is ready */ -__rte_experimental int64_t rte_timer_next_ticks(void); /** diff --git a/lib/timer/version.map b/lib/timer/version.map index e3d5a043034c..b180708e2488 100644 --- a/lib/timer/version.map +++ b/lib/timer/version.map @@ -10,6 +10,7 @@ DPDK_24 { rte_timer_dump_stats; rte_timer_init; rte_timer_manage; + rte_timer_next_ticks; rte_timer_pending; rte_timer_reset; rte_timer_reset_sync; @@ -21,9 +22,3 @@ DPDK_24 { local: *; }; - -EXPERIMENTAL { - global: - - rte_timer_next_ticks; -}; -- 2.39.2