aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-dpdk/include/odp_event_vector_internal.h
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2022-10-28 16:14:01 +0300
committerGitHub <noreply@github.com>2022-10-28 16:14:01 +0300
commitbdfef681d7849339946bd63151fa2875d9ee801d (patch)
treeceec932bbc3f678f68ed91953dc83f3852f95df0 /platform/linux-dpdk/include/odp_event_vector_internal.h
parent78066161560f2aa0ea829b1c435ab83809651162 (diff)
parent196c01565be4017e1d4d29df1912014b71adc105 (diff)
Merge ODP v1.38.0.0v1.38.0.0_DPDK_19.11
Merge ODP linux-generic v1.38.0.0 into linux-dpdk.
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[];