From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: [PATCH] log: add missing experimental tag Date: Tue, 4 Dec 2018 09:28:31 +0100 Message-ID: <1543912111-8106-1-git-send-email-david.marchand@redhat.com> Cc: stable@dpdk.org, nhorman@tuxdriver.com, tredaelli@redhat.com, ferruh.yigit@intel.com, ivan.malov@oktetlabs.ru, arybchenko@solarflare.com To: dev@dpdk.org Return-path: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" When rte_log_register_type_and_pick_level() has been introduced, it has been correctly added to the EXPERIMENTAL section of the eal map and the symbol itself has been marked at its definition. However, the declaration of this symbol in rte_log.h is missing the __rte_experimental tag. Because of this, a user can try to call this symbol without being aware this is an experimental api (neither compilation nor link warning). Fixes: b22e77c02620 ("eal: register log type and pick level from args") Signed-off-by: David Marchand --- lib/librte_eal/common/include/rte_log.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_eal/common/include/rte_log.h b/lib/librte_eal/common/include/rte_log.h index 2f789cb..f334efc 100644 --- a/lib/librte_eal/common/include/rte_log.h +++ b/lib/librte_eal/common/include/rte_log.h @@ -24,6 +24,7 @@ #include #include +#include struct rte_log_dynamic_type; @@ -226,6 +227,7 @@ struct rte_logs { * - >=0: the newly registered log type * - <0: rte_log_register() error value */ +__rte_experimental int rte_log_register_type_and_pick_level(const char *name, uint32_t level_def); /** -- 1.8.3.1