forked from avsm/ipc-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mempipe_lat.c
114 lines (95 loc) · 2.82 KB
/
mempipe_lat.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
/*
Measure latency of IPC using tcp sockets
Copyright (c) 2011 Steven Smith <[email protected]>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
/* Ultimate in simple IPC protocols: establish a shared memory
segment and then send a ping by setting flags in it, with the other
end spinning reading those flags.
Note that this is a straight up latency test: no actual data is
transferred. */
#include <sys/stat.h>
#include <sys/time.h>
#include <err.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdlib.h>
#include <unistd.h>
#include "test.h"
#include "xutil.h"
#define PAGE_SIZE 4096
struct shared_page {
int flag1;
int pad[127]; /* Make sure the two flags are in different cache lines
for any conceivable size fo cache line. */
int flag2;
};
static void
init_test(test_data *td)
{
td->data = establish_shm_segment(1, td->numa_node);
}
static void
child_ping(test_data *td)
{
volatile struct shared_page *sp = td->data;
sp->flag1 = 1;
while (!sp->flag2)
;
sp->flag1 = 0;
while (sp->flag2)
;
}
static void child_finish(test_data *td) {
volatile struct shared_page *sp = td->data;
sp->flag1 = 1;
}
static void
parent_init(test_data *td)
{
volatile struct shared_page *sp = td->data;
/* Wait for the child to get ready before starting the test. */
while (!sp->flag1)
;
}
static void parent_ping(test_data* td) {
volatile struct shared_page *sp = td->data;
sp->flag2 = 1;
while (sp->flag1)
;
sp->flag2 = 0;
while (!sp->flag1)
;
}
int
main(int argc, char *argv[])
{
test_t t = {
.name = "mempipe_lat",
.is_latency_test = 1,
.init_test = init_test,
.init_parent = parent_init,
.parent_ping = parent_ping,
.child_ping = child_ping,
.finish_child = child_finish
};
run_test(argc, argv, &t);
return 0;
}