aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBogdan Pricope <bogdan.pricope@linaro.org>2017-11-23 15:37:33 +0200
committerYi He <yi.he@linaro.org>2017-11-29 13:44:00 +0800
commitf47262a495ce304a924a3c5eb00eb349faeb3666 (patch)
tree434af969330dcb9ba1d503e3f83fa66552e3e594
parent9126cea4346f5b715e335a54b9d72ec89533187a (diff)
linux-gen: modular-framework: move pool subsystem header to a public folder
Move pool subsystem header to a public folder. Signed-off-by: Bogdan Pricope <bogdan.pricope@linaro.org> Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com> Signed-off-by: Yi He <yi.he@linaro.org>
-rw-r--r--include/Makefile.am3
-rw-r--r--include/subsystem/spec/pool_subsystem.h (renamed from platform/linux-generic/include/odp_pool_subsystem.h)0
-rw-r--r--platform/linux-dpdk/Makefile.am1
-rw-r--r--platform/linux-dpdk/include/odp_pool_internal.h2
-rw-r--r--platform/linux-generic/Makefile.am1
-rw-r--r--platform/linux-generic/include/odp_pool_internal.h2
-rw-r--r--platform/linux-generic/pool/subsystem.c2
7 files changed, 5 insertions, 6 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 0edaf31a9..6bb497dc4 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -70,7 +70,8 @@ odpdrvspecinclude_HEADERS = \
subsystemspecincludedir= $(includedir)/subsystem/spec
subsystemspecinclude_HEADERS = \
- subsystem/spec/buffer_subsystem.h
+ subsystem/spec/buffer_subsystem.h \
+ subsystem/spec/pool_subsystem.h
odpapiabidefaultincludedir= $(includedir)/odp/arch/default/api/abi
odpapiabidefaultinclude_HEADERS = \
diff --git a/platform/linux-generic/include/odp_pool_subsystem.h b/include/subsystem/spec/pool_subsystem.h
index 0f34ad143..0f34ad143 100644
--- a/platform/linux-generic/include/odp_pool_subsystem.h
+++ b/include/subsystem/spec/pool_subsystem.h
diff --git a/platform/linux-dpdk/Makefile.am b/platform/linux-dpdk/Makefile.am
index 67a46cb8a..f188c3770 100644
--- a/platform/linux-dpdk/Makefile.am
+++ b/platform/linux-dpdk/Makefile.am
@@ -209,7 +209,6 @@ noinst_HEADERS = \
${top_srcdir}/platform/linux-generic/include/odp_packet_io_pool_access.h \
${top_srcdir}/platform/linux-generic/include/odp_pkt_queue_internal.h \
${srcdir}/include/odp_pool_internal.h \
- ${top_srcdir}/platform/linux-generic/include/odp_pool_subsystem.h \
${srcdir}/include/odp_posix_extensions.h \
${top_srcdir}/platform/linux-generic/include/odp_queue_internal.h \
${top_srcdir}/platform/linux-generic/include/odp_queue_if.h \
diff --git a/platform/linux-dpdk/include/odp_pool_internal.h b/platform/linux-dpdk/include/odp_pool_internal.h
index 2b3fc18c0..7d8fba14e 100644
--- a/platform/linux-dpdk/include/odp_pool_internal.h
+++ b/platform/linux-dpdk/include/odp_pool_internal.h
@@ -20,7 +20,7 @@ extern "C" {
#include <odp/api/std_types.h>
#include <odp/api/pool.h>
-#include <odp_pool_subsystem.h>
+#include <subsystem/spec/pool_subsystem.h>
#include <odp_buffer_internal.h>
#include <odp/api/packet_io.h>
#include <odp/api/align.h>
diff --git a/platform/linux-generic/Makefile.am b/platform/linux-generic/Makefile.am
index ffc6daa90..745b86bab 100644
--- a/platform/linux-generic/Makefile.am
+++ b/platform/linux-generic/Makefile.am
@@ -191,7 +191,6 @@ noinst_HEADERS = \
include/odp_pkt_queue_internal.h \
include/odp_queue_subsystem.h \
include/odp_pool_internal.h \
- include/odp_pool_subsystem.h \
include/odp_posix_extensions.h \
include/odp_queue_internal.h \
include/odp_queue_scalable_internal.h \
diff --git a/platform/linux-generic/include/odp_pool_internal.h b/platform/linux-generic/include/odp_pool_internal.h
index 0ec12148e..60687b3d4 100644
--- a/platform/linux-generic/include/odp_pool_internal.h
+++ b/platform/linux-generic/include/odp_pool_internal.h
@@ -21,7 +21,7 @@ extern "C" {
#include <odp/api/shared_memory.h>
#include <odp/api/ticketlock.h>
-#include <odp_pool_subsystem.h>
+#include <subsystem/spec/pool_subsystem.h>
#include <odp_buffer_internal.h>
#include <odp_config_internal.h>
#include <odp_ring_internal.h>
diff --git a/platform/linux-generic/pool/subsystem.c b/platform/linux-generic/pool/subsystem.c
index c5f644912..c845ce16b 100644
--- a/platform/linux-generic/pool/subsystem.c
+++ b/platform/linux-generic/pool/subsystem.c
@@ -7,7 +7,7 @@
*/
#include <odp/api/pool.h>
#include <odp_internal.h>
-#include <odp_pool_subsystem.h>
+#include <subsystem/spec/pool_subsystem.h>
#include <odp_debug_internal.h>
#include <odp_module.h>