aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Makefile.am3
-rw-r--r--include/subsystem/spec/queue_subsystem.h (renamed from platform/linux-generic/include/odp_queue_subsystem.h)0
-rw-r--r--platform/linux-dpdk/Makefile.am1
-rw-r--r--platform/linux-generic/Makefile.am1
-rw-r--r--platform/linux-generic/queue/generic.c2
-rw-r--r--platform/linux-generic/queue/scalable.c2
-rw-r--r--platform/linux-generic/queue/subsystem.c2
7 files changed, 5 insertions, 6 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 6bb497dc4..4436c61b2 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -71,7 +71,8 @@ odpdrvspecinclude_HEADERS = \
subsystemspecincludedir= $(includedir)/subsystem/spec
subsystemspecinclude_HEADERS = \
subsystem/spec/buffer_subsystem.h \
- subsystem/spec/pool_subsystem.h
+ subsystem/spec/pool_subsystem.h \
+ subsystem/spec/queue_subsystem.h
odpapiabidefaultincludedir= $(includedir)/odp/arch/default/api/abi
odpapiabidefaultinclude_HEADERS = \
diff --git a/platform/linux-generic/include/odp_queue_subsystem.h b/include/subsystem/spec/queue_subsystem.h
index 57fa68fdb..57fa68fdb 100644
--- a/platform/linux-generic/include/odp_queue_subsystem.h
+++ b/include/subsystem/spec/queue_subsystem.h
diff --git a/platform/linux-dpdk/Makefile.am b/platform/linux-dpdk/Makefile.am
index f188c3770..7742aea3e 100644
--- a/platform/linux-dpdk/Makefile.am
+++ b/platform/linux-dpdk/Makefile.am
@@ -212,7 +212,6 @@ noinst_HEADERS = \
${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 \
- ${top_srcdir}/platform/linux-generic/include/odp_queue_subsystem.h \
${top_srcdir}/platform/linux-generic/include/odp_ring_internal.h \
${top_srcdir}/platform/linux-generic/include/odp_schedule_if.h \
${top_srcdir}/platform/linux-generic/include/odp_schedule_subsystem.h \
diff --git a/platform/linux-generic/Makefile.am b/platform/linux-generic/Makefile.am
index 745b86bab..47de83f92 100644
--- a/platform/linux-generic/Makefile.am
+++ b/platform/linux-generic/Makefile.am
@@ -189,7 +189,6 @@ noinst_HEADERS = \
include/odp_pktio_ops_tap.h \
include/odp_pktio_ops_subsystem.h \
include/odp_pkt_queue_internal.h \
- include/odp_queue_subsystem.h \
include/odp_pool_internal.h \
include/odp_posix_extensions.h \
include/odp_queue_internal.h \
diff --git a/platform/linux-generic/queue/generic.c b/platform/linux-generic/queue/generic.c
index ab2b97048..37c02380f 100644
--- a/platform/linux-generic/queue/generic.c
+++ b/platform/linux-generic/queue/generic.c
@@ -9,7 +9,7 @@
#include <odp/api/queue.h>
#include <odp_queue_internal.h>
#include <odp_queue_if.h>
-#include <odp_queue_subsystem.h>
+#include <subsystem/spec/queue_subsystem.h>
#include <odp/api/std_types.h>
#include <odp/api/align.h>
#include <odp/api/buffer.h>
diff --git a/platform/linux-generic/queue/scalable.c b/platform/linux-generic/queue/scalable.c
index 00cd8da65..f4f5efb85 100644
--- a/platform/linux-generic/queue/scalable.c
+++ b/platform/linux-generic/queue/scalable.c
@@ -23,7 +23,7 @@
#include <odp_packet_io_internal.h>
#include <odp_pool_internal.h>
#include <odp_queue_scalable_internal.h>
-#include <odp_queue_subsystem.h>
+#include <subsystem/spec/queue_subsystem.h>
#include <odp_schedule_if.h>
#include <_ishm_internal.h>
#include <_ishmpool_internal.h>
diff --git a/platform/linux-generic/queue/subsystem.c b/platform/linux-generic/queue/subsystem.c
index 5a88b2df9..b53c440f4 100644
--- a/platform/linux-generic/queue/subsystem.c
+++ b/platform/linux-generic/queue/subsystem.c
@@ -11,7 +11,7 @@
#include <odp/api/queue.h>
#include <odp_internal.h>
#include <odp_debug_internal.h>
-#include <odp_queue_subsystem.h>
+#include <subsystem/spec/queue_subsystem.h>
#include <odp_module.h>
ODP_SUBSYSTEM_DEFINE(queue, "queue public APIs", QUEUE_SUBSYSTEM_VERSION);