-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrte_ring_main.c
128 lines (98 loc) · 2.62 KB
/
rte_ring_main.c
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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include "rte_ring.h"
#define RING_SIZE 16<<20
typedef struct cc_queue_node {
int data;
} cc_queue_node_t;
static struct rte_ring *r;
typedef unsigned long long ticks;
static __inline__ ticks getticks(void)
{
u_int32_t a, d;
asm volatile("rdtsc" : "=a" (a), "=d" (d));
return (((ticks)a) | (((ticks)d) << 32));
}
void *enqueue_fun(void *data)
{
int n = (int)data;
int i = 0;
int ret;
cc_queue_node_t *p;
for (; i < n; i++) {
p = (cc_queue_node_t *)malloc(sizeof(cc_queue_node_t));
p->data = i;
ret = rte_ring_mp_enqueue(r, p);
if (ret != 0) {
printf("enqueue failed: %d\n", i);
}
}
return NULL;
}
void *dequeue_func(void *data)
{
int ret;
int i = 0;
int sum = 0;
int n = (int)data;
cc_queue_node_t *p;
ticks t1, t2, diff;
//return;
t1 = getticks();
while (1) {
p = NULL;
ret = rte_ring_sc_dequeue(r, (void **)&p);
if (ret != 0) {
//do something
}
if (p != NULL) {
i++;
sum += p->data;
free(p);
if (i == n) {
break;
}
}
}
t2 = getticks();
diff = t2 - t1;
printf("time diff: %llu\n", diff);
printf("dequeue total: %d, sum: %d\n", i, sum);
return NULL;
}
int main(int argc, char *argv[])
{
int ret = 0;
pthread_t pid1, pid2, pid3, pid4, pid5, pid6;
pthread_attr_t pthread_attr;
r = rte_ring_create("test", RING_SIZE, 0);
if (r == NULL) {
return -1;
}
printf("start enqueue, 5 producer threads, echo thread enqueue 1000 numbers.\n");
pthread_attr_init(&pthread_attr);
if ((ret = pthread_create(&pid1, &pthread_attr, enqueue_fun, (void *)1000)) == 0) {
pthread_detach(pid1);
}
if ((ret = pthread_create(&pid2, &pthread_attr, enqueue_fun, (void *)1000)) == 0) {
pthread_detach(pid2);
}
if ((ret = pthread_create(&pid3, &pthread_attr, enqueue_fun, (void *)1000)) == 0) {
pthread_detach(pid3);
}
if ((ret = pthread_create(&pid4, &pthread_attr, enqueue_fun, (void *)1000)) == 0) {
pthread_detach(pid4);
}
if ((ret = pthread_create(&pid5, &pthread_attr, enqueue_fun, (void *)1000)) == 0) {
pthread_detach(pid5);
}
printf("start dequeue, 1 consumer thread.\n");
if ((ret = pthread_create(&pid6, &pthread_attr, dequeue_func, (void *)5000)) == 0) {
//pthread_detach(pid6);
}
pthread_join(pid6, NULL);
rte_ring_free(r);
return 0;
}