aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/odp_event.c
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@linaro.org>2018-08-09 11:44:20 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-11-28 17:16:38 +0300
commit2411cd30bfc38651860fcc0e9f1331c3a37ccfbe (patch)
tree16566e7c8861b4568a42495d44115856440f01e5 /platform/linux-generic/odp_event.c
parente49af8a47be1f267a9d0a50066f9b7ba2f8bd774 (diff)
linux-gen: packet: implementation subtype api
Add inlined implementation of the new subtype API call and use that internally. Signed-off-by: Petri Savolainen <petri.savolainen@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic/odp_event.c')
-rw-r--r--platform/linux-generic/odp_event.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/linux-generic/odp_event.c b/platform/linux-generic/odp_event.c
index fa20af5f5..bb378528b 100644
--- a/platform/linux-generic/odp_event.c
+++ b/platform/linux-generic/odp_event.c
@@ -19,6 +19,7 @@
/* Inlined API functions */
#include <odp/api/plat/event_inlines.h>
+#include <odp/api/plat/packet_inlines.h>
odp_event_subtype_t odp_event_subtype(odp_event_t event)
{
@@ -26,7 +27,7 @@ odp_event_subtype_t odp_event_subtype(odp_event_t event)
ODP_EVENT_PACKET)
return ODP_EVENT_NO_SUBTYPE;
- return packet_subtype(odp_packet_from_event(event));
+ return odp_packet_subtype(odp_packet_from_event(event));
}
odp_event_type_t odp_event_types(odp_event_t event,
@@ -36,7 +37,7 @@ odp_event_type_t odp_event_types(odp_event_t event,
odp_event_type_t event_type = _odp_buffer_event_type(buf);
*subtype = event_type == ODP_EVENT_PACKET ?
- packet_subtype(odp_packet_from_event(event)) :
+ odp_packet_subtype(odp_packet_from_event(event)) :
ODP_EVENT_NO_SUBTYPE;
return event_type;