forked from cirosantilli/linux-kernel-module-cheat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm5ops.c
42 lines (38 loc) · 956 Bytes
/
m5ops.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
/* https://cirosantilli.com/linux-kernel-module-cheat#m5ops-instructions */
#include <stdlib.h>
#define LKMC_M5OPS_ENABLE 1
#include <lkmc/m5ops.h>
int main(int argc, char **argv) {
char action;
unsigned long long loops;
if (argc > 1) {
action = argv[1][0];
} else {
action = 'e';
}
if (argc > 2) {
loops = strtoull(argv[2], NULL, 0);
} else {
loops = 1;
}
for (unsigned long long i = 0; i < loops; i++) {
switch (action) {
case 'c':
LKMC_M5OPS_CHECKPOINT;
break;
case 'd':
LKMC_M5OPS_DUMPSTATS;
break;
case 'e':
LKMC_M5OPS_EXIT;
break;
case 'f':
LKMC_M5OPS_FAIL_1;
break;
case 'r':
LKMC_M5OPS_RESETSTATS;
break;
}
}
return EXIT_SUCCESS;
}