aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-dpdk/include/odp_event_vector_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux-dpdk/include/odp_event_vector_internal.h')
-rw-r--r--platform/linux-dpdk/include/odp_event_vector_internal.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/platform/linux-dpdk/include/odp_event_vector_internal.h b/platform/linux-dpdk/include/odp_event_vector_internal.h
index c866d9036..5fa8c31c6 100644
--- a/platform/linux-dpdk/include/odp_event_vector_internal.h
+++ b/platform/linux-dpdk/include/odp_event_vector_internal.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2020-2021, Nokia
+/* Copyright (c) 2020-2022, Nokia
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
@@ -17,6 +17,8 @@
#include <odp/api/debug.h>
#include <odp/api/packet.h>
+#include <odp/api/plat/event_vector_inline_types.h>
+
#include <odp_event_internal.h>
#include <stdint.h>
@@ -28,9 +30,15 @@ typedef struct ODP_ALIGNED_CACHE odp_event_vector_hdr_t {
/* Common event header */
_odp_event_hdr_t event_hdr;
+ /* User area pointer */
+ void *uarea_addr;
+
/* Event vector size */
uint32_t size;
+ /* Flags */
+ _odp_event_vector_flags_t flags;
+
/* Vector of packet handles */
odp_packet_t packet[];