telemetry: cleanup internal header

The experimental banner can be removed.
Every in-tree file is compiled with _GNU_SOURCE, so RTE_HAS_CPUSET is
unneeded for an internal header.

Fixes: 0e64ae618e ("telemetry: move init function to internal header")

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Ciara Power <ciara.power@intel.com>
This commit is contained in:
David Marchand 2021-03-26 09:24:47 +01:00
parent b2f24588b5
commit 6545d6c52b
2 changed files with 2 additions and 8 deletions

View File

@ -6,7 +6,6 @@
#include <sched.h>
#include <rte_compat.h>
#include <rte_os.h>
#ifndef _RTE_TELEMETRY_H_
#define _RTE_TELEMETRY_H_

View File

@ -6,13 +6,12 @@
#define _RTE_TELEMETRY_INTERNAL_H_
#include <rte_compat.h>
#include <rte_os.h>
#include "rte_telemetry.h"
/**
* @internal
* @warning
* @b EXPERIMENTAL: this API may change without prior notice
*
* @file
* RTE Telemetry Legacy and internal definitions
*
@ -84,8 +83,6 @@ rte_telemetry_legacy_register(const char *cmd,
enum rte_telemetry_legacy_data_req data_req,
telemetry_legacy_cb fn);
#ifdef RTE_HAS_CPUSET
/**
* @internal
* Log function type, to allow passing as parameter if necessary
@ -115,6 +112,4 @@ int
rte_telemetry_init(const char *runtime_dir, const char *rte_version, rte_cpuset_t *cpuset,
rte_log_fn log_fn, uint32_t registered_logtype);
#endif /* RTE_HAS_CPUSET */
#endif