From 68f26e2a86eb206dcdda9324b20afa208067e6c2 Mon Sep 17 00:00:00 2001 From: Petri Savolainen Date: Mon, 28 May 2018 14:52:34 +0300 Subject: linux-gen: queue: remove abstract internal queue type Implementation internal (queue) references are pointers. Remove additional (abstract) type from queue interface. Other modules use void pointer as (abstract) queue reference. Abstract type added complexity and confusion, as queue handles had three different formats API handle, internal abstract type and queue structure pointer. Signed-off-by: Petri Savolainen Reviewed-by: Dmitry Eremin-Solenikov Reviewed-by: Bill Fischofer Signed-off-by: Maxim Uvarov --- platform/linux-generic/include/odp_packet_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform/linux-generic/include/odp_packet_internal.h') diff --git a/platform/linux-generic/include/odp_packet_internal.h b/platform/linux-generic/include/odp_packet_internal.h index 951903dd6..cd2db2ecd 100644 --- a/platform/linux-generic/include/odp_packet_internal.h +++ b/platform/linux-generic/include/odp_packet_internal.h @@ -105,7 +105,7 @@ typedef struct { odp_time_t timestamp; /* Classifier destination queue */ - queue_t dst_queue; + void *dst_queue; /* Result for crypto packet op */ odp_crypto_packet_result_t crypto_op_result; -- cgit v1.2.3