-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathjitterdebugger.c
820 lines (690 loc) · 18.6 KB
/
jitterdebugger.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
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
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
// SPDX-License-Identifier: MIT
#define _GNU_SOURCE
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
#include <errno.h>
#include <string.h>
#include <pthread.h>
#include <stdint.h>
#include <limits.h>
#include <getopt.h>
#include <inttypes.h>
#include <sys/sysinfo.h>
#include <sys/types.h>
#include <sys/syscall.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <linux/limits.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include "jitterdebugger.h"
#define VT100_ERASE_EOL "\033[K"
#define VT100_CURSOR_UP "\033[%uA"
#define NSEC_PER_SEC 1000000000
#define NSEC_PER_US 1000UL
/* Default test interval in us */
#define DEFAULT_INTERVAL 1000
struct stats {
pthread_t pid;
pid_t tid;
unsigned int affinity;
uint64_t max;
uint64_t min;
uint64_t avg;
unsigned int hist_size;
uint64_t *hist; /* each slot is one us */
uint64_t total;
uint64_t count;
struct ringbuffer *rb;
};
struct record_data {
struct stats *stats;
char *server;
char *port;
FILE *fd;
};
static int jd_shutdown;
static cpu_set_t affinity;
static unsigned int num_threads;
static unsigned int priority = 80;
static uint64_t break_val = UINT64_MAX;
static unsigned int sleep_interval_us = DEFAULT_INTERVAL;
static unsigned int interval_resolution = NSEC_PER_US;
static unsigned int max_loops = 0;
static int trace_fd = -1;
static int tracemark_fd = -1;
static void sig_handler(int sig)
{
WRITE_ONCE(jd_shutdown, 1);
}
static inline int64_t ts_sub(struct timespec t1, struct timespec t2)
{
int64_t diff;
diff = NSEC_PER_SEC * (int64_t)((int) t1.tv_sec - (int) t2.tv_sec);
diff += ((int) t1.tv_nsec - (int) t2.tv_nsec);
return diff / interval_resolution;
}
static inline struct timespec ts_add(struct timespec t1, struct timespec t2)
{
t1.tv_sec = t1.tv_sec + t2.tv_sec;
t1.tv_nsec = t1.tv_nsec + t2.tv_nsec;
while (t1.tv_nsec >= NSEC_PER_SEC) {
t1.tv_nsec -= NSEC_PER_SEC;
t1.tv_sec++;
}
return t1;
}
static int c_states_disable(void)
{
uint32_t latency = 0;
int fd;
/* Disable on all CPUs all C states. */
const char *cpu_dma_latency = "/dev/cpu_dma_latency";
fd = TEMP_FAILURE_RETRY(open(cpu_dma_latency, O_RDWR | O_CLOEXEC));
if (fd < 0) {
if (errno == EACCES) {
fprintf(stderr, "No permission to open %s\n", cpu_dma_latency);
} else if (errno == ENOENT) {
return fd;
}
err_handler(errno, "open()");
}
write(fd, &latency, sizeof(latency));
return fd;
}
static void c_states_enable(int fd)
{
/* By closing the fd, the PM settings are restored. */
if (fd >= 0)
close(fd);
}
static void open_trace_fds(void)
{
const char *tracing_on = "/sys/kernel/debug/tracing/tracing_on";
const char *trace_marker = "/sys/kernel/debug/tracing/trace_marker";
trace_fd = TEMP_FAILURE_RETRY(open(tracing_on, O_WRONLY));
if (trace_fd < 0)
err_handler(errno, "open()");
tracemark_fd = TEMP_FAILURE_RETRY(open(trace_marker, O_WRONLY));
if (tracemark_fd < 0)
err_handler(errno, "open()");
}
static void stop_tracer(uint64_t diff)
{
char buf[128];
int len;
len = snprintf(buf, 128, "Hit latency %" PRIu64, diff);
write(tracemark_fd, buf, len);
write(trace_fd, "0\n", 2);
}
static inline pid_t __gettid(void)
{
/*
* glibc wrapper available since glibc-2.30, but use our own
* implementation for compatibility with older versions.
*/
return syscall(SYS_gettid);
}
static void dump_stats(FILE *f, struct system_info *sysinfo, struct stats *s)
{
unsigned int i, j, comma;
fprintf(f, "{\n");
fprintf(f, " \"version\": 3,\n");
fprintf(f, " \"sysinfo\": {\n");
fprintf(f, " \"sysname\": \"%s\",\n", sysinfo->sysname);
fprintf(f, " \"nodename\": \"%s\",\n", sysinfo->nodename);
fprintf(f, " \"release\": \"%s\",\n", sysinfo->release);
fprintf(f, " \"version\": \"%s\",\n", sysinfo->version);
fprintf(f, " \"machine\": \"%s\",\n", sysinfo->machine);
fprintf(f, " \"cpus_online\": %d,\n", sysinfo->cpus_online);
fprintf(f, " \"resolution_in_ns\": %u\n", interval_resolution);
fprintf(f, " },\n");
fprintf(f, " \"cpu\": {\n");
for (i = 0; i < num_threads; i++) {
fprintf(f, " \"%u\": {\n", i);
fprintf(f, " \"histogram\": {");
for (j = 0, comma = 0; j < s[i].hist_size; j++) {
if (!s[i].hist[j])
continue;
fprintf(f, "%s", comma ? ",\n" : "\n");
fprintf(f, " \"%u\": %" PRIu64,j, s[i].hist[j]);
comma = 1;
}
if (comma)
fprintf(f, "\n");
fprintf(f, " },\n");
fprintf(f, " \"count\": %" PRIu64 ",\n", s[i].count);
fprintf(f, " \"min\": %" PRIu64 ",\n", s[i].min);
fprintf(f, " \"max\": %" PRIu64 ",\n", s[i].max);
fprintf(f, " \"avg\": %.2f\n",
(double)s[i].total / (double)s[i].count);
fprintf(f, " }%s\n", i == num_threads - 1 ? "" : ",");
}
fprintf(f, " }\n");
fprintf(f, "}\n");
}
static void __display_stats(struct stats *s)
{
unsigned int i;
for (i = 0; i < num_threads; i++) {
printf("T:%2u (%5lu) A:%2u C:%10" PRIu64
" Min:%10" PRIu64 " Avg:%8.2f Max:%10" PRIu64 " "
VT100_ERASE_EOL "\n",
i, (long)s[i].tid, s[i].affinity,
s[i].count,
s[i].min,
(double) s[i].total / (double) s[i].count,
s[i].max);
}
}
static void *display_stats(void *arg)
{
struct stats *s = arg;
unsigned int i;
for (i = 0; i < num_threads; i++)
printf("\n");
while (!READ_ONCE(jd_shutdown)) {
printf(VT100_CURSOR_UP, num_threads);
__display_stats(s);
fflush(stdout);
usleep(100 * 1000); /* 100 ms interval */
}
return NULL;
}
static void store_file(struct record_data *rec)
{
struct stats *s = rec->stats;
struct latency_sample sample;
struct timespec ts;
uint64_t val;
unsigned int i;
while (!READ_ONCE(jd_shutdown)) {
for (i = 0; i < num_threads; i++) {
sample.cpuid = i;
while (!ringbuffer_read(s[i].rb, &ts, &val)) {
memcpy(&sample.ts, &ts, sizeof(sample.ts));
memcpy(&sample.val, &val, sizeof(sample.val));
fwrite(&sample, sizeof(struct latency_sample), 1, rec->fd);
}
}
usleep(DEFAULT_INTERVAL);
}
}
static void store_network(struct record_data *rec)
{
struct latency_sample sp[SAMPLES_PER_PACKET];
struct addrinfo hints, *res, *tmp;
struct sockaddr *sa;
socklen_t salen;
int err, sk, len;
unsigned int i, c;
struct stats *s = rec->stats;
struct timespec ts;
uint64_t val;
bzero(&hints, sizeof(struct addrinfo));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_DGRAM;
hints.ai_protocol = IPPROTO_UDP;
err = getaddrinfo(rec->server, rec->port, &hints, &res);
if (err < 0)
err_handler(err, "getaddrinfo()");
tmp = res;
do {
sk = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
if (sk >= 0)
break;
res = res->ai_next;
} while (res);
if (sk < 0)
err_handler(ENOENT, "no server");
sa = malloc(res->ai_addrlen);
memcpy(sa, res->ai_addr, res->ai_addrlen);
salen = res->ai_addrlen;
freeaddrinfo(tmp);
err = fcntl(sk, F_SETFL, O_NONBLOCK, 1);
if (err < 0)
err_handler(errno, "fcntl");
c = 0;
while (!READ_ONCE(jd_shutdown)) {
for (i = 0; i < num_threads; i++) {
while (!ringbuffer_read(s[i].rb, &ts, &val)) {
sp[c].cpuid = i;
memcpy(&sp[c].ts, &ts, sizeof(sp[c].ts));
memcpy(&sp[c].val, &val, sizeof(sp[c].val));
if (c == SAMPLES_PER_PACKET - 1) {
len = sendto(sk, (const void *)sp, sizeof(sp), 0,
sa, salen);
if (len < 0)
perror("sendto");
c = 0;
} else
c++;
}
}
usleep(DEFAULT_INTERVAL);
}
close(sk);
}
static void *store_samples(void *arg)
{
struct record_data *rec = arg;
if (rec->fd)
store_file(rec);
else
store_network(rec);
return NULL;
}
static void *worker(void *arg)
{
struct stats *s = arg;
struct timespec now, next, interval;
sigset_t mask;
uint64_t diff;
int err;
/* Don't handle any signals */
sigfillset(&mask);
if (sigprocmask(SIG_BLOCK, &mask, NULL) < 0)
err_handler(errno, "sigprocmask()");
s->tid = __gettid();
interval.tv_sec = 0;
interval.tv_nsec = sleep_interval_us * NSEC_PER_US;
err = clock_gettime(CLOCK_MONOTONIC, &now);
if (err)
err_handler(err, "clock_gettime()");
next = now;
while (!READ_ONCE(jd_shutdown)) {
next = ts_add(next, interval);
err = clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME,
&next, NULL);
if (err)
err_handler(err, "clock_nanosleep()");
err = clock_gettime(CLOCK_MONOTONIC, &now);
if (err)
err_handler(err, "clock_gettime()");
/* Update the statistics */
diff = ts_sub(now, next);
if (diff > s->max)
s->max = diff;
if (diff < s->min)
s->min = diff;
s->count++;
s->total += diff;
if (diff < s->hist_size)
s->hist[diff]++;
if (s->rb)
ringbuffer_write(s->rb, now, diff);
if (diff > break_val) {
stop_tracer(diff);
WRITE_ONCE(jd_shutdown, 1);
}
if (max_loops > 0 && s->count >= max_loops)
break;
}
return NULL;
}
static void start_measuring(struct stats *s, struct record_data *rec)
{
struct sched_param sched;
pthread_attr_t attr;
cpu_set_t mask;
unsigned int i, t;
int err;
pthread_attr_init(&attr);
for (i = 0, t = 0; i < num_threads; i++) {
CPU_ZERO(&mask);
/*
* Skip unset cores. will not crash as long as
* num_threads <= CPU_COUNT(&affinity)
*/
while (!CPU_ISSET(t, &affinity))
t++;
CPU_SET(t, &mask);
/* Don't stay on the same core in next loop */
s[i].affinity = t++;
s[i].min = UINT64_MAX;
s[i].hist_size = NSEC_PER_SEC / interval_resolution / 1000;
s[i].hist = calloc(s[i].hist_size, sizeof(uint64_t));
if (!s[i].hist)
err_handler(errno, "calloc()");
if (rec) {
s[i].rb = ringbuffer_create(1024 * 1024);
if (!s[i].rb)
err_handler(ENOMEM, "ringbuffer_create()");
}
err = pthread_attr_setaffinity_np(&attr, sizeof(mask), &mask);
if (err)
err_handler(err, "pthread_attr_setaffinity_np()");
err = pthread_attr_setschedpolicy(&attr, SCHED_FIFO);
if (err)
err_handler(err, "pthread_attr_setschedpolicy()");
sched.sched_priority = priority;
err = pthread_attr_setschedparam(&attr, &sched);
if (err)
err_handler(err, "pthread_attr_setschedparam()");
err = pthread_attr_setinheritsched(&attr,
PTHREAD_EXPLICIT_SCHED);
if (err)
err_handler(err, "pthread_attr_setinheritsched()");
err = pthread_create(&s[i].pid, &attr, &worker, &s[i]);
if (err) {
if (err == EPERM)
fprintf(stderr, "No permission to set the "
"scheduling policy and/or priority\n");
else if (err == EINVAL)
fprintf(stderr, "Invalid settings in thread attributes. "
"Check your affinity mask\n");
err_handler(err, "pthread_create()");
}
}
pthread_attr_destroy(&attr);
}
static struct option long_options[] = {
{ "help", no_argument, 0, 'h' },
{ "verbose", no_argument, 0, 'v' },
{ "version", no_argument, 0, 0 },
{ "command", required_argument, 0, 'c' },
{ "loops", required_argument, 0, 'l' },
{ "duration", required_argument, 0, 'D' },
{ "break", required_argument, 0, 'b' },
{ "nsec", no_argument, 0, 'N' },
{ "interval", required_argument, 0, 'i' },
{ "output", required_argument, 0, 'o' },
{ "affinity", required_argument, 0, 'a' },
{ "priority", required_argument, 0, 'p' },
{ 0, },
};
static void __attribute__((noreturn)) usage(int status)
{
printf("jitterdebugger [options]\n");
printf("\n");
printf("General usage:\n");
printf(" -h, --help Print this help\n");
printf(" -v, --verbose Print live statistics\n");
printf(" --version Print version of jitterdebugger\n");
printf(" -o, --output DIR Store collected data into DIR\n");
printf(" -c, --command CMD Execute CMD (workload) in background\n");
printf("\n");
printf("Sampling:\n");
printf(" -l, --loops VALUE Max number of measurements\n");
printf(" -D, --duration TIME Specify a length for the test run.\n");
printf(" Append 'm', 'h', or 'd' to specify minutes, hours or days.\n");
printf(" -b, --break VALUE Stop if max latency exceeds VALUE.\n");
printf(" Also the tracers\n");
printf(" -N, --nsec Meassurement in nano seconds\n");
printf(" -i, --interval TIME Sleep interval for sampling threads in microseconds\n");
printf(" or nano seconds (see -N/--nsec)\n");
printf(" -n Send samples to host:port\n");
printf(" -s Store samples into --output DIR\n");
printf("\n");
printf("Threads: \n");
printf(" -a, --affinity CPUSET Core affinity specification\n");
printf(" e.g. 0,2,5-7 starts a thread on first, third and last two\n");
printf(" cores on a 8-core system.\n");
printf(" May also be set in hexadecimal with '0x' prefix\n");
printf(" -p, --priority PRI Worker thread priority. [1..98]\n");
exit(status);
}
int main(int argc, char *argv[])
{
struct sigaction sa;
unsigned int i;
int c, fd, err;
struct stats *s;
pthread_t pid, iopid;
cpu_set_t affinity_available, affinity_set;
int long_idx;
long val;
struct record_data *rec = NULL;
FILE *rfd = NULL;
struct system_info *sysinfo;
/* Command line options */
unsigned int opt_duration = 0;
char *opt_dir = NULL;
char *opt_cmd = NULL;
char *opt_net = NULL;
int opt_samples = 0;
int opt_verbose = 0;
CPU_ZERO(&affinity_set);
while (1) {
c = getopt_long(argc, argv, "c:n:sp:vD:l:b:Ni:o:a:h", long_options,
&long_idx);
if (c < 0)
break;
switch (c) {
case 0:
if (!strcmp(long_options[long_idx].name, "version")) {
printf("jitterdebugger %s\n",
JD_VERSION);
exit(0);
}
break;
case 'o':
opt_dir = optarg;
break;
case 'c':
opt_cmd = optarg;
break;
case 'n':
opt_net = optarg;
break;
case 's':
opt_samples = 1;
break;
case 'p':
val = parse_dec(optarg);
if (val < 1 || val > 98)
err_abort("Invalid value for priority. "
"Valid range is [1..98]\n");
priority = val;
break;
case 'v':
opt_verbose = 1;
break;
case 'D':
val = parse_time(optarg);
if (val < 0)
err_abort("Invalid value for duration. "
"Valid postfixes are 'd', 'h', 'm', 's'\n");
opt_duration = val;
break;
case 'l':
val = parse_dec(optarg);
if (val <= 0)
err_abort("Invalid value for loops. "
"Valid range is [1..]\n");
max_loops = val;
break;
case 'b':
val = parse_dec(optarg);
if (val <= 0)
err_abort("Invalid value for break. "
"Valid range is [1..]\n");
break_val = val;
break;
case 'N':
interval_resolution = 1;
break;
case 'i':
val = parse_dec(optarg);
if (val < 1)
err_abort("Invalid value for interval. "
"Valid range is [1..]. "
"Default: %u us.\n", sleep_interval_us);
sleep_interval_us = val;
break;
case 'h':
usage(0);
case 'a':
val = cpuset_parse(&affinity_set, optarg);
if (val < 0) {
fprintf(stderr, "Invalid value for affinity. Valid range is [0..]\n");
exit(1);
}
break;
default:
usage(1);
}
}
if (geteuid() != 0)
printf("jitterdebugger is not running with root rights.\n");
sysinfo = collect_system_info();
if (opt_dir) {
err = mkdir(opt_dir, 0777);
if (err) {
if (errno != EEXIST) {
err_handler(errno,
"Creating directory '%s' failed\n",
opt_dir);
}
warn_handler("Directory '%s' already exist: overwriting contents", opt_dir);
} else {
store_system_info(opt_dir, sysinfo);
}
}
if (opt_net || opt_samples) {
if (opt_net && opt_samples) {
fprintf(stdout, "Can't use both options -s or -n together\n");
exit(1);
}
rec = malloc(sizeof(*rec));
if (!rec)
err_handler(ENOMEM, "malloc()");
if (opt_net) {
rec->server = strtok(opt_net, " :");
rec->port = strtok(NULL, " :");
if (!rec->server || !rec->port) {
fprintf(stdout, "Invalid server name and/or port string\n");
exit(1);
}
}
if (opt_samples) {
if (!opt_dir) {
fprintf(stdout, "-o/--output is needed with -s option\n");
exit(1);
}
rec->fd = jd_fopen(opt_dir, "samples.raw", "w");
if (!rec->fd)
err_handler(errno, "Couldn't create samples.raw file");
}
}
sa.sa_flags = 0;
sa.sa_handler = sig_handler;
sigemptyset(&sa.sa_mask);
if (sigaction(SIGINT, &sa, NULL) < 0)
err_handler(errno, "sigaction()");
if (sigaction(SIGTERM, &sa, NULL) < 0)
err_handler(errno, "sigaction()");
if (sigaction(SIGALRM, &sa, NULL) < 0)
err_handler(errno, "sigaction()");
if (opt_duration > 0)
alarm(opt_duration);
if (mlockall(MCL_CURRENT|MCL_FUTURE) < 0) {
if (errno == ENOMEM || errno == EPERM)
fprintf(stderr, "Nonzero RTLIMIT_MEMLOCK soft resource "
"limit or missing process privileges "
"(CAP_IPC_LOCK)\n");
err_handler(errno, "mlockall()");
}
fd = c_states_disable();
if (break_val != UINT64_MAX)
open_trace_fds();
if (CPU_COUNT(&affinity_set)) {
/*
* The user is able to override the affinity mask with
* a set which contains more CPUs than
* sched_getaffinity() returns.
*/
affinity = affinity_set;
} else {
if (sched_getaffinity(0, sizeof(cpu_set_t), &affinity_available))
err_handler(errno, "sched_getaffinity()");
affinity = affinity_available;
}
if (opt_verbose) {
printf("affinity: ");
cpuset_fprint(stdout, &affinity);
printf("\n");
}
num_threads = CPU_COUNT(&affinity);
s = calloc(num_threads, sizeof(struct stats));
if (!s)
err_handler(errno, "calloc()");
err = start_workload(opt_cmd);
if (err < 0)
err_handler(errno, "starting workload failed");
start_measuring(s, rec);
if (opt_net || opt_samples) {
rec->stats = s;
err = pthread_create(&iopid, NULL, store_samples, rec);
if (err)
err_handler(err, "pthread_create()");
}
if (opt_verbose) {
err = pthread_create(&pid, NULL, display_stats, s);
if (err)
err_handler(err, "pthread_create()");
}
for (i = 0; i < num_threads; i++) {
err = pthread_join(s[i].pid, NULL);
if (err)
err_handler(err, "pthread_join()");
}
WRITE_ONCE(jd_shutdown, 1);
stop_workload();
if (rec) {
err = pthread_join(iopid, NULL);
if (err)
err_handler(err, "pthread_join()");
if (rec->fd)
fclose(rec->fd);
free(rec);
}
if (opt_verbose) {
err = pthread_join(pid, NULL);
if (err)
err_handler(err, "pthread_join()");
} else {
printf("\n");
__display_stats(s);
}
printf("\n");
if (opt_dir) {
rfd = jd_fopen(opt_dir, "results.json", "w");
if (rfd) {
dump_stats(rfd, sysinfo, s);
fclose(rfd);
} else {
warn_handler("Couldn't create results.json");
}
free_system_info(sysinfo);
}
if (opt_verbose && break_val != UINT_MAX) {
for (i = 0; i < num_threads; i++) {
if (s[i].max > break_val) {
const char *unit = "us";
if (interval_resolution == 1)
unit = "ns";
printf("Thread %lu on CPU %u hit %" PRIu64 " %s latency\n",
(long)s[i].tid, i, s[i].max, unit);
}
}
}
for (i = 0; i < num_threads; i++) {
free(s[i].hist);
if (s[i].rb)
ringbuffer_free(s[i].rb);
}
free(s);
if (tracemark_fd > 0)
close(tracemark_fd);
if (trace_fd > 0)
close(trace_fd);
c_states_enable(fd);
return 0;
}