1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
|
/*-
* BSD LICENSE
*
* Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Intel Corporation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <sys/types.h>
#include <string.h>
#include <sys/queue.h>
#include <stdarg.h>
#include <errno.h>
#include <getopt.h>
#include <unistd.h>
#include <sys/time.h>
#include <rte_common.h>
#include <rte_byteorder.h>
#include <rte_log.h>
#include <rte_memory.h>
#include <rte_memcpy.h>
#include <rte_memzone.h>
#include <rte_tailq.h>
#include <rte_eal.h>
#include <rte_per_lcore.h>
#include <rte_launch.h>
#include <rte_atomic.h>
#include <rte_cycles.h>
#include <rte_prefetch.h>
#include <rte_lcore.h>
#include <rte_per_lcore.h>
#include <rte_branch_prediction.h>
#include <rte_interrupts.h>
#include <rte_pci.h>
#include <rte_random.h>
#include <rte_debug.h>
#include <rte_ether.h>
#include <rte_ethdev.h>
#include <rte_ring.h>
#include <rte_mempool.h>
#include <rte_mbuf.h>
#include <rte_ip.h>
#include <rte_tcp.h>
#include <rte_lpm.h>
#include <rte_spinlock.h>
#include <rte_ether.h>
#include <rte_ip.h>
#include <rte_tcp.h>
#include <rte_udp.h>
#include "main.h"
#include "watchdog.h"
#include "nstat.h"
#include "maplookup.h"
#include "sw_config.h"
#if APP_PACKET_MODIFY_DMAC || APP_PACKET_MODIFY_SMAC
#include "vlan.h"
#endif
#ifndef APP_ENERGY_PAUSE
#define APP_ENERGY_PAUSE 0
#endif
#ifndef CLONED_PKT_MEMCPY
#define CLONED_PKT_MEMCPY 1
#endif
#if CLONED_PKT_MEMCPY
static inline struct rte_mbuf *
pktmbuf_clone_memcpy(struct rte_mbuf * md, struct rte_mempool * mp)
{
struct rte_mbuf *mc, *mi, **prev;
uint32_t pktlen;
uint8_t nseg;
if (unlikely ((mc = rte_pktmbuf_alloc(mp)) == NULL))
return (NULL);
mi = mc;
#if RTE_VERSION < RTE_VERSION_NUM(1,8,0,0)
prev = &mi->pkt.next;
pktlen = md->pkt.pkt_len;
nseg = 0;
#elif RTE_VERSION >= RTE_VERSION_NUM(1,8,0,0)
prev = &mi->next;
pktlen = md->pkt_len;
nseg = 0;
#endif
#if RTE_VERSION < RTE_VERSION_NUM(1,8,0,0)
do {
nseg++;
rte_memcpy(rte_pktmbuf_mtod(mi,void *),
rte_pktmbuf_mtod(md,void *),
rte_pktmbuf_data_len(md));
mi->pkt.next = NULL;
mi->pkt.pkt_len = rte_pktmbuf_data_len(md);
mi->pkt.data_len = rte_pktmbuf_data_len(md);
mi->pkt.nb_segs = 1;
*prev = mi;
prev = &mi->pkt.next;
} while ((md = md->pkt.next) != NULL &&
(mi = rte_pktmbuf_alloc(mp)) != NULL);
*prev = NULL;
mc->pkt.nb_segs = nseg;
mc->pkt.pkt_len = pktlen;
#elif RTE_VERSION >= RTE_VERSION_NUM(1,8,0,0)
do {
nseg++;
rte_memcpy(rte_pktmbuf_mtod(mi,void *),
rte_pktmbuf_mtod(md,void *),
rte_pktmbuf_data_len(md));
mi->next = NULL;
mi->pkt_len = rte_pktmbuf_data_len(md);
mi->data_len = rte_pktmbuf_data_len(md);
mi->nb_segs = 1;
*prev = mi;
prev = &mi->next;
} while ((md = md->next) != NULL &&
(mi = rte_pktmbuf_alloc(mp)) != NULL);
*prev = NULL;
mc->nb_segs = nseg;
mc->pkt_len = pktlen;
#endif
/* Allocation of new indirect segment failed */
if (unlikely (mi == NULL)) {
rte_pktmbuf_free(mc);
return (NULL);
}
return (mc);
}
#endif
static inline struct rte_mbuf *
__cloned_pkt_mbuf(struct rte_mbuf * pkt)
{
uint32_t lcore_id = rte_lcore_id();
struct rte_mempool * lcore_mempool = app.lcore_params[lcore_id].pool;
#if !CLONED_PKT_MEMCPY
return rte_pktmbuf_clone(pkt,lcore_mempool);
#else
return pktmbuf_clone_memcpy(pkt,lcore_mempool);
#endif
}
static inline uint32_t
power_idle_heuristic(uint32_t zero_rx_packet_count)
{
/* If zero count is less than 100, use it as the sleep time in us */
if (zero_rx_packet_count < app.energy.sleep_gear1_threshold)
return zero_rx_packet_count;
/* If zero count is less than 1000, sleep time should be 100 us */
else if ((zero_rx_packet_count >= app.energy.sleep_gear1_threshold) &&
(zero_rx_packet_count < app.energy.sleep_gear2_threshold))
return app.energy.sleep_gear1_threshold;
/* If zero count is greater than 1000, sleep time should be 1000 us */
else if (zero_rx_packet_count >= app.energy.sleep_gear2_threshold)
return app.energy.sleep_gear2_threshold;
return 0;
}
static inline int
app_pkt_map_call_extern_func(struct rte_mbuf *pkt)
{
uint32_t lcore = rte_lcore_id();
uint64_t tsc_start,tsc_end;
int ret;
unsigned char * pkt_data = rte_pktmbuf_mtod(pkt,void *);
int pkt_len = rte_pktmbuf_data_len(pkt);
#if RTE_VERSION >= RTE_VERSION_NUM(1,8,0,0)
int in_port = pkt->port;
#else
int in_port = pkt->pkt.in_port;
#endif
#if APP_STATS
tsc_start = rte_rdtsc();
#endif
#if USE_FOR_TORJAN
#if RTE_VERSION < RTE_VERSION_NUM(1,8,0,0)
uint32_t tuple2_hash = pkt->pkt.hash.rss;
#else
uint32_t tuple2_hash = pkt->hash.rss;
#endif
if(tuple2_hash & 1)
return 1;
#endif
if(app.pkt_callback_f.rx_pkt_process != NULL)
{
ret = (*app.pkt_callback_f.rx_pkt_process)(pkt_data,pkt_len,in_port,lcore);
}
else if(app.pkt_callback_f.rx_pkt_process_dst != NULL)
{
int dst = portmap_query_stream_from_rxport(in_port);
ret = (*app.pkt_callback_f.rx_pkt_process_dst)(pkt_data,pkt_len,dst,lcore);
}
#if APP_STATS
tsc_end = rte_rdtsc();
nstat_client_count_wk_runtime(lcore,tsc_end - tsc_start);
#endif
return ret;
}
/* Port from DPDK 1.7.1 examples/load_balancer/runtime.c */
/* By Lu Qiuwen <[email protected]> at 2014-12-05 */
static inline void
app_lcore_worker_forward(struct app_lcore_params_worker * lp, struct rte_mbuf * pkt, uint32_t port, int bsz_wr, int lcore_id)
{
uint32_t pos;
pos = lp->mbuf_out[port].n_mbufs;
lp->mbuf_out[port].array[pos ++] = pkt;
if (likely(pos < bsz_wr)) {
lp->mbuf_out[port].n_mbufs = pos;
return;
}
int ret = rte_ring_sp_enqueue_bulk(
lp->rings_out[port],
(void **) lp->mbuf_out[port].array,
bsz_wr);
if (unlikely(ret == -ENOBUFS)) {
uint32_t k;
nstat_client_count_wk_drop(lp->mbuf_out[port].array, bsz_wr,lcore_id);
for (int k = 0; k < bsz_wr; k ++) {
struct rte_mbuf *pkt_to_free = lp->mbuf_out[port].array[k];
rte_pktmbuf_free(pkt_to_free);
}
}
lp->mbuf_out[port].n_mbufs = 0;
lp->mbuf_out_flush[port] = 0;
return;
}
static inline void
app_lcore_worker(
struct app_lcore_params_worker *lp,
uint32_t bsz_rd,
uint32_t bsz_wr)
{
uint32_t i;
uint64_t lcore_id = rte_lcore_id();
// Save energy
uint32_t lcore_rx_idle_count = 0;
uint32_t lcore_idle_hint = 0;
uint32_t * zero_rx_packet_count = app.energy.wk_zero_rx_packet_count[lcore_id];
uint32_t * zero_idle_hint = app.energy.wk_idle_hint[lcore_id];
#if USE_RING_BURST
uint32_t bsz_rd_req = bsz_rd;
uint32_t bsz_wr_req = bsz_wr;
#endif
for (i = 0; i < lp->n_rings_in; i ++) {
struct rte_ring *ring_in = lp->rings_in[i];
uint32_t j;
uint32_t pos;
int ret;
#if USE_RING_BURST
bsz_rd = rte_ring_dequeue_burst(
ring_in,(void **)lp->mbuf_in.array,bsz_rd_req);
#else
ret = rte_ring_sc_dequeue_bulk(
ring_in,
(void **) lp->mbuf_in.array,
bsz_rd);
#endif
#if USE_RING_BURST
if (unlikely(bsz_rd == 0)) {
#else
if (unlikely(ret == -ENOENT)) {
#endif
zero_rx_packet_count[i]++;
if(zero_rx_packet_count[i] < app.energy.min_zero_pull_count)
continue;
zero_idle_hint[i] = power_idle_heuristic(zero_rx_packet_count[i]);
lcore_rx_idle_count++;
continue;
}
else {
zero_rx_packet_count[i] = zero_rx_packet_count[i] == 0 ? 0 : zero_rx_packet_count[i]--;
nstat_client_count_wk_pkts(lp->mbuf_in.array, bsz_rd, lcore_id);
}
#if 1
//#if APP_WORKER_DROP_ALL_PACKETS
for (j = 0; j < bsz_rd; j ++) {
struct rte_mbuf *pkt = lp->mbuf_in.array[j];
rte_pktmbuf_free(pkt);
}
continue;
#endif
APP_WORKER_PREFETCH1(rte_pktmbuf_mtod(lp->mbuf_in.array[0], unsigned char *));
APP_WORKER_PREFETCH0(lp->mbuf_in.array[1]);
for (j = 0; j < bsz_rd; j ++) {
struct rte_mbuf *pkt;
uint8_t port;
if (likely(j < bsz_rd - 1)) {
APP_WORKER_PREFETCH1(rte_pktmbuf_mtod(lp->mbuf_in.array[j+1], unsigned char *));
}
if (likely(j < bsz_rd - 2)) {
APP_WORKER_PREFETCH0(lp->mbuf_in.array[j+2]);
}
pkt = lp->mbuf_in.array[j];
int application_ret = app_pkt_map_call_extern_func(pkt);
uint8_t * out_portseq = NULL;
int nb_out_portseq = 0;
#if RTE_VERSION < RTE_VERSION_NUM(1,8,0,0)
portmap_lookup_with_application_ret(application_ret,pkt->pkt.in_port,&out_portseq,&nb_out_portseq);
#else
portmap_lookup_with_application_ret(application_ret,pkt->port,&out_portseq,&nb_out_portseq);
#endif
if(unlikely(out_portseq == NULL || nb_out_portseq == 0)) // Fail in lookup portmap
{
rte_pktmbuf_free(pkt);
continue;
}
// Send Packets need cloned.
for(int port_iter = 1; port_iter < nb_out_portseq ; port_iter++)
{
int tx_port_t = out_portseq[port_iter];
struct rte_mbuf * cloned_mbuf = __cloned_pkt_mbuf(pkt);
app_lcore_worker_forward(lp,cloned_mbuf,tx_port_t,bsz_wr,lcore_id);
}
//Forward rx packet.
app_lcore_worker_forward(lp,pkt,out_portseq[0],bsz_wr,lcore_id);
}
}
if(unlikely(lcore_rx_idle_count == lp->n_rings_in))
{
for(i = 0, lcore_idle_hint = zero_idle_hint[0]; i < lp->n_rings_in; i++)
{
lcore_idle_hint = lcore_idle_hint > zero_idle_hint[i] ? zero_idle_hint[i] : lcore_idle_hint;
}
}
if(app.energy.enable)
{
if(lcore_idle_hint < app.energy.sleep_gear1_threshold)
rte_delay_us(lcore_idle_hint);
else
usleep(lcore_idle_hint);
}
return;
}
static inline void
app_lcore_worker_flush(struct app_lcore_params_worker *lp)
{
uint32_t port;
uint8_t lcore_id = rte_lcore_id();
for (port = 0; port < APP_MAX_NIC_PORTS; port ++) {
int ret;
if (unlikely(lp->rings_out[port] == NULL)) {
continue;
}
if (likely((lp->mbuf_out_flush[port] == 0) ||
(lp->mbuf_out[port].n_mbufs == 0))) {
lp->mbuf_out_flush[port] = 1;
continue;
}
ret = rte_ring_sp_enqueue_bulk(
lp->rings_out[port],
(void **) lp->mbuf_out[port].array,
lp->mbuf_out[port].n_mbufs);
if (unlikely(ret < 0)) {
nstat_client_count_wk_drop(lp->mbuf_out[port].array,lp->mbuf_out[port].n_mbufs,lcore_id);
uint32_t k;
for (k = 0; k < lp->mbuf_out[port].n_mbufs; k ++) {
struct rte_mbuf *pkt_to_free = lp->mbuf_out[port].array[k];
rte_pktmbuf_free(pkt_to_free);
}
}
lp->mbuf_out[port].n_mbufs = 0;
lp->mbuf_out_flush[port] = 1;
}
}
#if 0
int app_lcore_worker_tx_buffer_to_send (struct rte_mbuf *pkt, uint8_t port)
{
uint32_t lcore = rte_lcore_id();
uint32_t bsz_wr = app.burst_size_worker_write;
uint32_t n_pkts;
uint16_t tx_queueid = lcore % app.worker_core_num;
struct app_lcore_params_worker *lp = &app.lcore_params[lcore].worker;
uint32_t pos;
#if APP_STATS
uint64_t tsc_start, tsc_end;
#endif
pos = lp->mbuf_out[port].n_mbufs;
lp->mbuf_out[port].array[pos ++] = pkt;
if (likely(pos < bsz_wr)) {
lp->mbuf_out[port].n_mbufs = pos;
return 0;
}
#if APP_STATS
get_stats(lp->mbuf_out[port].array, bsz_wr, lcore, port, tx_queueid, RSYS_TX);
tsc_start = rte_rdtsc();
get_lcores_stats(lcore, tsc_start, RSYS_LCORE_TX);
#endif
n_pkts = rte_eth_tx_burst(
port,
tx_queueid,
lp->mbuf_out[port].array,
(uint16_t) bsz_wr);
#ifdef APP_DEBUG
int debugi;
for(debugi = 0; debugi < (int)n_pkts; debugi++)
fprintf(stderr,"ETH_TX_BURST/WK:%d(%d)\n",
lp->mbuf_out[port].array[debugi]->pkt.data_len,
lcore);
#endif
#if APP_STATS
tsc_end = rte_rdtsc();
get_lcores_stats(lcore, tsc_end, RSYS_LCORE_APP);
app_stats[lcore][port][tx_queueid][RSYS_TX].core_cycles[current_index] += (tsc_end - tsc_start);
#endif
if (unlikely(n_pkts < bsz_wr)) {
uint32_t k;
#if APP_STATS
remove_stats(lp->mbuf_out[port].array, bsz_wr - n_pkts, lcore, port, tx_queueid, RSYS_TX);
#endif
for (k = n_pkts; k < bsz_wr; k ++) {
struct rte_mbuf *pkt_to_free = lp->mbuf_out[port].array[k];
rte_pktmbuf_free(pkt_to_free);
}
}
lp->mbuf_out[port].n_mbufs = 0;
lp->mbuf_out_flush[port] = 0;
return 0;
}
#endif
#if 0
static inline void
app_lcore_worker(
struct app_lcore_params_worker *lp,
uint32_t bsz_rd)
{
uint32_t i,n;
#if APP_STATS
unsigned lcore_id = rte_lcore_id();
uint64_t tsc_start, tsc_end;
#endif
for (i = 0; i < lp->n_rings_in; i ++)
{
struct rte_ring *ring_in = lp->rings_in[i];
uint32_t j;
#if APP_STATS
tsc_start = rte_rdtsc();
get_lcores_stats(lcore_id, tsc_start, RSYS_LCORE_RX);
#endif
n = rte_ring_sc_dequeue_burst(
ring_in,
(void **) lp->mbuf_in.array,
bsz_rd);
if (unlikely( n == 0)) {
continue;
}
#if APP_STATS
tsc_end = rte_rdtsc();
get_lcores_stats(lcore_id, tsc_end, RSYS_LCORE_APP);
app_stats[lcore_id][lcore_conf[lcore_id][i].port_id][lcore_conf[lcore_id][i].queue_id][RSYS_RX].core_cycles[current_index] += (tsc_end - tsc_start);
get_stats(lp->mbuf_in.array, n, lcore_id, 0, 0, RSYS_RX);
#endif
//usleep(5000);
#if APP_WORKER_DROP_ALL_PACKETS
for (j = 0; j < n; j ++) {
struct rte_mbuf *pkt = lp->mbuf_in.array[j];
rte_pktmbuf_free(pkt);
}
continue;
#endif
APP_WORKER_PREFETCH1(rte_pktmbuf_mtod(lp->mbuf_in.array[0], unsigned char *));
APP_WORKER_PREFETCH0(lp->mbuf_in.array[1]);
for (j = 0; j < n; j ++) {
struct rte_mbuf *pkt;
uint8_t port;
if (likely(j < n - 1)) {
APP_WORKER_PREFETCH1(rte_pktmbuf_mtod(lp->mbuf_in.array[j+1], unsigned char *));
}
if (likely(j < n - 2)) {
APP_WORKER_PREFETCH0(lp->mbuf_in.array[j+2]);
}
pkt = lp->mbuf_in.array[j];
if(app_pkt_process(pkt, &port)) {
struct rte_mbuf *pkt = lp->mbuf_in.array[j];
rte_pktmbuf_free(pkt);
}
}
}
}
static inline void
app_lcore_worker_flush(struct app_lcore_params_worker *lp)
{
uint32_t port;
uint32_t lcore = rte_lcore_id();
uint16_t tx_queueid = lcore % app.worker_core_num;
uint32_t n_pkts;
#if APP_STATS
uint64_t tsc_start, tsc_end;
#endif
for (port = 0; port < APP_MAX_NIC_PORTS; port ++) {
if (likely((lp->mbuf_out_flush[port] == 0) ||
(lp->mbuf_out[port].n_mbufs == 0))) {
lp->mbuf_out_flush[port] = 1;
continue;
}
#if APP_STATS
get_stats(lp->mbuf_out[port].array, lp->mbuf_out[port].n_mbufs, lcore, port, tx_queueid, RSYS_TX);
tsc_start = rte_rdtsc();
get_lcores_stats(lcore, tsc_start, RSYS_LCORE_TX);
#endif
n_pkts = rte_eth_tx_burst(
port,
tx_queueid,
lp->mbuf_out[port].array,
lp->mbuf_out[port].n_mbufs);
#ifdef APP_DEBUG
//DEBUG:
int debugi;
fprintf(stderr,"ETH_TX_BURST/WK_FL-n_mbufs:%d\n",n_pkts);
for(debugi = 0; debugi < (int)n_pkts; debugi++)
fprintf(stderr,"ETH_TX_BURST/WK_FL:%d(%d)\n",
lp->mbuf_out[port].array[debugi]->pkt.data_len,
lcore);
#endif
#if APP_STATS
tsc_end = rte_rdtsc();
get_lcores_stats(lcore, tsc_end, RSYS_LCORE_APP);
app_stats[lcore][port][tx_queueid][RSYS_TX].core_cycles[current_index] += (tsc_end - tsc_start);
#endif
if (unlikely(n_pkts < lp->mbuf_out[port].n_mbufs)) {
uint32_t k;
#if APP_STATS
remove_stats(lp->mbuf_out[port].array, lp->mbuf_out[port].n_mbufs - n_pkts, lcore, port, tx_queueid, RSYS_TX);
#endif
for (k = n_pkts; k < lp->mbuf_out[port].n_mbufs; k ++) {
struct rte_mbuf *pkt_to_free = lp->mbuf_out[port].array[k];
rte_pktmbuf_free(pkt_to_free);
}
}
lp->mbuf_out[port].n_mbufs = 0;
lp->mbuf_out_flush[port] = 1;
}
}
#endif
static void
app_lcore_main_loop_worker(void) {
uint32_t lcore = rte_lcore_id();
struct app_lcore_params_worker *lp = &app.lcore_params[lcore].worker;
uint64_t i = 0;
uint32_t bsz_rd = app.burst_size_worker_read;
uint32_t bsz_wr = app.burst_size_worker_write;
for ( ; ; ) {
if (APP_LCORE_WORKER_FLUSH && (unlikely(i == APP_LCORE_WORKER_FLUSH))) {
app_lcore_worker_flush(lp);
i = 0;
}
app_lcore_worker(lp, bsz_rd, bsz_wr);
i ++;
}
}
int
app_lcore_main_loop(__attribute__((unused)) void *arg)
{
struct app_lcore_params *lp;
unsigned lcore;
lcore = rte_lcore_id();
lp = &app.lcore_params[lcore];
if (lp->type == e_APP_LCORE_WORKER) {
printf("Logical core %u (worker %u) main loop.\n",
lcore,
(unsigned) lp->worker.worker_id);
app_lcore_main_loop_worker();
}
return 0;
}
|