aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-dpdk/include/odp_event_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux-dpdk/include/odp_event_internal.h')
-rw-r--r--platform/linux-dpdk/include/odp_event_internal.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/platform/linux-dpdk/include/odp_event_internal.h b/platform/linux-dpdk/include/odp_event_internal.h
index 320f42146..5ccf5a3ed 100644
--- a/platform/linux-dpdk/include/odp_event_internal.h
+++ b/platform/linux-dpdk/include/odp_event_internal.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2021-2022, Nokia
+/* Copyright (c) 2021-2023, Nokia
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
@@ -80,6 +80,13 @@ static inline void _odp_event_type_set(odp_event_t event, int ev)
_odp_event_hdr(event)->event_type = ev;
}
+static inline uint64_t *_odp_event_endmark_get_ptr(odp_event_t event)
+{
+ struct rte_mbuf *mbuf = _odp_event_to_mbuf(event);
+
+ return (uint64_t *)((uint8_t *)mbuf->buf_addr + mbuf->buf_len);
+}
+
#ifdef __cplusplus
}
#endif