4 * Copyright(c) 2017 Intel Corporation. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
16 * * Neither the name of Intel Corporation nor the names of its
17 * contributors may be used to endorse or promote products derived
18 * from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #ifndef _RTE_DISTRIB_V1705_H_
34 #define _RTE_DISTRIB_V1705_H_
40 * The distributor is a component which is designed to pass packets
41 * one-at-a-time to workers, with dynamic load balancing.
48 struct rte_distributor *
49 rte_distributor_create_v1705(const char *name, unsigned int socket_id,
50 unsigned int num_workers,
51 unsigned int alg_type);
54 rte_distributor_process_v1705(struct rte_distributor *d,
55 struct rte_mbuf **mbufs, unsigned int num_mbufs);
58 rte_distributor_returned_pkts_v1705(struct rte_distributor *d,
59 struct rte_mbuf **mbufs, unsigned int max_mbufs);
62 rte_distributor_flush_v1705(struct rte_distributor *d);
65 rte_distributor_clear_returns_v1705(struct rte_distributor *d);
68 rte_distributor_get_pkt_v1705(struct rte_distributor *d,
69 unsigned int worker_id, struct rte_mbuf **pkts,
70 struct rte_mbuf **oldpkt, unsigned int retcount);
73 rte_distributor_return_pkt_v1705(struct rte_distributor *d,
74 unsigned int worker_id, struct rte_mbuf **oldpkt, int num);
77 rte_distributor_request_pkt_v1705(struct rte_distributor *d,
78 unsigned int worker_id, struct rte_mbuf **oldpkt,
82 rte_distributor_poll_pkt_v1705(struct rte_distributor *d,
83 unsigned int worker_id, struct rte_mbuf **mbufs);