aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/pktio/pktio_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux-generic/pktio/pktio_common.c')
-rw-r--r--platform/linux-generic/pktio/pktio_common.c67
1 files changed, 0 insertions, 67 deletions
diff --git a/platform/linux-generic/pktio/pktio_common.c b/platform/linux-generic/pktio/pktio_common.c
index 8a01477f5..611bb451a 100644
--- a/platform/linux-generic/pktio/pktio_common.c
+++ b/platform/linux-generic/pktio/pktio_common.c
@@ -9,73 +9,6 @@
#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)
-{
- cos_t *cos;
- odp_packet_t pkt;
- odp_packet_hdr_t *pkt_hdr;
- odp_packet_hdr_t src_pkt_hdr;
- int ret;
- odp_pool_t pool;
-
- packet_parse_reset(&src_pkt_hdr);
-
- _odp_cls_parse(&src_pkt_hdr, base);
- cos = pktio_select_cos(pktio_entry, base, &src_pkt_hdr);
-
- /* if No CoS found then drop the packet */
- 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 -ENOMEM;
- pkt_hdr = odp_packet_hdr(pkt);
-
- copy_packet_parser_metadata(&src_pkt_hdr, pkt_hdr);
- pkt_hdr->input = pktio_entry->s.handle;
-
- if (odp_packet_copy_from_mem(pkt, 0, buf_len, base) != 0) {
- odp_packet_free(pkt);
- return -EFAULT;
- }
-
- packet_set_ts(pkt_hdr, ts);
-
- /* Parse and set packet header data */
- 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) {
- odp_packet_free(pkt);
- return -EFAULT;
- }
-
- return 0;
-}
-
int sock_stats_reset_fd(pktio_entry_t *pktio_entry, int fd)
{
int err = 0;