Message ID | 20210114110606.21142-8-bruce.richardson@intel.com (mailing list archive) |
---|---|
State | Superseded, archived |
Delegated to: | David Marchand |
Headers | show |
Series | ensure headers have correct includes | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
diff --git a/lib/librte_bitratestats/rte_bitrate.h b/lib/librte_bitratestats/rte_bitrate.h index 4865929e8f..7e34529687 100644 --- a/lib/librte_bitratestats/rte_bitrate.h +++ b/lib/librte_bitratestats/rte_bitrate.h @@ -6,6 +6,7 @@ #define _RTE_BITRATE_H_ #include <stdint.h> +#include <rte_compat.h> #ifdef __cplusplus extern "C" {
The rte_compat.h header file must be included to get the definition of __rte_experimental. Fixes: f030bff72f81 ("bitrate: add free function") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> --- lib/librte_bitratestats/rte_bitrate.h | 1 + 1 file changed, 1 insertion(+)