config: remove useless explicit includes of generated header
The file rte_config.h is automatically generated and included. No need to #include it. The example performance-thread needs a makefile fix to avoid overwriting the default cflags. Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
ad8f40dabe
commit
50810f095a
@ -42,7 +42,6 @@
|
||||
#include <getopt.h>
|
||||
|
||||
#include <rte_eal.h>
|
||||
#include <rte_config.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_ethdev.h>
|
||||
|
@ -40,7 +40,6 @@
|
||||
#include "test.h"
|
||||
|
||||
#include <rte_power.h>
|
||||
#include <rte_config.h>
|
||||
|
||||
#define TEST_POWER_VM_LCORE_ID 0U
|
||||
#define TEST_POWER_VM_LCORE_OUT_OF_BOUNDS (RTE_MAX_LCORE+1)
|
||||
|
@ -31,7 +31,6 @@
|
||||
*/
|
||||
|
||||
#include <rte_common.h>
|
||||
#include <rte_config.h>
|
||||
#include <rte_hexdump.h>
|
||||
#include <rte_cryptodev.h>
|
||||
#include <rte_cryptodev_pmd.h>
|
||||
|
@ -73,7 +73,6 @@
|
||||
#ifdef PEDANTIC
|
||||
#pragma GCC diagnostic ignored "-pedantic"
|
||||
#endif
|
||||
#include <rte_config.h>
|
||||
#include <rte_ether.h>
|
||||
#include <rte_ethdev.h>
|
||||
#include <rte_dev.h>
|
||||
|
@ -41,7 +41,6 @@
|
||||
#include <signal.h>
|
||||
|
||||
#include <rte_eal.h>
|
||||
#include <rte_config.h>
|
||||
#include <rte_cycles.h>
|
||||
#include <rte_eal_memconfig.h>
|
||||
#include <rte_debug.h>
|
||||
|
@ -74,7 +74,6 @@
|
||||
#include <sys/time.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_log.h>
|
||||
#include <ctx.h>
|
||||
|
||||
|
@ -73,7 +73,6 @@
|
||||
#include <sys/mman.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_common.h>
|
||||
|
||||
|
@ -31,7 +31,6 @@
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_common.h>
|
||||
|
||||
|
@ -44,7 +44,6 @@
|
||||
#include <sys/time.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_per_lcore.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_spinlock.h>
|
||||
|
@ -76,7 +76,6 @@
|
||||
#include <sys/mman.h>
|
||||
#include <sched.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_prefetch.h>
|
||||
#include <rte_per_lcore.h>
|
||||
#include <rte_atomic.h>
|
||||
|
@ -45,7 +45,6 @@
|
||||
#include <execinfo.h>
|
||||
#include <sched.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_ring.h>
|
||||
|
@ -46,7 +46,7 @@ SRCS-y := main.c pthread_shim.c
|
||||
INCLUDES := -I$(RTE_SDK)/$(RTE_TARGET)/include -I$(SRCDIR)
|
||||
include $(RTE_SDK)/examples/performance-thread/common/common.mk
|
||||
|
||||
CFLAGS= -g -O3 $(USER_FLAGS) $(INCLUDES)
|
||||
CFLAGS += -g -O3 $(USER_FLAGS) $(INCLUDES)
|
||||
CFLAGS += $(WERROR_FLAGS)
|
||||
|
||||
LDFLAGS += -lpthread
|
||||
|
@ -47,7 +47,6 @@
|
||||
#include <sched.h>
|
||||
#include <pthread.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_common.h>
|
||||
#include <rte_lcore.h>
|
||||
#include <rte_per_lcore.h>
|
||||
|
@ -39,7 +39,6 @@
|
||||
#include <sched.h>
|
||||
#include <dlfcn.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_log.h>
|
||||
|
||||
#include "lthread_api.h"
|
||||
|
@ -45,7 +45,6 @@
|
||||
#include <sys/socket.h>
|
||||
#include <sys/select.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_memory.h>
|
||||
#include <rte_mempool.h>
|
||||
|
@ -42,7 +42,6 @@
|
||||
#include <sys/epoll.h>
|
||||
#include <sys/queue.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_memory.h>
|
||||
#include <rte_malloc.h>
|
||||
|
@ -48,7 +48,6 @@
|
||||
#include <rte_lcore.h>
|
||||
#include <rte_power.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_config.h>
|
||||
|
||||
#include "vm_power_cli_guest.h"
|
||||
|
||||
|
@ -43,7 +43,6 @@
|
||||
#include <cmdline_parse_num.h>
|
||||
#include <cmdline_socket.h>
|
||||
#include <cmdline.h>
|
||||
#include <rte_config.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_lcore.h>
|
||||
|
||||
|
@ -52,7 +52,6 @@
|
||||
#include <rte_per_lcore.h>
|
||||
#include <rte_lcore.h>
|
||||
#include <rte_debug.h>
|
||||
#include <rte_config.h>
|
||||
|
||||
#include "channel_manager.h"
|
||||
#include "channel_monitor.h"
|
||||
|
@ -43,7 +43,6 @@
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <rte_log.h>
|
||||
#include <rte_power.h>
|
||||
#include <rte_spinlock.h>
|
||||
|
@ -45,7 +45,6 @@
|
||||
#include <cmdline_parse_num.h>
|
||||
#include <cmdline_socket.h>
|
||||
#include <cmdline.h>
|
||||
#include <rte_config.h>
|
||||
|
||||
#include "vm_power_cli.h"
|
||||
#include "channel_manager.h"
|
||||
|
@ -35,7 +35,6 @@
|
||||
|
||||
#include <exec-env/rte_kni_common.h>
|
||||
#include "kni_dev.h"
|
||||
#include <rte_config.h>
|
||||
|
||||
MODULE_LICENSE("Dual BSD/GPL");
|
||||
MODULE_AUTHOR("Intel Corporation");
|
||||
|
@ -36,7 +36,6 @@
|
||||
#include <linux/kthread.h>
|
||||
#include <linux/delay.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <exec-env/rte_kni_common.h>
|
||||
#include <kni_fifo.h>
|
||||
#include "kni_dev.h"
|
||||
|
@ -71,7 +71,6 @@
|
||||
#include <xen/xen-ops.h>
|
||||
#include <xen/interface/memory.h>
|
||||
|
||||
#include <rte_config.h>
|
||||
#include <exec-env/rte_dom0_common.h>
|
||||
|
||||
#include "compat.h"
|
||||
|
@ -42,7 +42,6 @@
|
||||
|
||||
|
||||
#include <rte_log.h>
|
||||
#include <rte_config.h>
|
||||
|
||||
#include "guest_channel.h"
|
||||
#include "channel_commands.h"
|
||||
|
@ -34,7 +34,6 @@
|
||||
#include <string.h>
|
||||
|
||||
#include <rte_log.h>
|
||||
#include <rte_config.h>
|
||||
|
||||
#include "guest_channel.h"
|
||||
#include "channel_commands.h"
|
||||
|
Loading…
Reference in New Issue
Block a user