-
Notifications
You must be signed in to change notification settings - Fork 0
/
optgroup.c
166 lines (156 loc) · 2.5 KB
/
optgroup.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
#include <stdio.h>
#include <inttypes.h>
#include "optgroup.h"
/*
* Option grouping
*/
static const struct opt_group fio_opt_groups[] = {
{
.name = "General",
.mask = FIO_OPT_C_GENERAL,
},
{
.name = "I/O",
.mask = FIO_OPT_C_IO,
},
{
.name = "File",
.mask = FIO_OPT_C_FILE,
},
{
.name = "Statistics",
.mask = FIO_OPT_C_STAT,
},
{
.name = "Logging",
.mask = FIO_OPT_C_LOG,
},
{
.name = "Profiles",
.mask = FIO_OPT_C_PROFILE,
},
{
.name = NULL,
},
};
static const struct opt_group fio_opt_cat_groups[] = {
{
.name = "Latency profiling",
.mask = FIO_OPT_G_LATPROF,
},
{
.name = "Rate",
.mask = FIO_OPT_G_RATE,
},
{
.name = "Zone",
.mask = FIO_OPT_G_ZONE,
},
{
.name = "Read/write mix",
.mask = FIO_OPT_G_RWMIX,
},
{
.name = "Verify",
.mask = FIO_OPT_G_VERIFY,
},
{
.name = "Trim",
.mask = FIO_OPT_G_TRIM,
},
{
.name = "I/O Logging",
.mask = FIO_OPT_G_IOLOG,
},
{
.name = "I/O Depth",
.mask = FIO_OPT_G_IO_DEPTH,
},
{
.name = "I/O Flow",
.mask = FIO_OPT_G_IO_FLOW,
},
{
.name = "Description",
.mask = FIO_OPT_G_DESC,
},
{
.name = "Filename",
.mask = FIO_OPT_G_FILENAME,
},
{
.name = "General I/O",
.mask = FIO_OPT_G_IO_BASIC,
},
{
.name = "Cgroups",
.mask = FIO_OPT_G_CGROUP,
},
{
.name = "Runtime",
.mask = FIO_OPT_G_RUNTIME,
},
{
.name = "Process",
.mask = FIO_OPT_G_PROCESS,
},
{
.name = "Job credentials / priority",
.mask = FIO_OPT_G_CRED,
},
{
.name = "Clock settings",
.mask = FIO_OPT_G_CLOCK,
},
{
.name = "I/O Type",
.mask = FIO_OPT_G_IO_TYPE,
},
{
.name = "I/O Thinktime",
.mask = FIO_OPT_G_THINKTIME,
},
{
.name = "Randomizations",
.mask = FIO_OPT_G_RANDOM,
},
{
.name = "I/O buffers",
.mask = FIO_OPT_G_IO_BUF,
},
{
.name = "Tiobench profile",
.mask = FIO_OPT_G_TIOBENCH,
},
{
.name = "MTD",
.mask = FIO_OPT_G_MTD,
},
{
.name = NULL,
}
};
static const struct opt_group *group_from_mask(const struct opt_group *ogs,
uint64_t *mask,
uint64_t inv_mask)
{
int i;
if (*mask == inv_mask || !*mask)
return NULL;
for (i = 0; ogs[i].name; i++) {
const struct opt_group *og = &ogs[i];
if (*mask & og->mask) {
*mask &= ~(og->mask);
return og;
}
}
return NULL;
}
const struct opt_group *opt_group_from_mask(uint64_t *mask)
{
return group_from_mask(fio_opt_groups, mask, FIO_OPT_C_INVALID);
}
const struct opt_group *opt_group_cat_from_mask(uint64_t *mask)
{
return group_from_mask(fio_opt_cat_groups, mask, FIO_OPT_G_INVALID);
}