1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
9 #include <rte_memory.h>
10 #include <rte_memzone.h>
11 #include <rte_errno.h>
12 #include <rte_compat.h>
13 #include <rte_string_fns.h>
14 #include <rte_eal_memconfig.h>
15 #include <rte_pause.h>
16 #include <rte_tailq.h>
18 #include "rte_distributor_v20.h"
19 #include "rte_distributor_private.h"
21 TAILQ_HEAD(rte_distributor_list, rte_distributor_v20);
23 static struct rte_tailq_elem rte_distributor_tailq = {
24 .name = "RTE_DISTRIBUTOR",
26 EAL_REGISTER_TAILQ(rte_distributor_tailq)
28 /**** APIs called by workers ****/
31 rte_distributor_request_pkt_v20(struct rte_distributor_v20 *d,
32 unsigned worker_id, struct rte_mbuf *oldpkt)
34 union rte_distributor_buffer_v20 *buf = &d->bufs[worker_id];
35 int64_t req = (((int64_t)(uintptr_t)oldpkt) << RTE_DISTRIB_FLAG_BITS)
36 | RTE_DISTRIB_GET_BUF;
37 while (unlikely(buf->bufptr64 & RTE_DISTRIB_FLAGS_MASK))
41 VERSION_SYMBOL(rte_distributor_request_pkt, _v20, 2.0);
44 rte_distributor_poll_pkt_v20(struct rte_distributor_v20 *d,
47 union rte_distributor_buffer_v20 *buf = &d->bufs[worker_id];
48 if (buf->bufptr64 & RTE_DISTRIB_GET_BUF)
51 /* since bufptr64 is signed, this should be an arithmetic shift */
52 int64_t ret = buf->bufptr64 >> RTE_DISTRIB_FLAG_BITS;
53 return (struct rte_mbuf *)((uintptr_t)ret);
55 VERSION_SYMBOL(rte_distributor_poll_pkt, _v20, 2.0);
58 rte_distributor_get_pkt_v20(struct rte_distributor_v20 *d,
59 unsigned worker_id, struct rte_mbuf *oldpkt)
62 rte_distributor_request_pkt_v20(d, worker_id, oldpkt);
63 while ((ret = rte_distributor_poll_pkt_v20(d, worker_id)) == NULL)
67 VERSION_SYMBOL(rte_distributor_get_pkt, _v20, 2.0);
70 rte_distributor_return_pkt_v20(struct rte_distributor_v20 *d,
71 unsigned worker_id, struct rte_mbuf *oldpkt)
73 union rte_distributor_buffer_v20 *buf = &d->bufs[worker_id];
74 uint64_t req = (((int64_t)(uintptr_t)oldpkt) << RTE_DISTRIB_FLAG_BITS)
75 | RTE_DISTRIB_RETURN_BUF;
79 VERSION_SYMBOL(rte_distributor_return_pkt, _v20, 2.0);
81 /**** APIs called on distributor core ***/
83 /* as name suggests, adds a packet to the backlog for a particular worker */
85 add_to_backlog(struct rte_distributor_backlog *bl, int64_t item)
87 if (bl->count == RTE_DISTRIB_BACKLOG_SIZE)
90 bl->pkts[(bl->start + bl->count++) & (RTE_DISTRIB_BACKLOG_MASK)]
95 /* takes the next packet for a worker off the backlog */
97 backlog_pop(struct rte_distributor_backlog *bl)
100 return bl->pkts[bl->start++ & RTE_DISTRIB_BACKLOG_MASK];
103 /* stores a packet returned from a worker inside the returns array */
105 store_return(uintptr_t oldbuf, struct rte_distributor_v20 *d,
106 unsigned *ret_start, unsigned *ret_count)
108 /* store returns in a circular buffer - code is branch-free */
109 d->returns.mbufs[(*ret_start + *ret_count) & RTE_DISTRIB_RETURNS_MASK]
111 *ret_start += (*ret_count == RTE_DISTRIB_RETURNS_MASK) & !!(oldbuf);
112 *ret_count += (*ret_count != RTE_DISTRIB_RETURNS_MASK) & !!(oldbuf);
116 handle_worker_shutdown(struct rte_distributor_v20 *d, unsigned int wkr)
118 d->in_flight_tags[wkr] = 0;
119 d->in_flight_bitmask &= ~(1UL << wkr);
120 d->bufs[wkr].bufptr64 = 0;
121 if (unlikely(d->backlog[wkr].count != 0)) {
122 /* On return of a packet, we need to move the
123 * queued packets for this core elsewhere.
124 * Easiest solution is to set things up for
125 * a recursive call. That will cause those
126 * packets to be queued up for the next free
127 * core, i.e. it will return as soon as a
128 * core becomes free to accept the first
129 * packet, as subsequent ones will be added to
130 * the backlog for that core.
132 struct rte_mbuf *pkts[RTE_DISTRIB_BACKLOG_SIZE];
134 struct rte_distributor_backlog *bl = &d->backlog[wkr];
136 for (i = 0; i < bl->count; i++) {
137 unsigned idx = (bl->start + i) &
138 RTE_DISTRIB_BACKLOG_MASK;
139 pkts[i] = (void *)((uintptr_t)(bl->pkts[idx] >>
140 RTE_DISTRIB_FLAG_BITS));
143 * Note that the tags were set before first level call
144 * to rte_distributor_process.
146 rte_distributor_process_v20(d, pkts, i);
147 bl->count = bl->start = 0;
151 /* this function is called when process() fn is called without any new
152 * packets. It goes through all the workers and clears any returned packets
153 * to do a partial flush.
156 process_returns(struct rte_distributor_v20 *d)
159 unsigned flushed = 0;
160 unsigned ret_start = d->returns.start,
161 ret_count = d->returns.count;
163 for (wkr = 0; wkr < d->num_workers; wkr++) {
165 const int64_t data = d->bufs[wkr].bufptr64;
166 uintptr_t oldbuf = 0;
168 if (data & RTE_DISTRIB_GET_BUF) {
170 if (d->backlog[wkr].count)
171 d->bufs[wkr].bufptr64 =
172 backlog_pop(&d->backlog[wkr]);
174 d->bufs[wkr].bufptr64 = RTE_DISTRIB_GET_BUF;
175 d->in_flight_tags[wkr] = 0;
176 d->in_flight_bitmask &= ~(1UL << wkr);
178 oldbuf = data >> RTE_DISTRIB_FLAG_BITS;
179 } else if (data & RTE_DISTRIB_RETURN_BUF) {
180 handle_worker_shutdown(d, wkr);
181 oldbuf = data >> RTE_DISTRIB_FLAG_BITS;
184 store_return(oldbuf, d, &ret_start, &ret_count);
187 d->returns.start = ret_start;
188 d->returns.count = ret_count;
193 /* process a set of packets to distribute them to workers */
195 rte_distributor_process_v20(struct rte_distributor_v20 *d,
196 struct rte_mbuf **mbufs, unsigned num_mbufs)
198 unsigned next_idx = 0;
200 struct rte_mbuf *next_mb = NULL;
201 int64_t next_value = 0;
202 uint32_t new_tag = 0;
203 unsigned ret_start = d->returns.start,
204 ret_count = d->returns.count;
206 if (unlikely(num_mbufs == 0))
207 return process_returns(d);
209 while (next_idx < num_mbufs || next_mb != NULL) {
211 int64_t data = d->bufs[wkr].bufptr64;
212 uintptr_t oldbuf = 0;
215 next_mb = mbufs[next_idx++];
216 next_value = (((int64_t)(uintptr_t)next_mb)
217 << RTE_DISTRIB_FLAG_BITS);
219 * User is advocated to set tag value for each
220 * mbuf before calling rte_distributor_process.
221 * User defined tags are used to identify flows,
224 new_tag = next_mb->hash.usr;
227 * Note that if RTE_DISTRIB_MAX_WORKERS is larger than 64
228 * then the size of match has to be expanded.
233 * to scan for a match use "xor" and "not" to get a 0/1
234 * value, then use shifting to merge to single "match"
235 * variable, where a one-bit indicates a match for the
236 * worker given by the bit-position
238 for (i = 0; i < d->num_workers; i++)
239 match |= (!(d->in_flight_tags[i] ^ new_tag)
242 /* Only turned-on bits are considered as match */
243 match &= d->in_flight_bitmask;
247 unsigned worker = __builtin_ctzl(match);
248 if (add_to_backlog(&d->backlog[worker],
254 if ((data & RTE_DISTRIB_GET_BUF) &&
255 (d->backlog[wkr].count || next_mb)) {
257 if (d->backlog[wkr].count)
258 d->bufs[wkr].bufptr64 =
259 backlog_pop(&d->backlog[wkr]);
262 d->bufs[wkr].bufptr64 = next_value;
263 d->in_flight_tags[wkr] = new_tag;
264 d->in_flight_bitmask |= (1UL << wkr);
267 oldbuf = data >> RTE_DISTRIB_FLAG_BITS;
268 } else if (data & RTE_DISTRIB_RETURN_BUF) {
269 handle_worker_shutdown(d, wkr);
270 oldbuf = data >> RTE_DISTRIB_FLAG_BITS;
273 /* store returns in a circular buffer */
274 store_return(oldbuf, d, &ret_start, &ret_count);
276 if (++wkr == d->num_workers)
279 /* to finish, check all workers for backlog and schedule work for them
280 * if they are ready */
281 for (wkr = 0; wkr < d->num_workers; wkr++)
282 if (d->backlog[wkr].count &&
283 (d->bufs[wkr].bufptr64 & RTE_DISTRIB_GET_BUF)) {
285 int64_t oldbuf = d->bufs[wkr].bufptr64 >>
286 RTE_DISTRIB_FLAG_BITS;
287 store_return(oldbuf, d, &ret_start, &ret_count);
289 d->bufs[wkr].bufptr64 = backlog_pop(&d->backlog[wkr]);
292 d->returns.start = ret_start;
293 d->returns.count = ret_count;
296 VERSION_SYMBOL(rte_distributor_process, _v20, 2.0);
298 /* return to the caller, packets returned from workers */
300 rte_distributor_returned_pkts_v20(struct rte_distributor_v20 *d,
301 struct rte_mbuf **mbufs, unsigned max_mbufs)
303 struct rte_distributor_returned_pkts *returns = &d->returns;
304 unsigned retval = (max_mbufs < returns->count) ?
305 max_mbufs : returns->count;
308 for (i = 0; i < retval; i++) {
309 unsigned idx = (returns->start + i) & RTE_DISTRIB_RETURNS_MASK;
310 mbufs[i] = returns->mbufs[idx];
317 VERSION_SYMBOL(rte_distributor_returned_pkts, _v20, 2.0);
319 /* return the number of packets in-flight in a distributor, i.e. packets
320 * being worked on or queued up in a backlog.
322 static inline unsigned
323 total_outstanding(const struct rte_distributor_v20 *d)
325 unsigned wkr, total_outstanding;
327 total_outstanding = __builtin_popcountl(d->in_flight_bitmask);
329 for (wkr = 0; wkr < d->num_workers; wkr++)
330 total_outstanding += d->backlog[wkr].count;
332 return total_outstanding;
335 /* flush the distributor, so that there are no outstanding packets in flight or
338 rte_distributor_flush_v20(struct rte_distributor_v20 *d)
340 const unsigned flushed = total_outstanding(d);
342 while (total_outstanding(d) > 0)
343 rte_distributor_process_v20(d, NULL, 0);
347 VERSION_SYMBOL(rte_distributor_flush, _v20, 2.0);
349 /* clears the internal returns array in the distributor */
351 rte_distributor_clear_returns_v20(struct rte_distributor_v20 *d)
353 d->returns.start = d->returns.count = 0;
355 memset(d->returns.mbufs, 0, sizeof(d->returns.mbufs));
358 VERSION_SYMBOL(rte_distributor_clear_returns, _v20, 2.0);
360 /* creates a distributor instance */
361 struct rte_distributor_v20 *
362 rte_distributor_create_v20(const char *name,
364 unsigned num_workers)
366 struct rte_distributor_v20 *d;
367 struct rte_distributor_list *distributor_list;
368 char mz_name[RTE_MEMZONE_NAMESIZE];
369 const struct rte_memzone *mz;
371 /* compilation-time checks */
372 RTE_BUILD_BUG_ON((sizeof(*d) & RTE_CACHE_LINE_MASK) != 0);
373 RTE_BUILD_BUG_ON((RTE_DISTRIB_MAX_WORKERS & 7) != 0);
374 RTE_BUILD_BUG_ON(RTE_DISTRIB_MAX_WORKERS >
375 sizeof(d->in_flight_bitmask) * CHAR_BIT);
377 if (name == NULL || num_workers >= RTE_DISTRIB_MAX_WORKERS) {
382 snprintf(mz_name, sizeof(mz_name), RTE_DISTRIB_PREFIX"%s", name);
383 mz = rte_memzone_reserve(mz_name, sizeof(*d), socket_id, NO_FLAGS);
390 strlcpy(d->name, name, sizeof(d->name));
391 d->num_workers = num_workers;
393 distributor_list = RTE_TAILQ_CAST(rte_distributor_tailq.head,
394 rte_distributor_list);
396 rte_mcfg_tailq_write_lock();
397 TAILQ_INSERT_TAIL(distributor_list, d, next);
398 rte_mcfg_tailq_write_unlock();
402 VERSION_SYMBOL(rte_distributor_create, _v20, 2.0);