Imported Upstream version 16.04
[deb_dpdk.git] / doc / guides / sample_app_ug / l2_forward_job_stats.rst
1 ..  BSD LICENSE
2     Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
3     All rights reserved.
4
5     Redistribution and use in source and binary forms, with or without
6     modification, are permitted provided that the following conditions
7     are met:
8
9     * Redistributions of source code must retain the above copyright
10     notice, this list of conditions and the following disclaimer.
11     * Redistributions in binary form must reproduce the above copyright
12     notice, this list of conditions and the following disclaimer in
13     the documentation and/or other materials provided with the
14     distribution.
15     * Neither the name of Intel Corporation nor the names of its
16     contributors may be used to endorse or promote products derived
17     from this software without specific prior written permission.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 L2 Forwarding Sample Application (in Real and Virtualized Environments) with core load statistics.
32 ==================================================================================================
33
34 The L2 Forwarding sample application is a simple example of packet processing using
35 the Data Plane Development Kit (DPDK) which
36 also takes advantage of Single Root I/O Virtualization (SR-IOV) features in a virtualized environment.
37
38 .. note::
39
40     This application is a variation of L2 Forwarding sample application. It demonstrate possible
41     scheme of job stats library usage therefore some parts of this document is identical with original
42     L2 forwarding application.
43
44 Overview
45 --------
46
47 The L2 Forwarding sample application, which can operate in real and virtualized environments,
48 performs L2 forwarding for each packet that is received.
49 The destination port is the adjacent port from the enabled portmask, that is,
50 if the first four ports are enabled (portmask 0xf),
51 ports 1 and 2 forward into each other, and ports 3 and 4 forward into each other.
52 Also, the MAC addresses are affected as follows:
53
54 *   The source MAC address is replaced by the TX port MAC address
55
56 *   The destination MAC address is replaced by  02:00:00:00:00:TX_PORT_ID
57
58 This application can be used to benchmark performance using a traffic-generator, as shown in the :numref:`figure_l2_fwd_benchmark_setup_jobstats`.
59
60 The application can also be used in a virtualized environment as shown in :numref:`figure_l2_fwd_virtenv_benchmark_setup_jobstats`.
61
62 The L2 Forwarding application can also be used as a starting point for developing a new application based on the DPDK.
63
64 .. _figure_l2_fwd_benchmark_setup_jobstats:
65
66 .. figure:: img/l2_fwd_benchmark_setup.*
67
68    Performance Benchmark Setup (Basic Environment)
69
70 .. _figure_l2_fwd_virtenv_benchmark_setup_jobstats:
71
72 .. figure:: img/l2_fwd_virtenv_benchmark_setup.*
73
74    Performance Benchmark Setup (Virtualized Environment)
75
76
77 Virtual Function Setup Instructions
78 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
79
80 This application can use the virtual function available in the system and
81 therefore can be used in a virtual machine without passing through
82 the whole Network Device into a guest machine in a virtualized scenario.
83 The virtual functions can be enabled in the host machine or the hypervisor with the respective physical function driver.
84
85 For example, in a Linux* host machine, it is possible to enable a virtual function using the following command:
86
87 .. code-block:: console
88
89     modprobe ixgbe max_vfs=2,2
90
91 This command enables two Virtual Functions on each of Physical Function of the NIC,
92 with two physical ports in the PCI configuration space.
93 It is important to note that enabled Virtual Function 0 and 2 would belong to Physical Function 0
94 and Virtual Function 1 and 3 would belong to Physical Function 1,
95 in this case enabling a total of four Virtual Functions.
96
97 Compiling the Application
98 -------------------------
99
100 #.  Go to the example directory:
101
102     .. code-block:: console
103
104         export RTE_SDK=/path/to/rte_sdk
105         cd ${RTE_SDK}/examples/l2fwd-jobstats
106
107 #.  Set the target (a default target is used if not specified). For example:
108
109     .. code-block:: console
110
111         export RTE_TARGET=x86_64-native-linuxapp-gcc
112
113     *See the DPDK Getting Started Guide* for possible RTE_TARGET values.
114
115 #.  Build the application:
116
117     .. code-block:: console
118
119         make
120
121 Running the Application
122 -----------------------
123
124 The application requires a number of command line options:
125
126 .. code-block:: console
127
128     ./build/l2fwd-jobstats [EAL options] -- -p PORTMASK [-q NQ] [-l]
129
130 where,
131
132 *   p PORTMASK: A hexadecimal bitmask of the ports to configure
133
134 *   q NQ: A number of queues (=ports) per lcore (default is 1)
135
136 *   l: Use locale thousands separator when formatting big numbers.
137
138 To run the application in linuxapp environment with 4 lcores, 16 ports, 8 RX queues per lcore and
139 thousands  separator printing, issue the command:
140
141 .. code-block:: console
142
143     $ ./build/l2fwd-jobstats -c f -n 4 -- -q 8 -p ffff -l
144
145 Refer to the *DPDK Getting Started Guide* for general information on running applications
146 and the Environment Abstraction Layer (EAL) options.
147
148 Explanation
149 -----------
150
151 The following sections provide some explanation of the code.
152
153 Command Line Arguments
154 ~~~~~~~~~~~~~~~~~~~~~~
155
156 The L2 Forwarding sample application takes specific parameters,
157 in addition to Environment Abstraction Layer (EAL) arguments
158 (see `Running the Application`_).
159 The preferred way to parse parameters is to use the getopt() function,
160 since it is part of a well-defined and portable library.
161
162 The parsing of arguments is done in the l2fwd_parse_args() function.
163 The method of argument parsing is not described here.
164 Refer to the *glibc getopt(3)* man page for details.
165
166 EAL arguments are parsed first, then application-specific arguments.
167 This is done at the beginning of the main() function:
168
169 .. code-block:: c
170
171     /* init EAL */
172
173     ret = rte_eal_init(argc, argv);
174     if (ret < 0)
175         rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
176
177     argc -= ret;
178     argv += ret;
179
180     /* parse application arguments (after the EAL ones) */
181
182     ret = l2fwd_parse_args(argc, argv);
183     if (ret < 0)
184         rte_exit(EXIT_FAILURE, "Invalid L2FWD arguments\n");
185
186 Mbuf Pool Initialization
187 ~~~~~~~~~~~~~~~~~~~~~~~~
188
189 Once the arguments are parsed, the mbuf pool is created.
190 The mbuf pool contains a set of mbuf objects that will be used by the driver
191 and the application to store network packet data:
192
193 .. code-block:: c
194
195     /* create the mbuf pool */
196     l2fwd_pktmbuf_pool =
197         rte_mempool_create("mbuf_pool", NB_MBUF,
198                    MBUF_SIZE, 32,
199                    sizeof(struct rte_pktmbuf_pool_private),
200                    rte_pktmbuf_pool_init, NULL,
201                    rte_pktmbuf_init, NULL,
202                    rte_socket_id(), 0);
203
204     if (l2fwd_pktmbuf_pool == NULL)
205         rte_exit(EXIT_FAILURE, "Cannot init mbuf pool\n");
206
207 The rte_mempool is a generic structure used to handle pools of objects.
208 In this case, it is necessary to create a pool that will be used by the driver,
209 which expects to have some reserved space in the mempool structure,
210 sizeof(struct rte_pktmbuf_pool_private) bytes.
211 The number of allocated pkt mbufs is NB_MBUF, with a size of MBUF_SIZE each.
212 A per-lcore cache of 32 mbufs is kept.
213 The memory is allocated in rte_socket_id() socket,
214 but it is possible to extend this code to allocate one mbuf pool per socket.
215
216 Two callback pointers are also given to the rte_mempool_create() function:
217
218 *   The first callback pointer is to rte_pktmbuf_pool_init() and is used
219     to initialize the private data of the mempool, which is needed by the driver.
220     This function is provided by the mbuf API, but can be copied and extended by the developer.
221
222 *   The second callback pointer given to rte_mempool_create() is the mbuf initializer.
223     The default is used, that is, rte_pktmbuf_init(), which is provided in the rte_mbuf library.
224     If a more complex application wants to extend the rte_pktmbuf structure for its own needs,
225     a new function derived from rte_pktmbuf_init( ) can be created.
226
227 Driver Initialization
228 ~~~~~~~~~~~~~~~~~~~~~
229
230 The main part of the code in the main() function relates to the initialization of the driver.
231 To fully understand this code, it is recommended to study the chapters that related to the Poll Mode Driver
232 in the *DPDK Programmer's Guide* and the *DPDK API Reference*.
233
234 .. code-block:: c
235
236     nb_ports = rte_eth_dev_count();
237
238     if (nb_ports == 0)
239         rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
240
241     if (nb_ports > RTE_MAX_ETHPORTS)
242         nb_ports = RTE_MAX_ETHPORTS;
243
244     /* reset l2fwd_dst_ports */
245
246     for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++)
247         l2fwd_dst_ports[portid] = 0;
248
249     last_port = 0;
250
251     /*
252      * Each logical core is assigned a dedicated TX queue on each port.
253      */
254     for (portid = 0; portid < nb_ports; portid++) {
255         /* skip ports that are not enabled */
256         if ((l2fwd_enabled_port_mask & (1 << portid)) == 0)
257            continue;
258
259         if (nb_ports_in_mask % 2) {
260             l2fwd_dst_ports[portid] = last_port;
261             l2fwd_dst_ports[last_port] = portid;
262         }
263         else
264            last_port = portid;
265
266         nb_ports_in_mask++;
267
268         rte_eth_dev_info_get((uint8_t) portid, &dev_info);
269     }
270
271 The next step is to configure the RX and TX queues.
272 For each port, there is only one RX queue (only one lcore is able to poll a given port).
273 The number of TX queues depends on the number of available lcores.
274 The rte_eth_dev_configure() function is used to configure the number of queues for a port:
275
276 .. code-block:: c
277
278     ret = rte_eth_dev_configure((uint8_t)portid, 1, 1, &port_conf);
279     if (ret < 0)
280         rte_exit(EXIT_FAILURE, "Cannot configure device: "
281             "err=%d, port=%u\n",
282             ret, portid);
283
284 The global configuration is stored in a static structure:
285
286 .. code-block:: c
287
288     static const struct rte_eth_conf port_conf = {
289         .rxmode = {
290             .split_hdr_size = 0,
291             .header_split = 0,   /**< Header Split disabled */
292             .hw_ip_checksum = 0, /**< IP checksum offload disabled */
293             .hw_vlan_filter = 0, /**< VLAN filtering disabled */
294             .jumbo_frame = 0,    /**< Jumbo Frame Support disabled */
295             .hw_strip_crc= 0,    /**< CRC stripped by hardware */
296         },
297
298         .txmode = {
299             .mq_mode = ETH_DCB_NONE
300         },
301     };
302
303 RX Queue Initialization
304 ~~~~~~~~~~~~~~~~~~~~~~~
305
306 The application uses one lcore to poll one or several ports, depending on the -q option,
307 which specifies the number of queues per lcore.
308
309 For example, if the user specifies -q 4, the application is able to poll four ports with one lcore.
310 If there are 16 ports on the target (and if the portmask argument is -p ffff ),
311 the application will need four lcores to poll all the ports.
312
313 .. code-block:: c
314
315     ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
316                 rte_eth_dev_socket_id(portid),
317                 NULL,
318                 l2fwd_pktmbuf_pool);
319
320     if (ret < 0)
321         rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup:err=%d, port=%u\n",
322                 ret, (unsigned) portid);
323
324 The list of queues that must be polled for a given lcore is stored in a private structure called struct lcore_queue_conf.
325
326 .. code-block:: c
327
328     struct lcore_queue_conf {
329         unsigned n_rx_port;
330         unsigned rx_port_list[MAX_RX_QUEUE_PER_LCORE];
331         truct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
332
333         struct rte_timer rx_timers[MAX_RX_QUEUE_PER_LCORE];
334         struct rte_jobstats port_fwd_jobs[MAX_RX_QUEUE_PER_LCORE];
335
336         struct rte_timer flush_timer;
337         struct rte_jobstats flush_job;
338         struct rte_jobstats idle_job;
339         struct rte_jobstats_context jobs_context;
340
341         rte_atomic16_t stats_read_pending;
342         rte_spinlock_t lock;
343     } __rte_cache_aligned;
344
345 Values of struct lcore_queue_conf:
346
347 *   n_rx_port and rx_port_list[] are used in the main packet processing loop
348     (see Section `Receive, Process and Transmit Packets`_ later in this chapter).
349
350 *   rx_timers and flush_timer are used to ensure forced TX on low packet rate.
351
352 *   flush_job, idle_job and jobs_context are librte_jobstats objects used for managing l2fwd jobs.
353
354 *   stats_read_pending and lock are used during job stats read phase.
355
356 TX Queue Initialization
357 ~~~~~~~~~~~~~~~~~~~~~~~
358
359 Each lcore should be able to transmit on any port. For every port, a single TX queue is initialized.
360
361 .. code-block:: c
362
363     /* init one TX queue on each port */
364
365     fflush(stdout);
366     ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
367             rte_eth_dev_socket_id(portid),
368             NULL);
369     if (ret < 0)
370         rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup:err=%d, port=%u\n",
371                 ret, (unsigned) portid);
372
373 Jobs statistics initialization
374 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
375 There are several statistics objects available:
376
377 *   Flush job statistics
378
379 .. code-block:: c
380
381     rte_jobstats_init(&qconf->flush_job, "flush", drain_tsc, drain_tsc,
382             drain_tsc, 0);
383
384     rte_timer_init(&qconf->flush_timer);
385     ret = rte_timer_reset(&qconf->flush_timer, drain_tsc, PERIODICAL,
386                 lcore_id, &l2fwd_flush_job, NULL);
387
388     if (ret < 0) {
389         rte_exit(1, "Failed to reset flush job timer for lcore %u: %s",
390                     lcore_id, rte_strerror(-ret));
391     }
392
393 *   Statistics per RX port
394
395 .. code-block:: c
396
397     rte_jobstats_init(job, name, 0, drain_tsc, 0, MAX_PKT_BURST);
398     rte_jobstats_set_update_period_function(job, l2fwd_job_update_cb);
399
400     rte_timer_init(&qconf->rx_timers[i]);
401     ret = rte_timer_reset(&qconf->rx_timers[i], 0, PERIODICAL, lcore_id,
402             l2fwd_fwd_job, (void *)(uintptr_t)i);
403
404     if (ret < 0) {
405         rte_exit(1, "Failed to reset lcore %u port %u job timer: %s",
406                     lcore_id, qconf->rx_port_list[i], rte_strerror(-ret));
407     }
408
409 Following parameters are passed to rte_jobstats_init():
410
411 *   0 as minimal poll period
412
413 *   drain_tsc as maximum poll period
414
415 *   MAX_PKT_BURST as desired target value (RX burst size)
416
417 Main loop
418 ~~~~~~~~~
419
420 The forwarding path is reworked comparing to original L2 Forwarding application.
421 In the l2fwd_main_loop() function three loops are placed.
422
423 .. code-block:: c
424
425     for (;;) {
426         rte_spinlock_lock(&qconf->lock);
427
428         do {
429             rte_jobstats_context_start(&qconf->jobs_context);
430
431             /* Do the Idle job:
432              * - Read stats_read_pending flag
433              * - check if some real job need to be executed
434              */
435             rte_jobstats_start(&qconf->jobs_context, &qconf->idle_job);
436
437             do {
438                 uint8_t i;
439                 uint64_t now = rte_get_timer_cycles();
440
441                 need_manage = qconf->flush_timer.expire < now;
442                 /* Check if we was esked to give a stats. */
443                 stats_read_pending =
444                         rte_atomic16_read(&qconf->stats_read_pending);
445                 need_manage |= stats_read_pending;
446
447                 for (i = 0; i < qconf->n_rx_port && !need_manage; i++)
448                     need_manage = qconf->rx_timers[i].expire < now;
449
450             } while (!need_manage);
451             rte_jobstats_finish(&qconf->idle_job, qconf->idle_job.target);
452
453             rte_timer_manage();
454             rte_jobstats_context_finish(&qconf->jobs_context);
455         } while (likely(stats_read_pending == 0));
456
457         rte_spinlock_unlock(&qconf->lock);
458         rte_pause();
459     }
460
461 First infinite for loop is to minimize impact of stats reading. Lock is only locked/unlocked when asked.
462
463 Second inner while loop do the whole jobs management. When any job is ready, the use rte_timer_manage() is used to call the job handler.
464 In this place functions l2fwd_fwd_job() and l2fwd_flush_job() are called when needed.
465 Then rte_jobstats_context_finish() is called to mark loop end - no other jobs are ready to execute. By this time stats are ready to be read
466 and if stats_read_pending is set, loop breaks allowing stats to be read.
467
468 Third do-while loop is the idle job (idle stats counter). Its only purpose is monitoring if any job is ready or stats job read is pending
469 for this lcore. Statistics from this part of code is considered as the headroom available for additional processing.
470
471 Receive, Process and Transmit Packets
472 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
473
474 The main task of l2fwd_fwd_job() function is to read ingress packets from the RX queue of particular port and forward it.
475 This is done using the following code:
476
477 .. code-block:: c
478
479     total_nb_rx = rte_eth_rx_burst((uint8_t) portid, 0, pkts_burst,
480             MAX_PKT_BURST);
481
482     for (j = 0; j < total_nb_rx; j++) {
483         m = pkts_burst[j];
484         rte_prefetch0(rte_pktmbuf_mtod(m, void *));
485         l2fwd_simple_forward(m, portid);
486     }
487
488 Packets are read in a burst of size MAX_PKT_BURST.
489 Then, each mbuf in the table is processed by the l2fwd_simple_forward() function.
490 The processing is very simple: process the TX port from the RX port, then replace the source and destination MAC addresses.
491
492 The rte_eth_rx_burst() function writes the mbuf pointers in a local table and returns the number of available mbufs in the table.
493
494 After first read second try is issued.
495
496 .. code-block:: c
497
498     if (total_nb_rx == MAX_PKT_BURST) {
499         const uint16_t nb_rx = rte_eth_rx_burst((uint8_t) portid, 0, pkts_burst,
500                 MAX_PKT_BURST);
501
502         total_nb_rx += nb_rx;
503         for (j = 0; j < nb_rx; j++) {
504             m = pkts_burst[j];
505             rte_prefetch0(rte_pktmbuf_mtod(m, void *));
506             l2fwd_simple_forward(m, portid);
507         }
508     }
509
510 This second read is important to give job stats library a feedback how many packets was processed.
511
512 .. code-block:: c
513
514     /* Adjust period time in which we are running here. */
515     if (rte_jobstats_finish(job, total_nb_rx) != 0) {
516         rte_timer_reset(&qconf->rx_timers[port_idx], job->period, PERIODICAL,
517                 lcore_id, l2fwd_fwd_job, arg);
518     }
519
520 To maximize performance exactly MAX_PKT_BURST is expected (the target value) to be read for each l2fwd_fwd_job() call.
521 If total_nb_rx is smaller than target value job->period will be increased. If it is greater the period will be decreased.
522
523 .. note::
524
525     In the following code, one line for getting the output port requires some explanation.
526
527 During the initialization process, a static array of destination ports (l2fwd_dst_ports[]) is filled such that for each source port,
528 a destination port is assigned that is either the next or previous enabled port from the portmask.
529 Naturally, the number of ports in the portmask must be even, otherwise, the application exits.
530
531 .. code-block:: c
532
533     static void
534     l2fwd_simple_forward(struct rte_mbuf *m, unsigned portid)
535     {
536         struct ether_hdr *eth;
537         void *tmp;
538         unsigned dst_port;
539
540         dst_port = l2fwd_dst_ports[portid];
541
542         eth = rte_pktmbuf_mtod(m, struct ether_hdr *);
543
544         /* 02:00:00:00:00:xx */
545
546         tmp = &eth->d_addr.addr_bytes[0];
547
548         *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t) dst_port << 40);
549
550         /* src addr */
551
552         ether_addr_copy(&l2fwd_ports_eth_addr[dst_port], &eth->s_addr);
553
554         l2fwd_send_packet(m, (uint8_t) dst_port);
555     }
556
557 Then, the packet is sent using the l2fwd_send_packet (m, dst_port) function.
558 For this test application, the processing is exactly the same for all packets arriving on the same RX port.
559 Therefore, it would have been possible to call the l2fwd_send_burst() function directly from the main loop
560 to send all the received packets on the same TX port,
561 using the burst-oriented send function, which is more efficient.
562
563 However, in real-life applications (such as, L3 routing),
564 packet N is not necessarily forwarded on the same port as packet N-1.
565 The application is implemented to illustrate that, so the same approach can be reused in a more complex application.
566
567 The l2fwd_send_packet() function stores the packet in a per-lcore and per-txport table.
568 If the table is full, the whole packets table is transmitted using the l2fwd_send_burst() function:
569
570 .. code-block:: c
571
572     /* Send the packet on an output interface */
573
574     static int
575     l2fwd_send_packet(struct rte_mbuf *m, uint8_t port)
576     {
577         unsigned lcore_id, len;
578         struct lcore_queue_conf *qconf;
579
580         lcore_id = rte_lcore_id();
581         qconf = &lcore_queue_conf[lcore_id];
582         len = qconf->tx_mbufs[port].len;
583         qconf->tx_mbufs[port].m_table[len] = m;
584         len++;
585
586         /* enough pkts to be sent */
587
588         if (unlikely(len == MAX_PKT_BURST)) {
589             l2fwd_send_burst(qconf, MAX_PKT_BURST, port);
590             len = 0;
591         }
592
593         qconf->tx_mbufs[port].len = len; return 0;
594     }
595
596 To ensure that no packets remain in the tables, the flush job exists. The l2fwd_flush_job()
597 is called periodically to for each lcore draining TX queue of each port.
598 This technique introduces some latency when there are not many packets to send,
599 however it improves performance:
600
601 .. code-block:: c
602
603     static void
604     l2fwd_flush_job(__rte_unused struct rte_timer *timer, __rte_unused void *arg)
605     {
606         uint64_t now;
607         unsigned lcore_id;
608         struct lcore_queue_conf *qconf;
609         struct mbuf_table *m_table;
610         uint8_t portid;
611
612         lcore_id = rte_lcore_id();
613         qconf = &lcore_queue_conf[lcore_id];
614
615         rte_jobstats_start(&qconf->jobs_context, &qconf->flush_job);
616
617         now = rte_get_timer_cycles();
618         lcore_id = rte_lcore_id();
619         qconf = &lcore_queue_conf[lcore_id];
620         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
621             m_table = &qconf->tx_mbufs[portid];
622             if (m_table->len == 0 || m_table->next_flush_time <= now)
623                 continue;
624
625             l2fwd_send_burst(qconf, portid);
626         }
627
628
629         /* Pass target to indicate that this job is happy of time interval
630          * in which it was called. */
631         rte_jobstats_finish(&qconf->flush_job, qconf->flush_job.target);
632     }