aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/pktio/pktio_common.c
diff options
context:
space:
mode:
authorZoltan Kiss <zoltan.kiss@linaro.org>2016-05-05 16:35:09 +0100
committerMike Holmes <mike.holmes@linaro.org>2016-05-06 12:50:49 -0400
commit12520b241bee42f61ff062283ef23459596f4426 (patch)
tree719ef3a699ee6e081769198f0bd80e78cab5c90a /platform/linux-generic/pktio/pktio_common.c
parent1255821265c5e762367dca8b3bf74b9f9366deee (diff)
linux-generic: pktio: don't return packet after failed enqueue
If queue_enq() fails, there is a serious internal error, the packet should be released instead of passing it back to pktin_poll() for enqueueing on an another one. Also return the error if there is any, not just the queue_enq() ones. If CoS drops the packet, doesn't report it as an error Signed-off-by: Zoltan Kiss <zoltan.kiss@linaro.org> Reviewed-by: Balasubramanian Manoharan <bala.manoharan@linaro.org> Signed-off-by: Mike Holmes <mike.holmes@linaro.org>
Diffstat (limited to 'platform/linux-generic/pktio/pktio_common.c')
-rw-r--r--platform/linux-generic/pktio/pktio_common.c36
1 files changed, 28 insertions, 8 deletions
diff --git a/platform/linux-generic/pktio/pktio_common.c b/platform/linux-generic/pktio/pktio_common.c
index 942ea8ca5..8a01477f5 100644
--- a/platform/linux-generic/pktio/pktio_common.c
+++ b/platform/linux-generic/pktio/pktio_common.c
@@ -7,10 +7,27 @@
#include <odp_packet_io_internal.h>
#include <odp_classification_internal.h>
+#include <errno.h>
+/**
+ * Classify packet, copy it in a odp_packet_t and enqueue to the right queue
+ *
+ * pktio_entry pktio where it arrived
+ * base packet data
+ * buf_len packet length
+ *
+ * Return values:
+ * 0 on success, packet is consumed
+ * -ENOENT CoS dropped the packet
+ * -EFAULT Bug
+ * -EINVAL Config error
+ * -ENOMEM Target CoS pool exhausted
+ *
+ * Note: *base is not released, only pkt if there is an error
+ *
+ */
int _odp_packet_cls_enq(pktio_entry_t *pktio_entry,
- const uint8_t *base, uint16_t buf_len,
- odp_time_t *ts, odp_packet_t *pkt_ret)
+ const uint8_t *base, uint16_t buf_len, odp_time_t *ts)
{
cos_t *cos;
odp_packet_t pkt;
@@ -25,14 +42,17 @@ int _odp_packet_cls_enq(pktio_entry_t *pktio_entry,
cos = pktio_select_cos(pktio_entry, base, &src_pkt_hdr);
/* if No CoS found then drop the packet */
- if (cos == NULL || cos->s.queue == NULL || cos->s.pool == NULL)
- return 0;
+ if (cos == NULL)
+ return -EINVAL;
+
+ if (cos->s.queue == NULL || cos->s.pool == NULL)
+ return -EFAULT;
pool = cos->s.pool->s.pool_hdl;
pkt = odp_packet_alloc(pool, buf_len);
if (odp_unlikely(pkt == ODP_PACKET_INVALID))
- return 0;
+ return -ENOMEM;
pkt_hdr = odp_packet_hdr(pkt);
copy_packet_parser_metadata(&src_pkt_hdr, pkt_hdr);
@@ -40,7 +60,7 @@ int _odp_packet_cls_enq(pktio_entry_t *pktio_entry,
if (odp_packet_copy_from_mem(pkt, 0, buf_len, base) != 0) {
odp_packet_free(pkt);
- return 0;
+ return -EFAULT;
}
packet_set_ts(pkt_hdr, ts);
@@ -49,8 +69,8 @@ int _odp_packet_cls_enq(pktio_entry_t *pktio_entry,
odp_packet_pull_tail(pkt, odp_packet_len(pkt) - buf_len);
ret = queue_enq(cos->s.queue, odp_buf_to_hdr((odp_buffer_t)pkt), 0);
if (ret < 0) {
- *pkt_ret = pkt;
- return 1;
+ odp_packet_free(pkt);
+ return -EFAULT;
}
return 0;