forked from jcxue/RDMA-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.c
213 lines (178 loc) · 6.49 KB
/
server.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
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
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdbool.h>
#include <sys/time.h>
#include "debug.h"
#include "ib.h"
#include "setup_ib.h"
#include "config.h"
#include "server.h"
void *server_thread (void *arg)
{
int ret = 0, i = 0, j = 0, n = 0;
long thread_id = (long) arg;
int num_concurr_msgs = config_info.num_concurr_msgs;
int msg_size = config_info.msg_size;
int num_peers = ib_res.num_qps;
pthread_t self;
cpu_set_t cpuset;
int num_wc = 20;
struct ibv_qp **qp = ib_res.qp;
struct ibv_cq *cq = ib_res.cq;
struct ibv_srq *srq = ib_res.srq;
struct ibv_wc *wc = NULL;
uint32_t lkey = ib_res.mr->lkey;
char *buf_ptr = ib_res.ib_buf;
char *buf_base = ib_res.ib_buf;
int buf_offset = 0;
size_t buf_size = ib_res.ib_buf_size;
uint32_t imm_data = 0;
int num_acked_peers = 0;
bool stop = false;
struct timeval start, end;
long ops_count = 0;
double duration = 0.0;
double throughput = 0.0;
wc = (struct ibv_wc *) calloc (num_wc, sizeof(struct ibv_wc));
check (wc != NULL, "thread[%ld]: failed to allocate wc.", thread_id);
/* set thread affinity */
CPU_ZERO (&cpuset);
CPU_SET ((int)thread_id, &cpuset);
self = pthread_self ();
ret = pthread_setaffinity_np (self, sizeof(cpu_set_t), &cpuset);
check (ret == 0, "thread[%ld]: failed to set thread affinity", thread_id);
/* pre-post recvs */
wc = (struct ibv_wc *) calloc (num_wc, sizeof(struct ibv_wc));
check (wc != NULL, "thread[%ld]: failed to allocate wc.", thread_id);
for (i = 0; i < num_peers; i++) {
for (j = 0; j < num_concurr_msgs; j++) {
ret = post_srq_recv (msg_size, lkey, (uint64_t)buf_ptr, srq, buf_ptr);
buf_offset = (buf_offset + msg_size) % buf_size;
buf_ptr = buf_base + buf_offset;
}
}
/* signal the client to start */
for (i = 0; i < num_peers; i++) {
ret = post_send (0, lkey, 0, MSG_CTL_START, qp[i], buf_base);
check (ret == 0, "thread[%ld]: failed to signal the client to start", thread_id);
}
while (stop != true) {
/* poll cq */
n = ibv_poll_cq (cq, num_wc, wc);
if (n < 0) {
check (0, "thread[%ld]: Failed to poll cq", thread_id);
}
for (i = 0; i < n; i++) {
if (wc[i].status != IBV_WC_SUCCESS) {
if (wc[i].opcode == IBV_WC_SEND) {
check (0, "thread[%ld]: send failed status: %s",
thread_id, ibv_wc_status_str(wc[i].status));
} else {
check (0, "thread[%ld]: recv failed status: %s",
thread_id, ibv_wc_status_str(wc[i].status));
}
}
if (wc[i].opcode == IBV_WC_RECV) {
ops_count += 1;
debug ("ops_count = %ld", ops_count);
if (ops_count == NUM_WARMING_UP_OPS) {
gettimeofday (&start, NULL);
}
if (ops_count == TOT_NUM_OPS) {
gettimeofday (&end, NULL);
stop = true;
break;
}
/* echo the message back */
imm_data = ntohl(wc[i].imm_data);
char *msg_ptr = (char *)wc[i].wr_id;
post_send (msg_size, lkey, 0, imm_data, qp[imm_data], msg_ptr);
/* post a new receive */
post_srq_recv (msg_size, lkey, wc[i].wr_id, srq, msg_ptr);
}
}
}
/* signal the client to stop */
for (i = 0; i < num_peers; i++) {
ret = post_send (0, lkey, IB_WR_ID_STOP, MSG_CTL_STOP, qp[i], ib_res.ib_buf);
check (ret == 0, "thread[%ld]: failed to signal the client to stop", thread_id);
}
stop = false;
while (stop != true) {
/* poll cq */
n = ibv_poll_cq (cq, num_wc, wc);
if (n < 0) {
check (0, "thread[%ld]: Failed to poll cq", thread_id);
}
for (i = 0; i < n; i++) {
if (wc[i].status != IBV_WC_SUCCESS) {
if (wc[i].opcode == IBV_WC_SEND) {
check (0, "thread[%ld]: send failed status: %s",
thread_id, ibv_wc_status_str(wc[i].status));
} else {
check (0, "thread[%ld]: recv failed status: %s",
thread_id, ibv_wc_status_str(wc[i].status));
}
}
if (wc[i].opcode == IBV_WC_SEND) {
if (wc[i].wr_id == IB_WR_ID_STOP) {
num_acked_peers += 1;
if (num_acked_peers == num_peers) {
stop = true;
break;
}
}
}
}
}
/* dump statistics */
duration = (double)((end.tv_sec - start.tv_sec) * 1000000 +
(end.tv_usec - start.tv_usec));
throughput = (double)(ops_count) / duration;
log ("thread[%ld]: throughput = %f (Mops/s)", thread_id, throughput);
free (wc);
pthread_exit ((void *)0);
error:
if (wc != NULL) {
free (wc);
}
pthread_exit ((void *)-1);
}
int run_server ()
{
int ret = 0;
long num_threads = 1;
long i = 0;
pthread_t *threads = NULL;
pthread_attr_t attr;
void *status;
pthread_attr_init (&attr);
pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_JOINABLE);
threads = (pthread_t *) calloc (num_threads, sizeof(pthread_t));
check (threads != NULL, "Failed to allocate threads.");
for (i = 0; i < num_threads; i++) {
ret = pthread_create (&threads[i], &attr, server_thread, (void *)i);
check (ret == 0, "Failed to create server_thread[%ld]", i);
}
bool thread_ret_normally = true;
for (i = 0; i < num_threads; i++) {
ret = pthread_join (threads[i], &status);
check (ret == 0, "Failed to join thread[%ld].", i);
if ((long)status != 0) {
thread_ret_normally = false;
log ("server_thread[%ld]: failed to execute", i);
}
}
if (thread_ret_normally == false) {
goto error;
}
pthread_attr_destroy (&attr);
free (threads);
return 0;
error:
if (threads != NULL) {
free (threads);
}
pthread_attr_destroy (&attr);
return -1;
}