aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp_packet_internal.h
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@linaro.org>2018-05-28 14:52:34 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-05-30 17:30:26 +0300
commit68f26e2a86eb206dcdda9324b20afa208067e6c2 (patch)
tree4f4ece3e728ab555553b37fde6b98c723038d1b7 /platform/linux-generic/include/odp_packet_internal.h
parent42a8b2f0dbaee653953170cbd0a7fa659bc32b38 (diff)
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 <petri.savolainen@linaro.org> Reviewed-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic/include/odp_packet_internal.h')
-rw-r--r--platform/linux-generic/include/odp_packet_internal.h2
1 files changed, 1 insertions, 1 deletions
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;