aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2017-01-20 15:32:01 -0500
committerMaxim Uvarov <maxim.uvarov@linaro.org>2017-01-22 21:54:46 +0300
commit7025b1b430237cddc10a0338c7b120d23b7985a8 (patch)
tree224576667db8b53e914e9286f6e52a257ac155e4
parent0f18e317ede15081828deca1ff61d65b72e12926 (diff)
helper: cleanup Linux rename to thread
Remove the OS specific Linux filename and use the name of the generic apis it contains which is for odp_threads Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-by: Christophe Milard <christophe.milard@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
-rw-r--r--example/classifier/odp_classifier.c2
-rw-r--r--example/generator/odp_generator.c2
-rw-r--r--example/ipsec/odp_ipsec.c2
-rw-r--r--example/l2fwd_simple/odp_l2fwd_simple.c2
-rw-r--r--example/l3fwd/odp_l3fwd.c2
-rw-r--r--example/packet/odp_pktio.c2
-rw-r--r--example/switch/odp_switch.c2
-rw-r--r--example/time/time_global_test.c5
-rw-r--r--example/timer/odp_timer_test.c2
-rw-r--r--helper/Makefile.am6
-rw-r--r--helper/include/odp/helper/threads.h (renamed from helper/include/odp/helper/linux.h)2
-rw-r--r--helper/test/odpthreads.c2
-rw-r--r--helper/test/process.c2
-rw-r--r--helper/test/thread.c2
-rw-r--r--helper/threads.c (renamed from helper/linux.c)2
-rw-r--r--test/common_plat/common/odp_cunit_common.c2
-rw-r--r--test/common_plat/miscellaneous/odp_api_from_cpp.cpp2
-rw-r--r--test/common_plat/performance/odp_crypto.c2
-rw-r--r--test/common_plat/performance/odp_l2fwd.c2
-rw-r--r--test/common_plat/performance/odp_pktio_perf.c2
-rw-r--r--test/common_plat/performance/odp_sched_latency.c2
-rw-r--r--test/common_plat/performance/odp_scheduling.c2
-rw-r--r--test/common_plat/validation/api/timer/timer.c2
-rw-r--r--test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c2
-rw-r--r--test/linux-generic/pktio_ipc/ipc_common.h2
-rw-r--r--test/linux-generic/ring/ring_stress.c2
26 files changed, 29 insertions, 30 deletions
diff --git a/example/classifier/odp_classifier.c b/example/classifier/odp_classifier.c
index 1bd241418..c2f69d4fb 100644
--- a/example/classifier/odp_classifier.c
+++ b/example/classifier/odp_classifier.c
@@ -12,9 +12,9 @@
#include <example_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
+#include <odp/helper/threads.h>
#include <strings.h>
#include <errno.h>
#include <stdio.h>
diff --git a/example/generator/odp_generator.c b/example/generator/odp_generator.c
index ccd47f628..194c0a027 100644
--- a/example/generator/odp_generator.c
+++ b/example/generator/odp_generator.c
@@ -20,7 +20,7 @@
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/udp.h>
diff --git a/example/ipsec/odp_ipsec.c b/example/ipsec/odp_ipsec.c
index 7e34d062d..d6861602c 100644
--- a/example/ipsec/odp_ipsec.c
+++ b/example/ipsec/odp_ipsec.c
@@ -24,7 +24,7 @@
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/icmp.h>
diff --git a/example/l2fwd_simple/odp_l2fwd_simple.c b/example/l2fwd_simple/odp_l2fwd_simple.c
index 0682d2dd5..2473a1110 100644
--- a/example/l2fwd_simple/odp_l2fwd_simple.c
+++ b/example/l2fwd_simple/odp_l2fwd_simple.c
@@ -10,9 +10,9 @@
#include <signal.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
+#include <odp/helper/threads.h>
#define POOL_NUM_PKT 8192
#define POOL_SEG_LEN 1856
diff --git a/example/l3fwd/odp_l3fwd.c b/example/l3fwd/odp_l3fwd.c
index 441e812a7..4e35b647d 100644
--- a/example/l3fwd/odp_l3fwd.c
+++ b/example/l3fwd/odp_l3fwd.c
@@ -14,11 +14,11 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/udp.h>
#include <odp/helper/tcp.h>
+#include <odp/helper/threads.h>
#include "odp_l3fwd_db.h"
#include "odp_l3fwd_lpm.h"
diff --git a/example/packet/odp_pktio.c b/example/packet/odp_pktio.c
index d1135cb21..6e24debfb 100644
--- a/example/packet/odp_pktio.c
+++ b/example/packet/odp_pktio.c
@@ -13,9 +13,9 @@
#include <example_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
+#include <odp/helper/threads.h>
/** @def MAX_WORKERS
* @brief Maximum number of worker threads
diff --git a/example/switch/odp_switch.c b/example/switch/odp_switch.c
index f9c717601..2bbce10f3 100644
--- a/example/switch/odp_switch.c
+++ b/example/switch/odp_switch.c
@@ -11,9 +11,9 @@
#include <inttypes.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
+#include <odp/helper/threads.h>
/** Maximum number of worker threads */
#define MAX_WORKERS 32
diff --git a/example/time/time_global_test.c b/example/time/time_global_test.c
index 380ec5200..dd339499d 100644
--- a/example/time/time_global_test.c
+++ b/example/time/time_global_test.c
@@ -4,10 +4,11 @@
* SPDX-License-Identifier: BSD-3-Clause
*/
+#include <inttypes.h>
+
#include <odp_api.h>
#include <example_debug.h>
-#include <odp/helper/linux.h>
-#include <inttypes.h>
+#include <odp/helper/threads.h>
#define MAX_WORKERS 32
#define ITERATION_NUM 2048
diff --git a/example/timer/odp_timer_test.c b/example/timer/odp_timer_test.c
index 035ab2e0e..b847e2bc1 100644
--- a/example/timer/odp_timer_test.c
+++ b/example/timer/odp_timer_test.c
@@ -14,7 +14,7 @@
#include <odp_api.h>
/* ODP helper for Linux apps */
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
/* GNU lib C */
#include <getopt.h>
diff --git a/helper/Makefile.am b/helper/Makefile.am
index 9d0036de0..62e55cca6 100644
--- a/helper/Makefile.am
+++ b/helper/Makefile.am
@@ -14,7 +14,6 @@ AM_LDFLAGS += -version-number '$(ODPHELPER_LIBSO_VERSION)'
helperincludedir = $(includedir)/odp/helper/
helperinclude_HEADERS = \
- $(srcdir)/include/odp/helper/linux.h \
$(srcdir)/include/odp/helper/chksum.h\
$(srcdir)/include/odp/helper/eth.h\
$(srcdir)/include/odp/helper/icmp.h\
@@ -23,6 +22,7 @@ helperinclude_HEADERS = \
$(srcdir)/include/odp/helper/strong_types.h\
$(srcdir)/include/odp/helper/tcp.h\
$(srcdir)/include/odp/helper/table.h\
+ $(srcdir)/include/odp/helper/threads.h \
$(srcdir)/include/odp/helper/udp.h
noinst_HEADERS = \
@@ -37,10 +37,10 @@ __LIB__libodphelper_linux_la_SOURCES = \
eth.c \
ip.c \
chksum.c \
- linux.c \
hashtable.c \
lineartable.c \
cuckootable.c \
- iplookuptable.c
+ iplookuptable.c \
+ threads.c
lib_LTLIBRARIES = $(LIB)/libodphelper-linux.la
diff --git a/helper/include/odp/helper/linux.h b/helper/include/odp/helper/threads.h
index 238bcf8cb..b8d975ac0 100644
--- a/helper/include/odp/helper/linux.h
+++ b/helper/include/odp/helper/threads.h
@@ -22,8 +22,6 @@
extern "C" {
#endif
-#include <odp_api.h>
-
#include <pthread.h>
#include <getopt.h>
#include <sys/types.h>
diff --git a/helper/test/odpthreads.c b/helper/test/odpthreads.c
index 3d20eaada..216bccdb0 100644
--- a/helper/test/odpthreads.c
+++ b/helper/test/odpthreads.c
@@ -15,7 +15,7 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#define NUMBER_WORKERS 16
diff --git a/helper/test/process.c b/helper/test/process.c
index 0e042249d..f3c6d50f0 100644
--- a/helper/test/process.c
+++ b/helper/test/process.c
@@ -6,7 +6,7 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#define NUMBER_WORKERS 16 /* 0 = max */
diff --git a/helper/test/thread.c b/helper/test/thread.c
index 8268d9fee..da94b49e1 100644
--- a/helper/test/thread.c
+++ b/helper/test/thread.c
@@ -6,7 +6,7 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#define NUMBER_WORKERS 16
static void *worker_fn(void *arg TEST_UNUSED)
diff --git a/helper/linux.c b/helper/threads.c
index 1f009cdf3..690b6cab4 100644
--- a/helper/linux.c
+++ b/helper/threads.c
@@ -20,7 +20,7 @@
#include <stdbool.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include "odph_debug.h"
static struct {
diff --git a/test/common_plat/common/odp_cunit_common.c b/test/common_plat/common/odp_cunit_common.c
index 2337c92b0..6d18fa00e 100644
--- a/test/common_plat/common/odp_cunit_common.c
+++ b/test/common_plat/common/odp_cunit_common.c
@@ -7,7 +7,7 @@
#include <string.h>
#include <odp_api.h>
#include <odp_cunit_common.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
/* Globals */
static odph_odpthread_t thread_tbl[MAX_WORKERS];
static odp_instance_t instance;
diff --git a/test/common_plat/miscellaneous/odp_api_from_cpp.cpp b/test/common_plat/miscellaneous/odp_api_from_cpp.cpp
index be74c275c..2b3078642 100644
--- a/test/common_plat/miscellaneous/odp_api_from_cpp.cpp
+++ b/test/common_plat/miscellaneous/odp_api_from_cpp.cpp
@@ -1,6 +1,6 @@
#include <cstdio>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
int main(int argc ODP_UNUSED, const char *argv[] ODP_UNUSED)
{
diff --git a/test/common_plat/performance/odp_crypto.c b/test/common_plat/performance/odp_crypto.c
index 993628830..bff20e581 100644
--- a/test/common_plat/performance/odp_crypto.c
+++ b/test/common_plat/performance/odp_crypto.c
@@ -17,7 +17,7 @@
#include <sys/resource.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#define app_err(fmt, ...) \
fprintf(stderr, "%s:%d:%s(): Error: " fmt, __FILE__, \
diff --git a/test/common_plat/performance/odp_l2fwd.c b/test/common_plat/performance/odp_l2fwd.c
index 82c3a251f..fa59d5e30 100644
--- a/test/common_plat/performance/odp_l2fwd.c
+++ b/test/common_plat/performance/odp_l2fwd.c
@@ -25,7 +25,7 @@
#include <test_debug.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
diff --git a/test/common_plat/performance/odp_pktio_perf.c b/test/common_plat/performance/odp_pktio_perf.c
index 92d979d37..ee3b8ab7d 100644
--- a/test/common_plat/performance/odp_pktio_perf.c
+++ b/test/common_plat/performance/odp_pktio_perf.c
@@ -25,7 +25,7 @@
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/udp.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <getopt.h>
#include <stdlib.h>
diff --git a/test/common_plat/performance/odp_sched_latency.c b/test/common_plat/performance/odp_sched_latency.c
index 063fb21c1..2066f91b9 100644
--- a/test/common_plat/performance/odp_sched_latency.c
+++ b/test/common_plat/performance/odp_sched_latency.c
@@ -20,7 +20,7 @@
#include <odp_api.h>
/* ODP helper for Linux apps */
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
/* GNU lib C */
#include <getopt.h>
diff --git a/test/common_plat/performance/odp_scheduling.c b/test/common_plat/performance/odp_scheduling.c
index e2a49d34d..713dba163 100644
--- a/test/common_plat/performance/odp_scheduling.c
+++ b/test/common_plat/performance/odp_scheduling.c
@@ -20,7 +20,7 @@
#include <odp_api.h>
/* ODP helper for Linux apps */
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
/* Needs librt*/
#include <time.h>
diff --git a/test/common_plat/validation/api/timer/timer.c b/test/common_plat/validation/api/timer/timer.c
index 1945afaa3..304b1d559 100644
--- a/test/common_plat/validation/api/timer/timer.c
+++ b/test/common_plat/validation/api/timer/timer.c
@@ -15,7 +15,7 @@
#include <time.h>
#include <odp.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include "odp_cunit_common.h"
#include "test_debug.h"
#include "timer.h"
diff --git a/test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c b/test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c
index b91eb5345..a12eb3cd6 100644
--- a/test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c
+++ b/test/linux-generic/mmap_vlan_ins/mmap_vlan_ins.c
@@ -10,7 +10,7 @@
#include <signal.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
diff --git a/test/linux-generic/pktio_ipc/ipc_common.h b/test/linux-generic/pktio_ipc/ipc_common.h
index 8804994e1..d2a355d56 100644
--- a/test/linux-generic/pktio_ipc/ipc_common.h
+++ b/test/linux-generic/pktio_ipc/ipc_common.h
@@ -17,7 +17,7 @@
#include <example_debug.h>
#include <odp.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp/helper/eth.h>
#include <odp/helper/ip.h>
#include <odp/helper/udp.h>
diff --git a/test/linux-generic/ring/ring_stress.c b/test/linux-generic/ring/ring_stress.c
index bc61c3e4f..19bd65ba8 100644
--- a/test/linux-generic/ring/ring_stress.c
+++ b/test/linux-generic/ring/ring_stress.c
@@ -18,7 +18,7 @@
#include <unistd.h>
#include <odp_api.h>
-#include <odp/helper/linux.h>
+#include <odp/helper/threads.h>
#include <odp_packet_io_ring_internal.h>
#include <test_debug.h>
#include <odp_cunit_common.h>