@@ -98,6 +98,24 @@ void odp_packet_set_len(odp_packet_t pkt, size_t len);
size_t odp_packet_get_len(odp_packet_t pkt);
/**
+ * Set packet user context
+ *
+ * @param buf Packet handle
+ * @param ctx User context
+ *
+ */
+void odp_packet_set_ctx(odp_packet_t buf, void *ctx);
+
+/**
+ * Get packet user context
+ *
+ * @param buf Packet handle
+ *
+ * @return User context
+ */
+void *odp_packet_get_ctx(odp_packet_t buf);
+
+/**
* Get address to the start of the packet buffer
*
* The address of the packet buffer is not necessarily the same as the start
@@ -112,6 +112,8 @@ typedef struct {
uint32_t frame_len;
+ uint64_t user_ctx; /* user context */
+
odp_pktio_t input;
uint32_t pad;
@@ -386,3 +386,13 @@ int odp_packet_copy(odp_packet_t pkt_dst, odp_packet_t pkt_src)
return 0;
}
+
+void odp_packet_set_ctx(odp_packet_t pkt, void *ctx)
+{
+ odp_packet_hdr(pkt)->user_ctx = (intptr_t)ctx;
+}
+
+void *odp_packet_get_ctx(odp_packet_t pkt)
+{
+ return (void *)(intptr_t)odp_packet_hdr(pkt)->user_ctx;
+}
Signed-off-by: Robbie King <robking@cisco.com> --- include/odp_packet.h | 18 ++++++++++++++++++ .../linux-generic/include/odp_packet_internal.h | 2 ++ platform/linux-generic/odp_packet.c | 10 ++++++++++ 3 files changed, 30 insertions(+), 0 deletions(-)