From 50810f095aa70986a9d2cc8a53b7b8db3f6ffb17 Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Mon, 8 Feb 2016 15:18:22 +0100 Subject: [PATCH] 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 --- app/proc_info/main.c | 1 - app/test/test_power_kvm_vm.c | 1 - drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c | 1 - drivers/net/mlx4/mlx4.c | 1 - examples/l2fwd-ivshmem/host/host.c | 1 - examples/performance-thread/common/lthread.c | 1 - examples/performance-thread/common/lthread_cond.c | 1 - examples/performance-thread/common/lthread_diag.c | 1 - examples/performance-thread/common/lthread_mutex.c | 1 - examples/performance-thread/common/lthread_sched.c | 1 - examples/performance-thread/common/lthread_tls.c | 1 - examples/performance-thread/pthread_shim/Makefile | 2 +- examples/performance-thread/pthread_shim/main.c | 1 - examples/performance-thread/pthread_shim/pthread_shim.c | 1 - examples/vm_power_manager/channel_manager.c | 1 - examples/vm_power_manager/channel_monitor.c | 1 - examples/vm_power_manager/guest_cli/main.c | 1 - examples/vm_power_manager/guest_cli/vm_power_cli_guest.c | 1 - examples/vm_power_manager/main.c | 1 - examples/vm_power_manager/power_manager.c | 1 - examples/vm_power_manager/vm_power_cli.c | 1 - lib/librte_eal/linuxapp/kni/kni_misc.c | 1 - lib/librte_eal/linuxapp/kni/kni_net.c | 1 - lib/librte_eal/linuxapp/xen_dom0/dom0_mm_misc.c | 1 - lib/librte_power/guest_channel.c | 1 - lib/librte_power/rte_power_kvm_vm.c | 1 - 26 files changed, 1 insertion(+), 26 deletions(-) diff --git a/app/proc_info/main.c b/app/proc_info/main.c index 6448d7be69..341176db70 100644 --- a/app/proc_info/main.c +++ b/app/proc_info/main.c @@ -42,7 +42,6 @@ #include #include -#include #include #include #include diff --git a/app/test/test_power_kvm_vm.c b/app/test/test_power_kvm_vm.c index 6fdb34474c..ff468c1e5b 100644 --- a/app/test/test_power_kvm_vm.c +++ b/app/test/test_power_kvm_vm.c @@ -40,7 +40,6 @@ #include "test.h" #include -#include #define TEST_POWER_VM_LCORE_ID 0U #define TEST_POWER_VM_LCORE_OUT_OF_BOUNDS (RTE_MAX_LCORE+1) diff --git a/drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c b/drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c index d8ccf056b0..2ede7c1718 100644 --- a/drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c +++ b/drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c @@ -31,7 +31,6 @@ */ #include -#include #include #include #include diff --git a/drivers/net/mlx4/mlx4.c b/drivers/net/mlx4/mlx4.c index 207bfe2aae..ee001518e6 100644 --- a/drivers/net/mlx4/mlx4.c +++ b/drivers/net/mlx4/mlx4.c @@ -73,7 +73,6 @@ #ifdef PEDANTIC #pragma GCC diagnostic ignored "-pedantic" #endif -#include #include #include #include diff --git a/examples/l2fwd-ivshmem/host/host.c b/examples/l2fwd-ivshmem/host/host.c index d923711e45..6e6ed5e0f4 100644 --- a/examples/l2fwd-ivshmem/host/host.c +++ b/examples/l2fwd-ivshmem/host/host.c @@ -41,7 +41,6 @@ #include #include -#include #include #include #include diff --git a/examples/performance-thread/common/lthread.c b/examples/performance-thread/common/lthread.c index e8addb79a3..8fbff737d1 100644 --- a/examples/performance-thread/common/lthread.c +++ b/examples/performance-thread/common/lthread.c @@ -74,7 +74,6 @@ #include #include -#include #include #include diff --git a/examples/performance-thread/common/lthread_cond.c b/examples/performance-thread/common/lthread_cond.c index 8885a096ec..96fcce048b 100644 --- a/examples/performance-thread/common/lthread_cond.c +++ b/examples/performance-thread/common/lthread_cond.c @@ -73,7 +73,6 @@ #include #include -#include #include #include diff --git a/examples/performance-thread/common/lthread_diag.c b/examples/performance-thread/common/lthread_diag.c index 1913c256eb..bce1a0c38d 100644 --- a/examples/performance-thread/common/lthread_diag.c +++ b/examples/performance-thread/common/lthread_diag.c @@ -31,7 +31,6 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include #include #include diff --git a/examples/performance-thread/common/lthread_mutex.c b/examples/performance-thread/common/lthread_mutex.c index 074d066c7d..af8b82d23d 100644 --- a/examples/performance-thread/common/lthread_mutex.c +++ b/examples/performance-thread/common/lthread_mutex.c @@ -44,7 +44,6 @@ #include #include -#include #include #include #include diff --git a/examples/performance-thread/common/lthread_sched.c b/examples/performance-thread/common/lthread_sched.c index 301cf94578..7c40bc0524 100644 --- a/examples/performance-thread/common/lthread_sched.c +++ b/examples/performance-thread/common/lthread_sched.c @@ -76,7 +76,6 @@ #include #include -#include #include #include #include diff --git a/examples/performance-thread/common/lthread_tls.c b/examples/performance-thread/common/lthread_tls.c index 1c6cf11d58..43cda4ffe6 100644 --- a/examples/performance-thread/common/lthread_tls.c +++ b/examples/performance-thread/common/lthread_tls.c @@ -45,7 +45,6 @@ #include #include -#include #include #include #include diff --git a/examples/performance-thread/pthread_shim/Makefile b/examples/performance-thread/pthread_shim/Makefile index 9cf32e3d77..86ac657c46 100644 --- a/examples/performance-thread/pthread_shim/Makefile +++ b/examples/performance-thread/pthread_shim/Makefile @@ -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 diff --git a/examples/performance-thread/pthread_shim/main.c b/examples/performance-thread/pthread_shim/main.c index dab379aca3..f03572181c 100644 --- a/examples/performance-thread/pthread_shim/main.c +++ b/examples/performance-thread/pthread_shim/main.c @@ -47,7 +47,6 @@ #include #include -#include #include #include #include diff --git a/examples/performance-thread/pthread_shim/pthread_shim.c b/examples/performance-thread/pthread_shim/pthread_shim.c index 0fd36bad98..93c3216d23 100644 --- a/examples/performance-thread/pthread_shim/pthread_shim.c +++ b/examples/performance-thread/pthread_shim/pthread_shim.c @@ -39,7 +39,6 @@ #include #include -#include #include #include "lthread_api.h" diff --git a/examples/vm_power_manager/channel_manager.c b/examples/vm_power_manager/channel_manager.c index ceaf95d68a..22c2ddd553 100644 --- a/examples/vm_power_manager/channel_manager.c +++ b/examples/vm_power_manager/channel_manager.c @@ -45,7 +45,6 @@ #include #include -#include #include #include #include diff --git a/examples/vm_power_manager/channel_monitor.c b/examples/vm_power_manager/channel_monitor.c index 7003ddfde2..e7f5cc4a0c 100644 --- a/examples/vm_power_manager/channel_monitor.c +++ b/examples/vm_power_manager/channel_monitor.c @@ -42,7 +42,6 @@ #include #include -#include #include #include #include diff --git a/examples/vm_power_manager/guest_cli/main.c b/examples/vm_power_manager/guest_cli/main.c index 7ee2296532..5ac98ed3be 100644 --- a/examples/vm_power_manager/guest_cli/main.c +++ b/examples/vm_power_manager/guest_cli/main.c @@ -48,7 +48,6 @@ #include #include #include -#include #include "vm_power_cli_guest.h" diff --git a/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c b/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c index 75e544ae52..7931135ecd 100644 --- a/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c +++ b/examples/vm_power_manager/guest_cli/vm_power_cli_guest.c @@ -43,7 +43,6 @@ #include #include #include -#include #include #include diff --git a/examples/vm_power_manager/main.c b/examples/vm_power_manager/main.c index dfca7b8ab9..97178d1435 100644 --- a/examples/vm_power_manager/main.c +++ b/examples/vm_power_manager/main.c @@ -52,7 +52,6 @@ #include #include #include -#include #include "channel_manager.h" #include "channel_monitor.h" diff --git a/examples/vm_power_manager/power_manager.c b/examples/vm_power_manager/power_manager.c index 60da96c380..2644fce6c2 100644 --- a/examples/vm_power_manager/power_manager.c +++ b/examples/vm_power_manager/power_manager.c @@ -43,7 +43,6 @@ #include -#include #include #include #include diff --git a/examples/vm_power_manager/vm_power_cli.c b/examples/vm_power_manager/vm_power_cli.c index 7690d1497d..c5e8d9348b 100644 --- a/examples/vm_power_manager/vm_power_cli.c +++ b/examples/vm_power_manager/vm_power_cli.c @@ -45,7 +45,6 @@ #include #include #include -#include #include "vm_power_cli.h" #include "channel_manager.h" diff --git a/lib/librte_eal/linuxapp/kni/kni_misc.c b/lib/librte_eal/linuxapp/kni/kni_misc.c index f5f18f0468..ae8133f33e 100644 --- a/lib/librte_eal/linuxapp/kni/kni_misc.c +++ b/lib/librte_eal/linuxapp/kni/kni_misc.c @@ -35,7 +35,6 @@ #include #include "kni_dev.h" -#include MODULE_LICENSE("Dual BSD/GPL"); MODULE_AUTHOR("Intel Corporation"); diff --git a/lib/librte_eal/linuxapp/kni/kni_net.c b/lib/librte_eal/linuxapp/kni/kni_net.c index ab5add42d6..e02edcbe9c 100644 --- a/lib/librte_eal/linuxapp/kni/kni_net.c +++ b/lib/librte_eal/linuxapp/kni/kni_net.c @@ -36,7 +36,6 @@ #include #include -#include #include #include #include "kni_dev.h" diff --git a/lib/librte_eal/linuxapp/xen_dom0/dom0_mm_misc.c b/lib/librte_eal/linuxapp/xen_dom0/dom0_mm_misc.c index bfe0af8eb9..79630badcb 100644 --- a/lib/librte_eal/linuxapp/xen_dom0/dom0_mm_misc.c +++ b/lib/librte_eal/linuxapp/xen_dom0/dom0_mm_misc.c @@ -71,7 +71,6 @@ #include #include -#include #include #include "compat.h" diff --git a/lib/librte_power/guest_channel.c b/lib/librte_power/guest_channel.c index 22956657e1..d6b6d0aa96 100644 --- a/lib/librte_power/guest_channel.c +++ b/lib/librte_power/guest_channel.c @@ -42,7 +42,6 @@ #include -#include #include "guest_channel.h" #include "channel_commands.h" diff --git a/lib/librte_power/rte_power_kvm_vm.c b/lib/librte_power/rte_power_kvm_vm.c index 11596c39ea..7bb2774c3f 100644 --- a/lib/librte_power/rte_power_kvm_vm.c +++ b/lib/librte_power/rte_power_kvm_vm.c @@ -34,7 +34,6 @@ #include #include -#include #include "guest_channel.h" #include "channel_commands.h" -- 2.20.1