aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/litmus/cache_proc.h11
-rw-r--r--include/litmus/unistd_32.h3
-rw-r--r--include/litmus/unistd_64.h4
3 files changed, 16 insertions, 2 deletions
diff --git a/include/litmus/cache_proc.h b/include/litmus/cache_proc.h
new file mode 100644
index 000000000000..586224118435
--- /dev/null
+++ b/include/litmus/cache_proc.h
@@ -0,0 +1,11 @@
1#ifndef LITMUS_CACHE_PROC_H
2#define LITMUS_CACHE_PROC_H
3
4#ifdef __KERNEL__
5
6void litmus_setup_lockdown(void __iomem*, u32);
7
8#endif
9
10#endif
11
diff --git a/include/litmus/unistd_32.h b/include/litmus/unistd_32.h
index 570b1f54d534..43527ee2f6b6 100644
--- a/include/litmus/unistd_32.h
+++ b/include/litmus/unistd_32.h
@@ -18,5 +18,6 @@
18#define __NR_release_ts __LSC(10) 18#define __NR_release_ts __LSC(10)
19#define __NR_null_call __LSC(11) 19#define __NR_null_call __LSC(11)
20#define __NR_get_current_budget __LSC(12) 20#define __NR_get_current_budget __LSC(12)
21#define __NR_test_call __LSC(13)
21 22
22#define NR_litmus_syscalls 13 23#define NR_litmus_syscalls 14
diff --git a/include/litmus/unistd_64.h b/include/litmus/unistd_64.h
index 3096bf2f2798..1a741bd3e5da 100644
--- a/include/litmus/unistd_64.h
+++ b/include/litmus/unistd_64.h
@@ -31,5 +31,7 @@ __SYSCALL(__NR_release_ts, sys_release_ts)
31__SYSCALL(__NR_null_call, sys_null_call) 31__SYSCALL(__NR_null_call, sys_null_call)
32#define __NR_get_current_budget __LSC(12) 32#define __NR_get_current_budget __LSC(12)
33__SYSCALL(____NR_get_current_budget, sys_get_current_budget) 33__SYSCALL(____NR_get_current_budget, sys_get_current_budget)
34#define __NR_test_call __LSC(13)
35__SYSCALL(__NR_test_call, sys_test_call)
34 36
35#define NR_litmus_syscalls 13 37#define NR_litmus_syscalls 14