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 2EC85A0560; Tue, 18 Oct 2022 03:57:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9CB26410F2; Tue, 18 Oct 2022 03:57:25 +0200 (CEST) Received: from mail-pl1-f170.google.com (mail-pl1-f170.google.com [209.85.214.170]) by mails.dpdk.org (Postfix) with ESMTP id 73A264021E for ; Tue, 18 Oct 2022 03:57:24 +0200 (CEST) Received: by mail-pl1-f170.google.com with SMTP id l1so12425467pld.13 for ; Mon, 17 Oct 2022 18:57:24 -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=fYCXtGuhEtRpptswA04MDJb37Mc6lLpr3tvNwI1lCGs=; b=07UhzIIh3RThXy5N3yzgnXrA+dX4exrVu0/6P3JqX53YfFE+BpKjjk/JQaNkAafTHV vN/Z5TpioAbmKra4Xhl6FtutnTBzbBy31qoflUfZPcR8H7z64aUV0byvN/GKQoJYinMs j7OtIr2RdFi8UH57eaTO/3YICPEaRYR4IdxKKfcPR3xtY6cndlsXhFmTPrV+wRTTx1/E AoaTGh6DKFb8K5RlikUhONBDKbm7D3TKHDqRWDvvvsesifLxDVo2D6q0M6ZRgvS0vnJf 8ZjhGuqjaVQVaXDDzJcDMaTSkFqRZiW5u+w8C3Be35PWAa9mItIg1iVAmzohAqOcWsU4 /7Xw== 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=fYCXtGuhEtRpptswA04MDJb37Mc6lLpr3tvNwI1lCGs=; b=uoJk8NntWxIeupP+/79pY9FfETL1bwSdcRd/S7bFMSEFcSgpkq25t6g8b2DRujwGvf KBlktAFvLh4LEO8lQaIOaeGsIBoKm7yU0mHrgEZBMGXOtca+Ay5D5GTvFmTl6IT1Ce+J 0IFGLpo8Dhhtut8J7OsnGYOJbNKy0yMnqT0fB4SC0wVMxpihec1BAwMkefHp77oFx6TT SoleQ/VXbuF6OSgjx48+xwO75UYOxqeREQU2SceCEPU/1YjU/nMmnOmkWHcxIGMCIQsd DGDGQzZz99X6o5hZHCzRPh8MItb1xtqNcpkWUAE54QKqSwNejVeVM2YE6XFXZ+9aflTH KeSg== X-Gm-Message-State: ACrzQf1ZnLmpBW4l9HwWz4J1dNtUBLRl1j7JWP6mR96l74DyVMbTttz5 NY6zIgf+TwnweEgEhhavgnC5Yk20f7CvYA== X-Google-Smtp-Source: AMsMyM48CpsNkyXF89cZJooED+w1eBmoMAOoMPy3KvaGuhI4wYHS4J1qjLDBKb3hEsgMSSTsj0JJ7w== X-Received: by 2002:a17:90a:1a46:b0:20a:fef9:70f0 with SMTP id 6-20020a17090a1a4600b0020afef970f0mr36760839pjl.190.1666058243546; Mon, 17 Oct 2022 18:57:23 -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.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 17 Oct 2022 18:57:23 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Harman Kalra Subject: [PATCH 1/3] eal: remove experimental from rte_epoll_wait_interruptible Date: Mon, 17 Oct 2022 18:57:18 -0700 Message-Id: <20221018015720.411702-2-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 20.11, so time to make it not experimental. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_epoll.h | 1 - lib/eal/version.map | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/eal/include/rte_epoll.h b/lib/eal/include/rte_epoll.h index 56b7b6bad694..8c73031910fe 100644 --- a/lib/eal/include/rte_epoll.h +++ b/lib/eal/include/rte_epoll.h @@ -85,7 +85,6 @@ rte_epoll_wait(int epfd, struct rte_epoll_event *events, * - On success, returns the number of available event. * - On failure, a negative value. */ -__rte_experimental int rte_epoll_wait_interruptible(int epfd, struct rte_epoll_event *events, int maxevents, int timeout); diff --git a/lib/eal/version.map b/lib/eal/version.map index 2d64a2592e36..3455388cc8c8 100644 --- a/lib/eal/version.map +++ b/lib/eal/version.map @@ -76,6 +76,7 @@ DPDK_23 { rte_eal_wait_lcore; rte_epoll_ctl; rte_epoll_wait; + rte_epoll_wait_interruptible; rte_exit; rte_extmem_attach; rte_extmem_detach; @@ -387,7 +388,6 @@ EXPERIMENTAL { # added in 20.11 __rte_eal_trace_generic_size_t; # WINDOWS_NO_EXPORT rte_cpu_get_intrinsics_support; # WINDOWS_NO_EXPORT - rte_epoll_wait_interruptible; rte_service_lcore_may_be_active; rte_vect_get_max_simd_bitwidth; rte_vect_set_max_simd_bitwidth; -- 2.35.1