From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 75C64A04C5; Fri, 4 Sep 2020 01:05:12 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6F9A81C0B5; Fri, 4 Sep 2020 01:05:07 +0200 (CEST) Received: from mail-pj1-f49.google.com (mail-pj1-f49.google.com [209.85.216.49]) by dpdk.org (Postfix) with ESMTP id BB5371C0B1 for ; Fri, 4 Sep 2020 01:05:05 +0200 (CEST) Received: by mail-pj1-f49.google.com with SMTP id 2so2270905pjx.5 for ; Thu, 03 Sep 2020 16:05:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=GUpMMDzw0wzq6KZqDDSSCT+Ic+gmlHs0aenhphRPlFI=; b=bmfSqYVzCqXms9d7dieyqalD24q3I1nAG/VwlhSvv3tJGoaNdSxJRg9GRtnkMqRNBf UY4eu8wfQQb1gt6EbxZhynSJCWKVVe+2+V8+Dmyt9gpHGAlSUvrfRHgMPgchIjGGzCZH pha0QI8NDJ7+cm54xt0z7PVK+k4yM/IecuNyn0tFJF3glGBLwWEor33JNH9Qyv6VJVDg hILhMD2/7roAV+WjqWO/D70GPAi7QCeRK36m9TM3j8v9z46s7qiebuIAqFCW6CCAqCFz Rp/+WGVHoP6Rlo5H+4v7+5ZyVekH0IIg0PRROjw8xBY4bMkhQGgoMTR/0SzYKjjkZ1hm lfqQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=GUpMMDzw0wzq6KZqDDSSCT+Ic+gmlHs0aenhphRPlFI=; b=jT+HmKuO5Tbu9br4Y6tg/8cNarBenv49G61EJWkScx6xCbGqWXveM8QfoFXyvCKENd oRKSfW7lkC+aPuglKrj8asKtfNiH/lZi961kpZbntnCFfTsl35k2mGifP+WyejgyB7Uq rtZuKhonjlQBTntyvAg4D21wJQsJ7lORIzzpBchdGzHuWjTkQatQtVFDEKwIu1dd9kn8 oZodhrKi8ZPsTb7taozopJcwmyCreFv1xcUPFxOUSJr1IG2C/Zn8uPSeuWGX884D4laA Xci72tuFnvlS4OJzzFL2gqCXH0ncG3NZe8hoSSSGT/KcICGrPGzQ+Tapn779VCDTq9Ah VnQg== X-Gm-Message-State: AOAM5332pjyZZBxMIxKFKJ55Ex+lIvGnyokbiVCKbhRocc+0412vFjkt R22ZI6XuuN6pwGcK1IPmym96hu+eSGR6gw== X-Google-Smtp-Source: ABdhPJyIuvHG6WS21tg9RhuskY47CyHbPGQmyt0WXual3JVWErB2dRwH7LeYfj5nLrtgAnsynI5bBg== X-Received: by 2002:a17:90a:2ac6:: with SMTP id i6mr2670629pjg.181.1599174304355; Thu, 03 Sep 2020 16:05:04 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id i1sm3773790pgq.41.2020.09.03.16.05.03 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 03 Sep 2020 16:05:03 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , David Marchand Date: Thu, 3 Sep 2020 16:04:53 -0700 Message-Id: <20200903230454.30602-2-stephen@networkplumber.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200903230454.30602-1-stephen@networkplumber.org> References: <20200827225414.6623-1-stephen@networkplumber.org> <20200903230454.30602-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2 1/2] rte_log: take experimental tag off of rte_log_get_stream X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Applications will need to use this API now to get internal state of rte_log. Suggested-by: David Marchand Signed-off-by: Stephen Hemminger --- lib/librte_eal/include/rte_log.h | 1 - lib/librte_eal/rte_eal_version.map | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/librte_eal/include/rte_log.h b/lib/librte_eal/include/rte_log.h index eaf66e4f61de..7fe0968383db 100644 --- a/lib/librte_eal/include/rte_log.h +++ b/lib/librte_eal/include/rte_log.h @@ -112,7 +112,6 @@ int rte_openlog_stream(FILE *f); * @return * Pointer to the stream. */ -__rte_experimental FILE *rte_log_get_stream(void); /** diff --git a/lib/librte_eal/rte_eal_version.map b/lib/librte_eal/rte_eal_version.map index 0b18e2ef85f9..0564f2fdc7aa 100644 --- a/lib/librte_eal/rte_eal_version.map +++ b/lib/librte_eal/rte_eal_version.map @@ -109,6 +109,7 @@ DPDK_21 { rte_log_dump; rte_log_get_global_level; rte_log_get_level; + rte_log_get_stream; rte_log_register; rte_log_set_global_level; rte_log_set_level; @@ -330,7 +331,6 @@ EXPERIMENTAL { rte_rand_max; # added in 19.11 - rte_log_get_stream; rte_mcfg_get_single_file_segments; # added in 20.02 -- 2.27.0