diff options
author | Thomas Monjalon <thomas@monjalon.net> | 2017-07-16 15:53:35 +0200 |
---|---|---|
committer | Thomas Monjalon <thomas@monjalon.net> | 2017-07-16 17:30:25 +0200 |
commit | b59069278b70c8e040e8d34b22f99c1de2d6b1c8 (patch) | |
tree | 2c2755a3c122b5e7c5493611827f8e67d95619da /examples | |
parent | e9bffce7811c67d141a86d12f25ee0b22cca82d9 (diff) | |
download | dpdk-b59069278b70c8e040e8d34b22f99c1de2d6b1c8.zip dpdk-b59069278b70c8e040e8d34b22f99c1de2d6b1c8.tar.gz dpdk-b59069278b70c8e040e8d34b22f99c1de2d6b1c8.tar.xz |
examples: remove duplicate includes
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Diffstat (limited to 'examples')
32 files changed, 0 insertions, 47 deletions
diff --git a/examples/bond/main.c b/examples/bond/main.c index ecc6292..2d019d4 100644 --- a/examples/bond/main.c +++ b/examples/bond/main.c @@ -53,7 +53,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> @@ -67,10 +66,8 @@ #include <rte_debug.h> #include <rte_ether.h> #include <rte_ethdev.h> -#include <rte_log.h> #include <rte_mempool.h> #include <rte_mbuf.h> -#include <rte_memcpy.h> #include <rte_ip.h> #include <rte_tcp.h> #include <rte_arp.h> diff --git a/examples/exception_path/main.c b/examples/exception_path/main.c index 229b7de..e551e6d 100644 --- a/examples/exception_path/main.c +++ b/examples/exception_path/main.c @@ -67,7 +67,6 @@ #include <rte_debug.h> #include <rte_ether.h> #include <rte_ethdev.h> -#include <rte_log.h> #include <rte_mempool.h> #include <rte_mbuf.h> #include <rte_string_fns.h> diff --git a/examples/ip_fragmentation/main.c b/examples/ip_fragmentation/main.c index 00aefc7..8c0e179 100644 --- a/examples/ip_fragmentation/main.c +++ b/examples/ip_fragmentation/main.c @@ -50,7 +50,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/ip_reassembly/main.c b/examples/ip_reassembly/main.c index 4032a69..e62636c 100644 --- a/examples/ip_reassembly/main.c +++ b/examples/ip_reassembly/main.c @@ -51,7 +51,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/ipv4_multicast/main.c b/examples/ipv4_multicast/main.c index ba4ab09..9a13d35 100644 --- a/examples/ipv4_multicast/main.c +++ b/examples/ipv4_multicast/main.c @@ -49,7 +49,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/kni/main.c b/examples/kni/main.c index dd6c0c3..e3bc2fb 100644 --- a/examples/kni/main.c +++ b/examples/kni/main.c @@ -65,7 +65,6 @@ #include <rte_debug.h> #include <rte_ether.h> #include <rte_ethdev.h> -#include <rte_log.h> #include <rte_mempool.h> #include <rte_mbuf.h> #include <rte_string_fns.h> diff --git a/examples/l2fwd-jobstats/main.c b/examples/l2fwd-jobstats/main.c index 0fdfaa4..9893620 100644 --- a/examples/l2fwd-jobstats/main.c +++ b/examples/l2fwd-jobstats/main.c @@ -38,7 +38,6 @@ #include <ctype.h> #include <getopt.h> -#include <rte_alarm.h> #include <rte_common.h> #include <rte_log.h> #include <rte_malloc.h> @@ -46,7 +45,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/l2fwd-keepalive/ka-agent/main.c b/examples/l2fwd-keepalive/ka-agent/main.c index be1c7f4..ba0ac35 100644 --- a/examples/l2fwd-keepalive/ka-agent/main.c +++ b/examples/l2fwd-keepalive/ka-agent/main.c @@ -31,7 +31,6 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <errno.h> #include <stdio.h> #include <string.h> #include <stdint.h> diff --git a/examples/l2fwd-keepalive/main.c b/examples/l2fwd-keepalive/main.c index 3c6a9d3..83bc542 100644 --- a/examples/l2fwd-keepalive/main.c +++ b/examples/l2fwd-keepalive/main.c @@ -53,7 +53,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/l2fwd/main.c b/examples/l2fwd/main.c index 00759b9..1426335 100644 --- a/examples/l2fwd/main.c +++ b/examples/l2fwd/main.c @@ -54,7 +54,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/l3fwd-acl/main.c b/examples/l3fwd-acl/main.c index 1563884..8eff4de 100644 --- a/examples/l3fwd-acl/main.c +++ b/examples/l3fwd-acl/main.c @@ -49,7 +49,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/l3fwd-power/main.c b/examples/l3fwd-power/main.c index bfd1ce0..fd442f5 100644 --- a/examples/l3fwd-power/main.c +++ b/examples/l3fwd-power/main.c @@ -52,7 +52,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> @@ -74,7 +73,6 @@ #include <rte_string_fns.h> #include <rte_timer.h> #include <rte_power.h> -#include <rte_eal.h> #include <rte_spinlock.h> #define RTE_LOGTYPE_L3FWD_POWER RTE_LOGTYPE_USER1 diff --git a/examples/l3fwd-vf/main.c b/examples/l3fwd-vf/main.c index fcd83b8..34e4a6b 100644 --- a/examples/l3fwd-vf/main.c +++ b/examples/l3fwd-vf/main.c @@ -50,7 +50,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_spinlock.h> diff --git a/examples/l3fwd/main.c b/examples/l3fwd/main.c index 7094197..81995fd 100644 --- a/examples/l3fwd/main.c +++ b/examples/l3fwd/main.c @@ -52,7 +52,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/link_status_interrupt/main.c b/examples/link_status_interrupt/main.c index 0eab042..f4e3969 100644 --- a/examples/link_status_interrupt/main.c +++ b/examples/link_status_interrupt/main.c @@ -37,7 +37,6 @@ #include <stdint.h> #include <inttypes.h> #include <sys/types.h> -#include <string.h> #include <sys/queue.h> #include <netinet/in.h> #include <setjmp.h> @@ -53,7 +52,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/load_balancer/config.c b/examples/load_balancer/config.c index 07f92a1..5032509 100644 --- a/examples/load_balancer/config.c +++ b/examples/load_balancer/config.c @@ -49,7 +49,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/load_balancer/init.c b/examples/load_balancer/init.c index 8fe7db4..717232e 100644 --- a/examples/load_balancer/init.c +++ b/examples/load_balancer/init.c @@ -49,7 +49,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/load_balancer/main.c b/examples/load_balancer/main.c index c97bf6f..65ceea4 100644 --- a/examples/load_balancer/main.c +++ b/examples/load_balancer/main.c @@ -50,7 +50,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/load_balancer/runtime.c b/examples/load_balancer/runtime.c index 7f918aa..e54b785 100644 --- a/examples/load_balancer/runtime.c +++ b/examples/load_balancer/runtime.c @@ -49,7 +49,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/multi_process/client_server_mp/mp_client/client.c b/examples/multi_process/client_server_mp/mp_client/client.c index 01b535c..f8453e5 100644 --- a/examples/multi_process/client_server_mp/mp_client/client.c +++ b/examples/multi_process/client_server_mp/mp_client/client.c @@ -50,11 +50,9 @@ #include <rte_branch_prediction.h> #include <rte_log.h> #include <rte_per_lcore.h> -#include <rte_launch.h> #include <rte_lcore.h> #include <rte_ring.h> #include <rte_launch.h> -#include <rte_lcore.h> #include <rte_debug.h> #include <rte_mempool.h> #include <rte_mbuf.h> diff --git a/examples/multi_process/client_server_mp/mp_server/main.c b/examples/multi_process/client_server_mp/mp_server/main.c index c2b0261..7055b54 100644 --- a/examples/multi_process/client_server_mp/mp_server/main.c +++ b/examples/multi_process/client_server_mp/mp_server/main.c @@ -38,7 +38,6 @@ #include <stdint.h> #include <stdarg.h> #include <inttypes.h> -#include <inttypes.h> #include <sys/queue.h> #include <errno.h> #include <netinet/ip.h> @@ -47,7 +46,6 @@ #include <rte_memory.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_byteorder.h> #include <rte_launch.h> #include <rte_per_lcore.h> #include <rte_lcore.h> diff --git a/examples/multi_process/l2fwd_fork/flib.c b/examples/multi_process/l2fwd_fork/flib.c index 85bbc2d..c22e983 100644 --- a/examples/multi_process/l2fwd_fork/flib.c +++ b/examples/multi_process/l2fwd_fork/flib.c @@ -56,7 +56,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/multi_process/l2fwd_fork/main.c b/examples/multi_process/l2fwd_fork/main.c index 9ef9a7b..f8a626b 100644 --- a/examples/multi_process/l2fwd_fork/main.c +++ b/examples/multi_process/l2fwd_fork/main.c @@ -53,7 +53,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_spinlock.h> diff --git a/examples/multi_process/symmetric_mp/main.c b/examples/multi_process/symmetric_mp/main.c index 208e356..0f49791 100644 --- a/examples/multi_process/symmetric_mp/main.c +++ b/examples/multi_process/symmetric_mp/main.c @@ -61,7 +61,6 @@ #include <rte_eal.h> #include <rte_per_lcore.h> #include <rte_lcore.h> -#include <rte_debug.h> #include <rte_atomic.h> #include <rte_branch_prediction.h> #include <rte_debug.h> diff --git a/examples/performance-thread/common/lthread_int.h b/examples/performance-thread/common/lthread_int.h index 3f7fb92..e1da246 100644 --- a/examples/performance-thread/common/lthread_int.h +++ b/examples/performance-thread/common/lthread_int.h @@ -59,7 +59,6 @@ * SUCH DAMAGE. */ #ifndef LTHREAD_INT_H -#include <lthread_api.h> #define LTHREAD_INT_H #ifdef __cplusplus diff --git a/examples/performance-thread/l3fwd-thread/main.c b/examples/performance-thread/l3fwd-thread/main.c index c790ff9..7954b97 100644 --- a/examples/performance-thread/l3fwd-thread/main.c +++ b/examples/performance-thread/l3fwd-thread/main.c @@ -52,7 +52,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> diff --git a/examples/server_node_efd/node/node.c b/examples/server_node_efd/node/node.c index f780b92..86e57c8 100644 --- a/examples/server_node_efd/node/node.c +++ b/examples/server_node_efd/node/node.c @@ -53,8 +53,6 @@ #include <rte_launch.h> #include <rte_lcore.h> #include <rte_ring.h> -#include <rte_launch.h> -#include <rte_lcore.h> #include <rte_debug.h> #include <rte_mempool.h> #include <rte_mbuf.h> diff --git a/examples/server_node_efd/server/main.c b/examples/server_node_efd/server/main.c index 597b4c2..dcdc0a4 100644 --- a/examples/server_node_efd/server/main.c +++ b/examples/server_node_efd/server/main.c @@ -38,7 +38,6 @@ #include <stdint.h> #include <stdarg.h> #include <inttypes.h> -#include <inttypes.h> #include <sys/queue.h> #include <errno.h> #include <netinet/ip.h> @@ -47,7 +46,6 @@ #include <rte_memory.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_byteorder.h> #include <rte_launch.h> #include <rte_per_lcore.h> #include <rte_lcore.h> diff --git a/examples/vm_power_manager/guest_cli/main.c b/examples/vm_power_manager/guest_cli/main.c index 5ac98ed..ac2b1fa 100644 --- a/examples/vm_power_manager/guest_cli/main.c +++ b/examples/vm_power_manager/guest_cli/main.c @@ -35,12 +35,10 @@ #include <stdio.h> #include <string.h> #include <stdint.h> -#include <errno.h> #include <sys/epoll.h> #include <fcntl.h> #include <unistd.h> #include <stdlib.h> -#include <unistd.h> #include <errno.h> */ #include <signal.h> diff --git a/examples/vm_power_manager/main.c b/examples/vm_power_manager/main.c index 97178d1..c33fcc9 100644 --- a/examples/vm_power_manager/main.c +++ b/examples/vm_power_manager/main.c @@ -34,12 +34,10 @@ #include <stdio.h> #include <string.h> #include <stdint.h> -#include <errno.h> #include <sys/epoll.h> #include <fcntl.h> #include <unistd.h> #include <stdlib.h> -#include <unistd.h> #include <signal.h> #include <errno.h> diff --git a/examples/vmdq/main.c b/examples/vmdq/main.c index d096831..8949a11 100644 --- a/examples/vmdq/main.c +++ b/examples/vmdq/main.c @@ -49,7 +49,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> @@ -63,10 +62,8 @@ #include <rte_debug.h> #include <rte_ether.h> #include <rte_ethdev.h> -#include <rte_log.h> #include <rte_mempool.h> #include <rte_mbuf.h> -#include <rte_memcpy.h> #define MAX_QUEUES 1024 /* diff --git a/examples/vmdq_dcb/main.c b/examples/vmdq_dcb/main.c index 4f6d47e..b6ebccb 100644 --- a/examples/vmdq_dcb/main.c +++ b/examples/vmdq_dcb/main.c @@ -49,7 +49,6 @@ #include <rte_memcpy.h> #include <rte_memzone.h> #include <rte_eal.h> -#include <rte_per_lcore.h> #include <rte_launch.h> #include <rte_atomic.h> #include <rte_cycles.h> @@ -63,10 +62,8 @@ #include <rte_debug.h> #include <rte_ether.h> #include <rte_ethdev.h> -#include <rte_log.h> #include <rte_mempool.h> #include <rte_mbuf.h> -#include <rte_memcpy.h> /* basic constants used in application */ #define MAX_QUEUES 1024 |