]> git.droids-corp.org - dpdk.git/commitdiff
lib: fix missing includes in exported headers
authorAdrien Mazarguil <adrien.mazarguil@6wind.com>
Thu, 21 Dec 2017 13:00:04 +0000 (14:00 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 16 Jan 2018 23:31:05 +0000 (00:31 +0100)
Many exported headers rely on definitions found in rte_config.h without
including it, as shown by the following command:

 grep -L '^#include <rte_config.h>' -- \
  $(grep -Rl \
    $(sed -n '/^#define \([^ ]\+\).*$/{s//\1/;H;};${x;s/\n//;s/\n/\\|/g;p;}' \
      build/include/rte_config.h) \
    -- build/include/)

We cannot assume external applications will include rte_config.h on their
own, neither directly nor through a -include parameter like DPDK does
internally.

This not only causes obvious compilation failures that can be reproduced
with check-includes.sh such as:

 [...]/rte_memory.h:88:43: error: ‘RTE_CACHE_LINE_SIZE’ was not declared in
     this scope
  #define __rte_cache_aligned __rte_aligned(RTE_CACHE_LINE_SIZE)
                                            ^

It also results in less visible issues, for instance rte_hash_crc.h relying
on RTE_ARCH_X86_64's presence to provide dedicated inline functions.

This patch partially reverts the commit below and adds missing include
lines to the remaining files.

Fixes: f1a7a5c5f404 ("remove include of generated config header")
Cc: stable@dpdk.org
Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
41 files changed:
drivers/net/avp/rte_avp_common.h
lib/librte_cmdline/cmdline_cirbuf.h
lib/librte_cryptodev/rte_cryptodev.h
lib/librte_cryptodev/rte_cryptodev_pmd.h
lib/librte_eal/common/include/arch/x86/rte_atomic.h
lib/librte_eal/common/include/arch/x86/rte_byteorder.h
lib/librte_eal/common/include/arch/x86/rte_cycles.h
lib/librte_eal/common/include/arch/x86/rte_memcpy.h
lib/librte_eal/common/include/arch/x86/rte_vect.h
lib/librte_eal/common/include/generic/rte_byteorder.h
lib/librte_eal/common/include/rte_bitmap.h
lib/librte_eal/common/include/rte_common.h
lib/librte_eal/common/include/rte_dev.h
lib/librte_eal/common/include/rte_eal.h
lib/librte_eal/common/include/rte_eal_memconfig.h
lib/librte_eal/common/include/rte_keepalive.h
lib/librte_eal/common/include/rte_lcore.h
lib/librte_eal/common/include/rte_log.h
lib/librte_eal/common/include/rte_memory.h
lib/librte_eal/common/include/rte_service.h
lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h
lib/librte_ether/rte_ethdev.h
lib/librte_ether/rte_ethdev_pci.h
lib/librte_ether/rte_ethdev_vdev.h
lib/librte_eventdev/rte_eventdev.h
lib/librte_eventdev/rte_eventdev_pmd.h
lib/librte_eventdev/rte_eventdev_pmd_pci.h
lib/librte_eventdev/rte_eventdev_pmd_vdev.h
lib/librte_hash/rte_fbk_hash.h
lib/librte_hash/rte_hash_crc.h
lib/librte_hash/rte_jhash.h
lib/librte_hash/rte_thash.h
lib/librte_ip_frag/rte_ip_frag.h
lib/librte_lpm/rte_lpm.h
lib/librte_mbuf/rte_mbuf.h
lib/librte_member/rte_member.h
lib/librte_mempool/rte_mempool.h
lib/librte_ring/rte_ring.h
lib/librte_table/rte_lru.h
lib/librte_table/rte_lru_x86.h
lib/librte_timer/rte_timer.h

index 54437e9a1181a08a01eacd04d039b20eb835c008..81dfe5ea6a94e3bcea0cec01ed03365fcc52f7ac 100644 (file)
@@ -63,6 +63,7 @@
 #else
 #include <stdint.h>
 #include <rte_common.h>
+#include <rte_config.h>
 #include <rte_memory.h>
 #include <rte_ether.h>
 #include <rte_atomic.h>
index 6321dec5c3704565f2b37259aef7884d0f5afadc..87407efa142785396ea4ae923ac2f0299305ae9d 100644 (file)
@@ -61,6 +61,8 @@
 #ifndef _CIRBUF_H_
 #define _CIRBUF_H_
 
+#include <rte_config.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
index dade5548f588c8a3129c896dfd626effb9559363..ed92f9822e328282a185249669f1261c0aa516e8 100644 (file)
@@ -49,6 +49,7 @@ extern "C" {
 #include "rte_crypto.h"
 #include "rte_dev.h"
 #include <rte_common.h>
+#include <rte_config.h>
 
 extern const char **rte_cyptodev_names;
 
index 744405e2f5edd1286b70ee7a8040e396460a21af..c3bf91c3cfcb3945eb5f23f15a654ed2aa69ad9d 100644 (file)
@@ -46,6 +46,7 @@ extern "C" {
 
 #include <string.h>
 
+#include <rte_config.h>
 #include <rte_dev.h>
 #include <rte_malloc.h>
 #include <rte_mbuf.h>
index 8469f97e193ad96ff6fb1d6abeaf8c3d1930e8ac..36cfabc38f09171be11a0d4ce8d2ad826494d3fa 100644 (file)
@@ -11,6 +11,7 @@ extern "C" {
 
 #include <stdint.h>
 #include <rte_common.h>
+#include <rte_config.h>
 #include <emmintrin.h>
 #include "generic/rte_atomic.h"
 
index 56b0a31e2377e4c28fa621075dbaa1814b727e62..a2dfecc1f55f19cb321506d8fc78e48faa1c1264 100644 (file)
@@ -11,6 +11,7 @@ extern "C" {
 
 #include <stdint.h>
 #include <rte_common.h>
+#include <rte_config.h>
 #include "generic/rte_byteorder.h"
 
 #ifndef RTE_BYTE_ORDER
index 1bb3e1dbe70ec849ae2a0ddfc6ed064924d38f37..b95beced9a8b89f9e656b23d2d1f7fcea15d1621 100644 (file)
@@ -47,6 +47,7 @@ extern int rte_cycles_vmware_tsc_map;
 #include <rte_branch_prediction.h>
 #endif
 #include <rte_common.h>
+#include <rte_config.h>
 
 static inline uint64_t
 rte_rdtsc(void)
index c166fb00c0b5d8ba2290c4b2e2d4679f8a9f5a45..cc140ecca9f59b50c9844912ce56824f7a35e186 100644 (file)
@@ -16,6 +16,7 @@
 #include <string.h>
 #include <rte_vect.h>
 #include <rte_common.h>
+#include <rte_config.h>
 
 #ifdef __cplusplus
 extern "C" {
index a7d531d1a4ece37801bddce1f71f8f2803af89c1..cf4e9db3835b5c2085da04710cca738f865ec424 100644 (file)
@@ -12,6 +12,7 @@
  */
 
 #include <stdint.h>
+#include <rte_config.h>
 #include "generic/rte_vect.h"
 
 #if (defined(__ICC) || (__GNUC__ == 4 &&  __GNUC_MINOR__ < 4))
index f3167636c55400a037890bc06a3af1f7cdc4c0ad..9bed85cca1f82cf6e66bee5ba19c4e9a7aede356 100644 (file)
@@ -22,6 +22,7 @@
 #endif
 
 #include <rte_common.h>
+#include <rte_config.h>
 
 /*
  * Compile-time endianness detection
index 9425aceb603eb4bf45db36e93588f6c533b4ec8e..7d4935fcca569f985cf684974f66da7aca4e772b 100644 (file)
@@ -37,6 +37,7 @@ extern "C" {
 
 #include <string.h>
 #include <rte_common.h>
+#include <rte_config.h>
 #include <rte_debug.h>
 #include <rte_memory.h>
 #include <rte_branch_prediction.h>
index 9b9294edb082cf95ab51a607a6878c24f991a44f..c7803e41c10d66c5536a2e4a6dfc55007c82eb02 100644 (file)
@@ -22,6 +22,8 @@ extern "C" {
 #include <errno.h>
 #include <limits.h>
 
+#include <rte_config.h>
+
 #ifndef typeof
 #define typeof __typeof__
 #endif
index 9342e0cbd2ed99dcab711c8c9cbb09b484d01ac2..8088dcc538c943113d69feaa4aa73cff88169869 100644 (file)
@@ -49,6 +49,7 @@ extern "C" {
 #include <stdio.h>
 #include <sys/queue.h>
 
+#include <rte_config.h>
 #include <rte_log.h>
 
 __attribute__((format(printf, 2, 0)))
index 02fa109680aed9668bdd46a23da82dcb74b36652..2aba2c8bd4db1ccabc25e0836624ddaf4014c73c 100644 (file)
@@ -14,6 +14,7 @@
 #include <stdint.h>
 #include <sched.h>
 
+#include <rte_config.h>
 #include <rte_per_lcore.h>
 #include <rte_bus.h>
 
index e195b274267a1d12d227a909d0fa02ba754a697b..29fa0b60d5f706541a68ae44ed6a7d46f3c33f57 100644 (file)
@@ -5,6 +5,7 @@
 #ifndef _RTE_EAL_MEMCONFIG_H_
 #define _RTE_EAL_MEMCONFIG_H_
 
+#include <rte_config.h>
 #include <rte_tailq.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
index 88ad8e487a5efd8d57e97e7e6362bbd0f7ad2c1d..e9f8f083a16ace988a862b737a71209593b1d624 100644 (file)
@@ -39,6 +39,7 @@
 #ifndef _KEEPALIVE_H_
 #define _KEEPALIVE_H_
 
+#include <rte_config.h>
 #include <rte_memory.h>
 
 #ifndef RTE_KEEPALIVE_MAXCORES
index 223658baeaf0bfad1e0c3e465a0d2eba8ce2ee4a..d84bcffba877c76c0aa899bdc47e82da13bfb4d7 100644 (file)
@@ -11,6 +11,7 @@
  * API for lcore and socket manipulation
  *
  */
+#include <rte_config.h>
 #include <rte_per_lcore.h>
 #include <rte_eal.h>
 #include <rte_launch.h>
index 83faddf703df52bde2a8eb87d1f95f0f302cdbd2..9029c7856d31a2de1c5d53afb54afea64122aa2d 100644 (file)
@@ -22,6 +22,7 @@ extern "C" {
 #include <stdarg.h>
 
 #include <rte_common.h>
+#include <rte_config.h>
 
 struct rte_log_dynamic_type;
 
index ed5a3be8af8201a50b5211cb9c94f842a7dc5f10..302f865b14c4eb39f75165172d1632d03dcbd84c 100644 (file)
@@ -20,6 +20,7 @@ extern "C" {
 #endif
 
 #include <rte_common.h>
+#include <rte_config.h>
 
 __extension__
 enum rte_page_sizes {
index 85e964b05511b19317333a508669ad600a07e57f..02b1512f644ae9505460e2412144618fb1ed9a03 100644 (file)
@@ -31,6 +31,7 @@ extern "C" {
 #include <stdint.h>
 #include <sys/queue.h>
 
+#include <rte_config.h>
 #include <rte_lcore.h>
 
 #define RTE_SERVICE_NAME_MAX 32
index 9e7b5ea495ecc0218c6b245913704b0a3e477358..61ace6f26d5d85e241af66ef83cd2a9697a08ac5 100644 (file)
@@ -11,6 +11,7 @@
 #define RTE_STD_C11
 #else
 #include <rte_common.h>
+#include <rte_config.h>
 #endif
 
 /**
index f0eeefe6a3a49fc25b4e7682b2c53156f93bc020..a5ba5641292ad74ae38209a8ac43ece13cec7cfc 100644 (file)
@@ -152,6 +152,7 @@ extern "C" {
 #include <rte_devargs.h>
 #include <rte_errno.h>
 #include <rte_common.h>
+#include <rte_config.h>
 
 #include "rte_ether.h"
 #include "rte_eth_ctrl.h"
index 722075e0963afcaff04eebda2a122ffe3a3b83f0..ad64a169c763f6664d464ad2596be94facc202ca 100644 (file)
@@ -37,6 +37,7 @@
 #include <rte_malloc.h>
 #include <rte_pci.h>
 #include <rte_bus_pci.h>
+#include <rte_config.h>
 #include <rte_ethdev.h>
 
 /**
index ff92e6ed0ee2999d94f0c1a9beed490b5099c61f..feb5a3eb09259fab52a11e446339cbb4116d991a 100644 (file)
@@ -34,6 +34,7 @@
 #ifndef _RTE_ETHDEV_VDEV_H_
 #define _RTE_ETHDEV_VDEV_H_
 
+#include <rte_config.h>
 #include <rte_malloc.h>
 #include <rte_bus_vdev.h>
 #include <rte_ethdev.h>
index f1949ff7d83fd0046d8b9d3868df3782dca4ce42..9134b498487533661f771e3e6a0012239b728e68 100644 (file)
@@ -239,6 +239,7 @@ extern "C" {
 #endif
 
 #include <rte_common.h>
+#include <rte_config.h>
 #include <rte_memory.h>
 #include <rte_errno.h>
 
index c2fd09c02f00806a03ee8f59f3ee6bf8ba5ef266..b485a57d0e20e33cab65e032e46e9b51d8195aca 100644 (file)
@@ -20,6 +20,7 @@ extern "C" {
 #include <string.h>
 
 #include <rte_common.h>
+#include <rte_config.h>
 #include <rte_dev.h>
 #include <rte_log.h>
 #include <rte_malloc.h>
index 32a077e3c958709ddd66f8d465d253a360f5c492..8fb61386fde28184b1161ea5b3d54cfc8446c6d5 100644 (file)
@@ -20,6 +20,7 @@ extern "C" {
 
 #include <string.h>
 
+#include <rte_config.h>
 #include <rte_eal.h>
 #include <rte_lcore.h>
 #include <rte_pci.h>
index e1e1cd966c58de93843d7a09fe79960900c0a38c..8c64a067431e51c2d67b6aa7ce8df72dc8572846 100644 (file)
@@ -19,6 +19,7 @@ extern "C" {
 
 #include <string.h>
 
+#include <rte_config.h>
 #include <rte_debug.h>
 #include <rte_eal.h>
 #include <rte_bus_vdev.h>
index ad472802b39f4eb949f481ecfe632733ab142256..09158781b4af5597e256b2826f50929543f8a800 100644 (file)
@@ -25,6 +25,7 @@ extern "C" {
 
 #include <string.h>
 
+#include <rte_config.h>
 #ifndef RTE_FBK_HASH_FUNC_DEFAULT
 #if defined(RTE_ARCH_X86) || defined(RTE_MACHINE_CPUFLAG_CRC32)
 #include <rte_hash_crc.h>
index e61d57da01338f6c413f45f58df3157529a445a1..479f84b1491bf680779b4593dadf3c622f310219 100644 (file)
@@ -16,6 +16,7 @@ extern "C" {
 #endif
 
 #include <stdint.h>
+#include <rte_config.h>
 #include <rte_cpuflags.h>
 #include <rte_branch_prediction.h>
 #include <rte_common.h>
index 3eca13858b39222224675767a399b0cafd5c8c90..42c45685be63be7e31500b5dc105341d36dfdbba 100644 (file)
@@ -48,6 +48,7 @@ extern "C" {
 #include <string.h>
 #include <limits.h>
 
+#include <rte_config.h>
 #include <rte_log.h>
 #include <rte_byteorder.h>
 
index 4fa5e07a5e104824e8755956b9fb8a5a5788e7f8..a6ddb7bf7f72b264697928c53def5b6315288cb7 100644 (file)
@@ -53,6 +53,7 @@ extern "C" {
 
 #include <stdint.h>
 #include <rte_byteorder.h>
+#include <rte_config.h>
 #include <rte_ip.h>
 #include <rte_common.h>
 
index b24badee9f9ef398f1f48cc9057aa26a89c71817..b3f3f78df9548bb9a69af4501c3d6610ea70f3a8 100644 (file)
@@ -19,6 +19,7 @@ extern "C" {
 #include <stdint.h>
 #include <stdio.h>
 
+#include <rte_config.h>
 #include <rte_malloc.h>
 #include <rte_memory.h>
 #include <rte_ip.h>
index 12c22a640272d3c0892c4f97b2206f0e964c41e4..21550444d1493f36c3b6b47e4e1f438f488534ea 100644 (file)
@@ -16,6 +16,7 @@
 #include <stdlib.h>
 #include <rte_branch_prediction.h>
 #include <rte_byteorder.h>
+#include <rte_config.h>
 #include <rte_memory.h>
 #include <rte_common.h>
 #include <rte_vect.h>
index 6cba632b97fa9af80339a1d1388acf3a50b2548c..a827e6e2ffbd7fa7b4b92b9aaf5037e0fd8a6952 100644 (file)
@@ -62,6 +62,7 @@
 
 #include <stdint.h>
 #include <rte_common.h>
+#include <rte_config.h>
 #include <rte_mempool.h>
 #include <rte_memory.h>
 #include <rte_atomic.h>
index b7787678f5b131e065925f1d07bd6b97752bd81e..ab2b232170c66cb454adcc6fbde98a0dc02a9879 100644 (file)
@@ -52,6 +52,7 @@ extern "C" {
 #include <stdint.h>
 
 #include <rte_common.h>
+#include <rte_config.h>
 
 /** The set ID type that stored internally in hash table based set summary. */
 typedef uint16_t member_set_t;
index 721227f6dac341698d34ee019e4a2f609c98a299..e21026aa77edc5a54a5db14e0564ceec26439947 100644 (file)
@@ -69,6 +69,7 @@
 #include <inttypes.h>
 #include <sys/queue.h>
 
+#include <rte_config.h>
 #include <rte_spinlock.h>
 #include <rte_log.h>
 #include <rte_debug.h>
index e92443813b5bf52e0e127907d1d0d29ae47a5f42..7069d52e293dddb9b5fa6a8786d5a19ca788afd0 100644 (file)
@@ -96,6 +96,7 @@ extern "C" {
 #include <sys/queue.h>
 #include <errno.h>
 #include <rte_common.h>
+#include <rte_config.h>
 #include <rte_memory.h>
 #include <rte_lcore.h>
 #include <rte_atomic.h>
index 7c45e682c21315b96fca96b9892e9b22890e0042..88229d8632663f28d1d3cf64c68c563ca415a101 100644 (file)
@@ -9,6 +9,7 @@
 extern "C" {
 #endif
 
+#include <rte_config.h>
 #ifdef RTE_ARCH_X86_64
 #include "rte_lru_x86.h"
 #elif defined(RTE_ARCH_ARM64)
index 372a09fb209bb599e87b70b5916ca0a59b605699..7a67ee8bd580660a8d78d84660587fdab8443178 100644 (file)
@@ -11,6 +11,8 @@ extern "C" {
 
 #include <stdint.h>
 
+#include <rte_config.h>
+
 #ifndef RTE_TABLE_HASH_LRU_STRATEGY
 #define RTE_TABLE_HASH_LRU_STRATEGY                        2
 #endif
index 7d3998b797f51608163bdf7c42b91b1b87fb5ee2..9b95cd2c9870d20a81aa5340a90b0d15f7626def 100644 (file)
@@ -38,6 +38,7 @@
 #include <stdint.h>
 #include <stddef.h>
 #include <rte_common.h>
+#include <rte_config.h>
 
 #ifdef __cplusplus
 extern "C" {