diff options
author | Jeremy Erickson <jerickso@cs.unc.edu> | 2013-01-28 12:44:17 -0500 |
---|---|---|
committer | Jeremy Erickson <jerickso@cs.unc.edu> | 2013-01-28 12:44:17 -0500 |
commit | 28cc6b58a273c82135e467d6897033289ef9fcd3 (patch) | |
tree | 2e4032ba4a76b3872b36e4b42f4794a7e8e90eef | |
parent | 1583cb3ffb768cd93c1104ccc12562dd8eed7ba2 (diff) | |
parent | b53c479a0f44b8990ce106622412a3bf54809944 (diff) |
Update to 2012.2
-rw-r--r-- | arch/x86/include/asm/feather_trace_32.h | 96 | ||||
-rw-r--r-- | arch/x86/include/asm/feather_trace_64.h | 101 | ||||
-rw-r--r-- | include/litmus/binheap.h | 206 | ||||
-rw-r--r-- | include/litmus/budget.h | 27 | ||||
-rw-r--r-- | include/litmus/fdso.h | 10 | ||||
-rw-r--r-- | include/litmus/fp_common.h | 105 | ||||
-rw-r--r-- | include/litmus/litmus.h | 34 | ||||
-rw-r--r-- | include/litmus/rt_param.h | 22 | ||||
-rw-r--r-- | include/litmus/sched_trace.h | 105 | ||||
-rw-r--r-- | include/litmus/wait.h | 57 | ||||
-rw-r--r-- | include/trace/events/litmus.h | 231 | ||||
-rw-r--r-- | kernel/sched.c | 6 | ||||
-rw-r--r-- | litmus/Kconfig | 18 | ||||
-rw-r--r-- | litmus/Makefile | 5 | ||||
-rw-r--r-- | litmus/binheap.c | 388 | ||||
-rw-r--r-- | litmus/budget.c | 2 | ||||
-rw-r--r-- | litmus/ctrldev.c | 45 | ||||
-rw-r--r-- | litmus/fdso.c | 4 | ||||
-rw-r--r-- | litmus/fp_common.c | 119 | ||||
-rw-r--r-- | litmus/jobs.c | 18 | ||||
-rw-r--r-- | litmus/litmus.c | 27 | ||||
-rw-r--r-- | litmus/locking.c | 32 | ||||
-rw-r--r-- | litmus/rt_domain.c | 8 | ||||
-rw-r--r-- | litmus/sched_cedf.c | 9 | ||||
-rw-r--r-- | litmus/sched_gsn_edf.c | 14 | ||||
-rw-r--r-- | litmus/sched_pfair.c | 7 | ||||
-rw-r--r-- | litmus/sched_pfp.c | 1685 | ||||
-rw-r--r-- | litmus/sched_psn_edf.c | 1 |
28 files changed, 3224 insertions, 158 deletions
diff --git a/arch/x86/include/asm/feather_trace_32.h b/arch/x86/include/asm/feather_trace_32.h index 70202f90f169..75e81a9f9382 100644 --- a/arch/x86/include/asm/feather_trace_32.h +++ b/arch/x86/include/asm/feather_trace_32.h | |||
@@ -1,12 +1,45 @@ | |||
1 | /* Copyright (c) 2007-2012 Björn Brandenburg, <bbb@mpi-sws.org> | ||
2 | * | ||
3 | * Permission is hereby granted, free of charge, to any person obtaining | ||
4 | * a copy of this software and associated documentation files (the | ||
5 | * "Software"), to deal in the Software without restriction, including | ||
6 | * without limitation the rights to use, copy, modify, merge, publish, | ||
7 | * distribute, sublicense, and/or sell copies of the Software, and to | ||
8 | * permit persons to whom the Software is furnished to do so, subject to | ||
9 | * the following conditions: | ||
10 | * | ||
11 | * The above copyright notice and this permission notice shall be | ||
12 | * included in all copies or substantial portions of the Software. | ||
13 | * | ||
14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
15 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
16 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
17 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | ||
18 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | ||
19 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
20 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
21 | * SOFTWARE. | ||
22 | */ | ||
23 | |||
1 | /* Do not directly include this file. Include feather_trace.h instead */ | 24 | /* Do not directly include this file. Include feather_trace.h instead */ |
2 | 25 | ||
3 | #define feather_callback __attribute__((regparm(0))) | 26 | #define feather_callback __attribute__((regparm(3))) __attribute__((used)) |
4 | 27 | ||
5 | /* | 28 | /* |
6 | * make the compiler reload any register that is not saved in | 29 | * Make the compiler reload any register that is not saved in a cdecl function |
7 | * a cdecl function call | 30 | * call (minus the registers that we explicitly clobber as output registers). |
8 | */ | 31 | */ |
9 | #define CLOBBER_LIST "memory", "cc", "eax", "ecx", "edx" | 32 | #define __FT_CLOBBER_LIST0 "memory", "cc", "eax", "edx", "ecx" |
33 | #define __FT_CLOBBER_LIST1 "memory", "cc", "eax", "ecx" | ||
34 | #define __FT_CLOBBER_LIST2 "memory", "cc", "eax" | ||
35 | #define __FT_CLOBBER_LIST3 "memory", "cc", "eax" | ||
36 | |||
37 | #define __FT_TMP1(x) "=d" (x) | ||
38 | #define __FT_ARG1(x) "0" ((long) (x)) | ||
39 | #define __FT_TMP2(x) "=c" (x) | ||
40 | #define __FT_ARG2(x) "1" ((long) (x)) | ||
41 | |||
42 | #define __FT_ARG3(x) "r" ((long) (x)) | ||
10 | 43 | ||
11 | #define ft_event(id, callback) \ | 44 | #define ft_event(id, callback) \ |
12 | __asm__ __volatile__( \ | 45 | __asm__ __volatile__( \ |
@@ -16,64 +49,67 @@ | |||
16 | ".long " #id ", 0, 1b, 2f \n\t" \ | 49 | ".long " #id ", 0, 1b, 2f \n\t" \ |
17 | ".previous \n\t" \ | 50 | ".previous \n\t" \ |
18 | "2: \n\t" \ | 51 | "2: \n\t" \ |
19 | : : : CLOBBER_LIST) | 52 | : : : __FT_CLOBBER_LIST0) |
20 | 53 | ||
21 | #define ft_event0(id, callback) \ | 54 | #define ft_event0(id, callback) \ |
22 | __asm__ __volatile__( \ | 55 | __asm__ __volatile__( \ |
23 | "1: jmp 2f \n\t" \ | 56 | "1: jmp 2f \n\t" \ |
24 | " subl $4, %%esp \n\t" \ | 57 | " movl $" #id ", %%eax \n\t" \ |
25 | " movl $" #id ", (%%esp) \n\t" \ | ||
26 | " call " #callback " \n\t" \ | 58 | " call " #callback " \n\t" \ |
27 | " addl $4, %%esp \n\t" \ | ||
28 | ".section __event_table, \"aw\" \n\t" \ | 59 | ".section __event_table, \"aw\" \n\t" \ |
29 | ".long " #id ", 0, 1b, 2f \n\t" \ | 60 | ".long " #id ", 0, 1b, 2f \n\t" \ |
30 | ".previous \n\t" \ | 61 | ".previous \n\t" \ |
31 | "2: \n\t" \ | 62 | "2: \n\t" \ |
32 | : : : CLOBBER_LIST) | 63 | : : : __FT_CLOBBER_LIST0) |
33 | 64 | ||
34 | #define ft_event1(id, callback, param) \ | 65 | #define ft_event1(id, callback, param) \ |
66 | do { \ | ||
67 | long __ft_tmp1; \ | ||
35 | __asm__ __volatile__( \ | 68 | __asm__ __volatile__( \ |
36 | "1: jmp 2f \n\t" \ | 69 | "1: jmp 2f \n\t" \ |
37 | " subl $8, %%esp \n\t" \ | 70 | " movl $" #id ", %%eax \n\t" \ |
38 | " movl %0, 4(%%esp) \n\t" \ | ||
39 | " movl $" #id ", (%%esp) \n\t" \ | ||
40 | " call " #callback " \n\t" \ | 71 | " call " #callback " \n\t" \ |
41 | " addl $8, %%esp \n\t" \ | ||
42 | ".section __event_table, \"aw\" \n\t" \ | 72 | ".section __event_table, \"aw\" \n\t" \ |
43 | ".long " #id ", 0, 1b, 2f \n\t" \ | 73 | ".long " #id ", 0, 1b, 2f \n\t" \ |
44 | ".previous \n\t" \ | 74 | ".previous \n\t" \ |
45 | "2: \n\t" \ | 75 | "2: \n\t" \ |
46 | : : "r" (param) : CLOBBER_LIST) | 76 | : __FT_TMP1(__ft_tmp1) \ |
77 | : __FT_ARG1(param) \ | ||
78 | : __FT_CLOBBER_LIST1); \ | ||
79 | } while (0); | ||
47 | 80 | ||
48 | #define ft_event2(id, callback, param, param2) \ | 81 | #define ft_event2(id, callback, param, param2) \ |
82 | do { \ | ||
83 | long __ft_tmp1, __ft_tmp2; \ | ||
49 | __asm__ __volatile__( \ | 84 | __asm__ __volatile__( \ |
50 | "1: jmp 2f \n\t" \ | 85 | "1: jmp 2f \n\t" \ |
51 | " subl $12, %%esp \n\t" \ | 86 | " movl $" #id ", %%eax \n\t" \ |
52 | " movl %1, 8(%%esp) \n\t" \ | ||
53 | " movl %0, 4(%%esp) \n\t" \ | ||
54 | " movl $" #id ", (%%esp) \n\t" \ | ||
55 | " call " #callback " \n\t" \ | 87 | " call " #callback " \n\t" \ |
56 | " addl $12, %%esp \n\t" \ | ||
57 | ".section __event_table, \"aw\" \n\t" \ | 88 | ".section __event_table, \"aw\" \n\t" \ |
58 | ".long " #id ", 0, 1b, 2f \n\t" \ | 89 | ".long " #id ", 0, 1b, 2f \n\t" \ |
59 | ".previous \n\t" \ | 90 | ".previous \n\t" \ |
60 | "2: \n\t" \ | 91 | "2: \n\t" \ |
61 | : : "r" (param), "r" (param2) : CLOBBER_LIST) | 92 | : __FT_TMP1(__ft_tmp1), __FT_TMP2(__ft_tmp2) \ |
93 | : __FT_ARG1(param), __FT_ARG2(param2) \ | ||
94 | : __FT_CLOBBER_LIST2); \ | ||
95 | } while (0); | ||
62 | 96 | ||
63 | 97 | ||
64 | #define ft_event3(id, callback, p, p2, p3) \ | 98 | #define ft_event3(id, callback, param, param2, param3) \ |
99 | do { \ | ||
100 | long __ft_tmp1, __ft_tmp2; \ | ||
65 | __asm__ __volatile__( \ | 101 | __asm__ __volatile__( \ |
66 | "1: jmp 2f \n\t" \ | 102 | "1: jmp 2f \n\t" \ |
67 | " subl $16, %%esp \n\t" \ | 103 | " subl $4, %%esp \n\t" \ |
68 | " movl %2, 12(%%esp) \n\t" \ | 104 | " movl $" #id ", %%eax \n\t" \ |
69 | " movl %1, 8(%%esp) \n\t" \ | 105 | " movl %2, (%%esp) \n\t" \ |
70 | " movl %0, 4(%%esp) \n\t" \ | ||
71 | " movl $" #id ", (%%esp) \n\t" \ | ||
72 | " call " #callback " \n\t" \ | 106 | " call " #callback " \n\t" \ |
73 | " addl $16, %%esp \n\t" \ | 107 | " addl $4, %%esp \n\t" \ |
74 | ".section __event_table, \"aw\" \n\t" \ | 108 | ".section __event_table, \"aw\" \n\t" \ |
75 | ".long " #id ", 0, 1b, 2f \n\t" \ | 109 | ".long " #id ", 0, 1b, 2f \n\t" \ |
76 | ".previous \n\t" \ | 110 | ".previous \n\t" \ |
77 | "2: \n\t" \ | 111 | "2: \n\t" \ |
78 | : : "r" (p), "r" (p2), "r" (p3) : CLOBBER_LIST) | 112 | : __FT_TMP1(__ft_tmp1), __FT_TMP2(__ft_tmp2) \ |
79 | 113 | : __FT_ARG1(param), __FT_ARG2(param2), __FT_ARG3(param3) \ | |
114 | : __FT_CLOBBER_LIST3); \ | ||
115 | } while (0); | ||
diff --git a/arch/x86/include/asm/feather_trace_64.h b/arch/x86/include/asm/feather_trace_64.h index 54ac2aeb3a28..5ce49e2eebba 100644 --- a/arch/x86/include/asm/feather_trace_64.h +++ b/arch/x86/include/asm/feather_trace_64.h | |||
@@ -1,67 +1,124 @@ | |||
1 | /* Copyright (c) 2010 Andrea Bastoni, <bastoni@cs.unc.edu> | ||
2 | * Copyright (c) 2012 Björn Brandenburg, <bbb@mpi-sws.org> | ||
3 | * | ||
4 | * Permission is hereby granted, free of charge, to any person obtaining | ||
5 | * a copy of this software and associated documentation files (the | ||
6 | * "Software"), to deal in the Software without restriction, including | ||
7 | * without limitation the rights to use, copy, modify, merge, publish, | ||
8 | * distribute, sublicense, and/or sell copies of the Software, and to | ||
9 | * permit persons to whom the Software is furnished to do so, subject to | ||
10 | * the following conditions: | ||
11 | * | ||
12 | * The above copyright notice and this permission notice shall be | ||
13 | * included in all copies or substantial portions of the Software. | ||
14 | * | ||
15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
16 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
17 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
18 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | ||
19 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | ||
20 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
21 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
22 | * SOFTWARE. | ||
23 | */ | ||
24 | |||
1 | /* Do not directly include this file. Include feather_trace.h instead */ | 25 | /* Do not directly include this file. Include feather_trace.h instead */ |
2 | 26 | ||
3 | /* regparm is the default on x86_64 */ | 27 | /* regparm is the default on x86_64 */ |
4 | #define feather_callback | 28 | #define feather_callback __attribute__((used)) |
5 | 29 | ||
6 | # define _EVENT_TABLE(id,from,to) \ | 30 | #define __FT_EVENT_TABLE(id,from,to) \ |
7 | ".section __event_table, \"aw\"\n\t" \ | 31 | ".section __event_table, \"aw\"\n\t" \ |
8 | ".balign 8\n\t" \ | 32 | ".balign 8\n\t" \ |
9 | ".quad " #id ", 0, " #from ", " #to " \n\t" \ | 33 | ".quad " #id ", 0, " #from ", " #to " \n\t" \ |
10 | ".previous \n\t" | 34 | ".previous \n\t" |
11 | 35 | ||
12 | /* | 36 | /* |
13 | * x86_64 callee only owns rbp, rbx, r12 -> r15 | 37 | * x86_64 caller only owns rbp, rbx, r12-r15; |
14 | * the called can freely modify the others | 38 | * the callee can freely modify the others. |
15 | */ | 39 | */ |
16 | #define CLOBBER_LIST "memory", "cc", "rdi", "rsi", "rdx", "rcx", \ | 40 | #define __FT_CLOBBER_LIST0 "memory", "cc", "rdi", "rsi", "rdx", "rcx", \ |
41 | "r8", "r9", "r10", "r11", "rax" | ||
42 | |||
43 | #define __FT_CLOBBER_LIST1 "memory", "cc", "rdi", "rdx", "rcx", \ | ||
44 | "r8", "r9", "r10", "r11", "rax" | ||
45 | |||
46 | #define __FT_CLOBBER_LIST2 "memory", "cc", "rdi", "rcx", \ | ||
17 | "r8", "r9", "r10", "r11", "rax" | 47 | "r8", "r9", "r10", "r11", "rax" |
18 | 48 | ||
49 | #define __FT_CLOBBER_LIST3 "memory", "cc", "rdi", \ | ||
50 | "r8", "r9", "r10", "r11", "rax" | ||
51 | |||
52 | /* The registers RDI, RSI, RDX, RCX, R8 and R9 are used for integer and pointer | ||
53 | * arguments. */ | ||
54 | |||
55 | /* RSI */ | ||
56 | #define __FT_TMP1(x) "=S" (x) | ||
57 | #define __FT_ARG1(x) "0" ((long) (x)) | ||
58 | |||
59 | /* RDX */ | ||
60 | #define __FT_TMP2(x) "=d" (x) | ||
61 | #define __FT_ARG2(x) "1" ((long) (x)) | ||
62 | |||
63 | /* RCX */ | ||
64 | #define __FT_TMP3(x) "=c" (x) | ||
65 | #define __FT_ARG3(x) "2" ((long) (x)) | ||
66 | |||
19 | #define ft_event(id, callback) \ | 67 | #define ft_event(id, callback) \ |
20 | __asm__ __volatile__( \ | 68 | __asm__ __volatile__( \ |
21 | "1: jmp 2f \n\t" \ | 69 | "1: jmp 2f \n\t" \ |
22 | " call " #callback " \n\t" \ | 70 | " call " #callback " \n\t" \ |
23 | _EVENT_TABLE(id,1b,2f) \ | 71 | __FT_EVENT_TABLE(id,1b,2f) \ |
24 | "2: \n\t" \ | 72 | "2: \n\t" \ |
25 | : : : CLOBBER_LIST) | 73 | : : : __FT_CLOBBER_LIST0) |
26 | 74 | ||
27 | #define ft_event0(id, callback) \ | 75 | #define ft_event0(id, callback) \ |
28 | __asm__ __volatile__( \ | 76 | __asm__ __volatile__( \ |
29 | "1: jmp 2f \n\t" \ | 77 | "1: jmp 2f \n\t" \ |
30 | " movq $" #id ", %%rdi \n\t" \ | 78 | " movq $" #id ", %%rdi \n\t" \ |
31 | " call " #callback " \n\t" \ | 79 | " call " #callback " \n\t" \ |
32 | _EVENT_TABLE(id,1b,2f) \ | 80 | __FT_EVENT_TABLE(id,1b,2f) \ |
33 | "2: \n\t" \ | 81 | "2: \n\t" \ |
34 | : : : CLOBBER_LIST) | 82 | : : : __FT_CLOBBER_LIST0) |
35 | 83 | ||
36 | #define ft_event1(id, callback, param) \ | 84 | #define ft_event1(id, callback, param) \ |
85 | do { \ | ||
86 | long __ft_tmp1; \ | ||
37 | __asm__ __volatile__( \ | 87 | __asm__ __volatile__( \ |
38 | "1: jmp 2f \n\t" \ | 88 | "1: jmp 2f \n\t" \ |
39 | " movq %0, %%rsi \n\t" \ | ||
40 | " movq $" #id ", %%rdi \n\t" \ | 89 | " movq $" #id ", %%rdi \n\t" \ |
41 | " call " #callback " \n\t" \ | 90 | " call " #callback " \n\t" \ |
42 | _EVENT_TABLE(id,1b,2f) \ | 91 | __FT_EVENT_TABLE(id,1b,2f) \ |
43 | "2: \n\t" \ | 92 | "2: \n\t" \ |
44 | : : "r" (param) : CLOBBER_LIST) | 93 | : __FT_TMP1(__ft_tmp1) \ |
94 | : __FT_ARG1(param) \ | ||
95 | : __FT_CLOBBER_LIST1); \ | ||
96 | } while (0); | ||
45 | 97 | ||
46 | #define ft_event2(id, callback, param, param2) \ | 98 | #define ft_event2(id, callback, param, param2) \ |
99 | do { \ | ||
100 | long __ft_tmp1, __ft_tmp2; \ | ||
47 | __asm__ __volatile__( \ | 101 | __asm__ __volatile__( \ |
48 | "1: jmp 2f \n\t" \ | 102 | "1: jmp 2f \n\t" \ |
49 | " movq %1, %%rdx \n\t" \ | ||
50 | " movq %0, %%rsi \n\t" \ | ||
51 | " movq $" #id ", %%rdi \n\t" \ | 103 | " movq $" #id ", %%rdi \n\t" \ |
52 | " call " #callback " \n\t" \ | 104 | " call " #callback " \n\t" \ |
53 | _EVENT_TABLE(id,1b,2f) \ | 105 | __FT_EVENT_TABLE(id,1b,2f) \ |
54 | "2: \n\t" \ | 106 | "2: \n\t" \ |
55 | : : "r" (param), "r" (param2) : CLOBBER_LIST) | 107 | : __FT_TMP1(__ft_tmp1), __FT_TMP2(__ft_tmp2) \ |
108 | : __FT_ARG1(param), __FT_ARG2(param2) \ | ||
109 | : __FT_CLOBBER_LIST2); \ | ||
110 | } while (0); | ||
56 | 111 | ||
57 | #define ft_event3(id, callback, p, p2, p3) \ | 112 | #define ft_event3(id, callback, param, param2, param3) \ |
113 | do { \ | ||
114 | long __ft_tmp1, __ft_tmp2, __ft_tmp3; \ | ||
58 | __asm__ __volatile__( \ | 115 | __asm__ __volatile__( \ |
59 | "1: jmp 2f \n\t" \ | 116 | "1: jmp 2f \n\t" \ |
60 | " movq %2, %%rcx \n\t" \ | ||
61 | " movq %1, %%rdx \n\t" \ | ||
62 | " movq %0, %%rsi \n\t" \ | ||
63 | " movq $" #id ", %%rdi \n\t" \ | 117 | " movq $" #id ", %%rdi \n\t" \ |
64 | " call " #callback " \n\t" \ | 118 | " call " #callback " \n\t" \ |
65 | _EVENT_TABLE(id,1b,2f) \ | 119 | __FT_EVENT_TABLE(id,1b,2f) \ |
66 | "2: \n\t" \ | 120 | "2: \n\t" \ |
67 | : : "r" (p), "r" (p2), "r" (p3) : CLOBBER_LIST) | 121 | : __FT_TMP1(__ft_tmp1), __FT_TMP2(__ft_tmp2), __FT_TMP3(__ft_tmp3) \ |
122 | : __FT_ARG1(param), __FT_ARG2(param2), __FT_ARG3(param3) \ | ||
123 | : __FT_CLOBBER_LIST3); \ | ||
124 | } while (0); | ||
diff --git a/include/litmus/binheap.h b/include/litmus/binheap.h new file mode 100644 index 000000000000..901a30a3e296 --- /dev/null +++ b/include/litmus/binheap.h | |||
@@ -0,0 +1,206 @@ | |||
1 | #ifndef LITMUS_BINARY_HEAP_H | ||
2 | #define LITMUS_BINARY_HEAP_H | ||
3 | |||
4 | #include <linux/kernel.h> | ||
5 | |||
6 | /** | ||
7 | * Simple binary heap with add, arbitrary delete, delete_root, and top | ||
8 | * operations. | ||
9 | * | ||
10 | * Style meant to conform with list.h. | ||
11 | * | ||
12 | * Motivation: Linux's prio_heap.h is of fixed size. Litmus's binomial | ||
13 | * heap may be overkill (and perhaps not general enough) for some applications. | ||
14 | * | ||
15 | * Note: In order to make node swaps fast, a node inserted with a data pointer | ||
16 | * may not always hold said data pointer. This is similar to the binomial heap | ||
17 | * implementation. This does make node deletion tricky since we have to | ||
18 | * (1) locate the node that holds the data pointer to delete, and (2) the | ||
19 | * node that was originally inserted with said data pointer. These have to be | ||
20 | * coalesced into a single node before removal (see usage of | ||
21 | * __binheap_safe_swap()). We have to track node references to accomplish this. | ||
22 | */ | ||
23 | |||
24 | struct binheap_node { | ||
25 | void *data; | ||
26 | struct binheap_node *parent; | ||
27 | struct binheap_node *left; | ||
28 | struct binheap_node *right; | ||
29 | |||
30 | /* pointer to binheap_node that holds *data for which this binheap_node | ||
31 | * was originally inserted. (*data "owns" this node) | ||
32 | */ | ||
33 | struct binheap_node *ref; | ||
34 | struct binheap_node **ref_ptr; | ||
35 | }; | ||
36 | |||
37 | /** | ||
38 | * Signature of compator function. Assumed 'less-than' (min-heap). | ||
39 | * Pass in 'greater-than' for max-heap. | ||
40 | * | ||
41 | * TODO: Consider macro-based implementation that allows comparator to be | ||
42 | * inlined (similar to Linux red/black tree) for greater efficiency. | ||
43 | */ | ||
44 | typedef int (*binheap_order_t)(struct binheap_node *a, | ||
45 | struct binheap_node *b); | ||
46 | |||
47 | |||
48 | struct binheap { | ||
49 | struct binheap_node *root; | ||
50 | |||
51 | /* pointer to node to take next inserted child */ | ||
52 | struct binheap_node *next; | ||
53 | |||
54 | /* pointer to last node in complete binary tree */ | ||
55 | struct binheap_node *last; | ||
56 | |||
57 | /* comparator function pointer */ | ||
58 | binheap_order_t compare; | ||
59 | }; | ||
60 | |||
61 | |||
62 | /* Initialized heap nodes not in a heap have parent | ||
63 | * set to BINHEAP_POISON. | ||
64 | */ | ||
65 | #define BINHEAP_POISON ((void*)(0xdeadbeef)) | ||
66 | |||
67 | |||
68 | /** | ||
69 | * binheap_entry - get the struct for this heap node. | ||
70 | * Only valid when called upon heap nodes other than the root handle. | ||
71 | * @ptr: the heap node. | ||
72 | * @type: the type of struct pointed to by binheap_node::data. | ||
73 | * @member: unused. | ||
74 | */ | ||
75 | #define binheap_entry(ptr, type, member) \ | ||
76 | ((type *)((ptr)->data)) | ||
77 | |||
78 | /** | ||
79 | * binheap_node_container - get the struct that contains this node. | ||
80 | * Only valid when called upon heap nodes other than the root handle. | ||
81 | * @ptr: the heap node. | ||
82 | * @type: the type of struct the node is embedded in. | ||
83 | * @member: the name of the binheap_struct within the (type) struct. | ||
84 | */ | ||
85 | #define binheap_node_container(ptr, type, member) \ | ||
86 | container_of((ptr), type, member) | ||
87 | |||
88 | /** | ||
89 | * binheap_top_entry - get the struct for the node at the top of the heap. | ||
90 | * Only valid when called upon the heap handle node. | ||
91 | * @ptr: the special heap-handle node. | ||
92 | * @type: the type of the struct the head is embedded in. | ||
93 | * @member: the name of the binheap_struct within the (type) struct. | ||
94 | */ | ||
95 | #define binheap_top_entry(ptr, type, member) \ | ||
96 | binheap_entry((ptr)->root, type, member) | ||
97 | |||
98 | /** | ||
99 | * binheap_delete_root - remove the root element from the heap. | ||
100 | * @handle: handle to the heap. | ||
101 | * @type: the type of the struct the head is embedded in. | ||
102 | * @member: the name of the binheap_struct within the (type) struct. | ||
103 | */ | ||
104 | #define binheap_delete_root(handle, type, member) \ | ||
105 | __binheap_delete_root((handle), &((type *)((handle)->root->data))->member) | ||
106 | |||
107 | /** | ||
108 | * binheap_delete - remove an arbitrary element from the heap. | ||
109 | * @to_delete: pointer to node to be removed. | ||
110 | * @handle: handle to the heap. | ||
111 | */ | ||
112 | #define binheap_delete(to_delete, handle) \ | ||
113 | __binheap_delete((to_delete), (handle)) | ||
114 | |||
115 | /** | ||
116 | * binheap_add - insert an element to the heap | ||
117 | * new_node: node to add. | ||
118 | * @handle: handle to the heap. | ||
119 | * @type: the type of the struct the head is embedded in. | ||
120 | * @member: the name of the binheap_struct within the (type) struct. | ||
121 | */ | ||
122 | #define binheap_add(new_node, handle, type, member) \ | ||
123 | __binheap_add((new_node), (handle), container_of((new_node), type, member)) | ||
124 | |||
125 | /** | ||
126 | * binheap_decrease - re-eval the position of a node (based upon its | ||
127 | * original data pointer). | ||
128 | * @handle: handle to the heap. | ||
129 | * @orig_node: node that was associated with the data pointer | ||
130 | * (whose value has changed) when said pointer was | ||
131 | * added to the heap. | ||
132 | */ | ||
133 | #define binheap_decrease(orig_node, handle) \ | ||
134 | __binheap_decrease((orig_node), (handle)) | ||
135 | |||
136 | #define BINHEAP_NODE_INIT() { NULL, BINHEAP_POISON, NULL, NULL , NULL, NULL} | ||
137 | |||
138 | #define BINHEAP_NODE(name) \ | ||
139 | struct binheap_node name = BINHEAP_NODE_INIT() | ||
140 | |||
141 | |||
142 | static inline void INIT_BINHEAP_NODE(struct binheap_node *n) | ||
143 | { | ||
144 | n->data = NULL; | ||
145 | n->parent = BINHEAP_POISON; | ||
146 | n->left = NULL; | ||
147 | n->right = NULL; | ||
148 | n->ref = NULL; | ||
149 | n->ref_ptr = NULL; | ||
150 | } | ||
151 | |||
152 | static inline void INIT_BINHEAP_HANDLE(struct binheap *handle, | ||
153 | binheap_order_t compare) | ||
154 | { | ||
155 | handle->root = NULL; | ||
156 | handle->next = NULL; | ||
157 | handle->last = NULL; | ||
158 | handle->compare = compare; | ||
159 | } | ||
160 | |||
161 | /* Returns true if binheap is empty. */ | ||
162 | static inline int binheap_empty(struct binheap *handle) | ||
163 | { | ||
164 | return(handle->root == NULL); | ||
165 | } | ||
166 | |||
167 | /* Returns true if binheap node is in a heap. */ | ||
168 | static inline int binheap_is_in_heap(struct binheap_node *node) | ||
169 | { | ||
170 | return (node->parent != BINHEAP_POISON); | ||
171 | } | ||
172 | |||
173 | /* Returns true if binheap node is in given heap. */ | ||
174 | int binheap_is_in_this_heap(struct binheap_node *node, struct binheap* heap); | ||
175 | |||
176 | /* Add a node to a heap */ | ||
177 | void __binheap_add(struct binheap_node *new_node, | ||
178 | struct binheap *handle, | ||
179 | void *data); | ||
180 | |||
181 | /** | ||
182 | * Removes the root node from the heap. The node is removed after coalescing | ||
183 | * the binheap_node with its original data pointer at the root of the tree. | ||
184 | * | ||
185 | * The 'last' node in the tree is then swapped up to the root and bubbled | ||
186 | * down. | ||
187 | */ | ||
188 | void __binheap_delete_root(struct binheap *handle, | ||
189 | struct binheap_node *container); | ||
190 | |||
191 | /** | ||
192 | * Delete an arbitrary node. Bubble node to delete up to the root, | ||
193 | * and then delete to root. | ||
194 | */ | ||
195 | void __binheap_delete(struct binheap_node *node_to_delete, | ||
196 | struct binheap *handle); | ||
197 | |||
198 | /** | ||
199 | * Bubble up a node whose pointer has decreased in value. | ||
200 | */ | ||
201 | void __binheap_decrease(struct binheap_node *orig_node, | ||
202 | struct binheap *handle); | ||
203 | |||
204 | |||
205 | #endif | ||
206 | |||
diff --git a/include/litmus/budget.h b/include/litmus/budget.h index 732530e63491..33344ee8d5f9 100644 --- a/include/litmus/budget.h +++ b/include/litmus/budget.h | |||
@@ -5,4 +5,31 @@ | |||
5 | * the next task. */ | 5 | * the next task. */ |
6 | void update_enforcement_timer(struct task_struct* t); | 6 | void update_enforcement_timer(struct task_struct* t); |
7 | 7 | ||
8 | inline static int budget_exhausted(struct task_struct* t) | ||
9 | { | ||
10 | return get_exec_time(t) >= get_exec_cost(t); | ||
11 | } | ||
12 | |||
13 | inline static lt_t budget_remaining(struct task_struct* t) | ||
14 | { | ||
15 | if (!budget_exhausted(t)) | ||
16 | return get_exec_cost(t) - get_exec_time(t); | ||
17 | else | ||
18 | /* avoid overflow */ | ||
19 | return 0; | ||
20 | } | ||
21 | |||
22 | #define budget_enforced(t) (tsk_rt(t)->task_params.budget_policy != NO_ENFORCEMENT) | ||
23 | |||
24 | #define budget_precisely_enforced(t) (tsk_rt(t)->task_params.budget_policy \ | ||
25 | == PRECISE_ENFORCEMENT) | ||
26 | |||
27 | static inline int requeue_preempted_job(struct task_struct* t) | ||
28 | { | ||
29 | /* Add task to ready queue only if not subject to budget enforcement or | ||
30 | * if the job has budget remaining. t may be NULL. | ||
31 | */ | ||
32 | return t && (!budget_exhausted(t) || !budget_enforced(t)); | ||
33 | } | ||
34 | |||
8 | #endif | 35 | #endif |
diff --git a/include/litmus/fdso.h b/include/litmus/fdso.h index caf2a1e6918c..f2115b83f1e4 100644 --- a/include/litmus/fdso.h +++ b/include/litmus/fdso.h | |||
@@ -12,7 +12,7 @@ | |||
12 | #include <linux/fs.h> | 12 | #include <linux/fs.h> |
13 | #include <linux/slab.h> | 13 | #include <linux/slab.h> |
14 | 14 | ||
15 | #define MAX_OBJECT_DESCRIPTORS 32 | 15 | #define MAX_OBJECT_DESCRIPTORS 85 |
16 | 16 | ||
17 | typedef enum { | 17 | typedef enum { |
18 | MIN_OBJ_TYPE = 0, | 18 | MIN_OBJ_TYPE = 0, |
@@ -20,7 +20,13 @@ typedef enum { | |||
20 | FMLP_SEM = 0, | 20 | FMLP_SEM = 0, |
21 | SRP_SEM = 1, | 21 | SRP_SEM = 1, |
22 | 22 | ||
23 | MAX_OBJ_TYPE = 1 | 23 | MPCP_SEM = 2, |
24 | MPCP_VS_SEM = 3, | ||
25 | DPCP_SEM = 4, | ||
26 | |||
27 | PCP_SEM = 5, | ||
28 | |||
29 | MAX_OBJ_TYPE = 5 | ||
24 | } obj_type_t; | 30 | } obj_type_t; |
25 | 31 | ||
26 | struct inode_obj_id { | 32 | struct inode_obj_id { |
diff --git a/include/litmus/fp_common.h b/include/litmus/fp_common.h new file mode 100644 index 000000000000..dd1f7bf1e347 --- /dev/null +++ b/include/litmus/fp_common.h | |||
@@ -0,0 +1,105 @@ | |||
1 | /* Fixed-priority scheduler support. | ||
2 | */ | ||
3 | |||
4 | #ifndef __FP_COMMON_H__ | ||
5 | #define __FP_COMMON_H__ | ||
6 | |||
7 | #include <litmus/rt_domain.h> | ||
8 | |||
9 | #include <asm/bitops.h> | ||
10 | |||
11 | |||
12 | void fp_domain_init(rt_domain_t* rt, check_resched_needed_t resched, | ||
13 | release_jobs_t release); | ||
14 | |||
15 | int fp_higher_prio(struct task_struct* first, | ||
16 | struct task_struct* second); | ||
17 | |||
18 | int fp_ready_order(struct bheap_node* a, struct bheap_node* b); | ||
19 | |||
20 | #define FP_PRIO_BIT_WORDS (LITMUS_MAX_PRIORITY / BITS_PER_LONG) | ||
21 | |||
22 | #if (LITMUS_MAX_PRIORITY % BITS_PER_LONG) | ||
23 | #error LITMUS_MAX_PRIORITY must be a multiple of BITS_PER_LONG | ||
24 | #endif | ||
25 | |||
26 | /* bitmask-inexed priority queue */ | ||
27 | struct fp_prio_queue { | ||
28 | unsigned long bitmask[FP_PRIO_BIT_WORDS]; | ||
29 | struct bheap queue[LITMUS_MAX_PRIORITY]; | ||
30 | }; | ||
31 | |||
32 | void fp_prio_queue_init(struct fp_prio_queue* q); | ||
33 | |||
34 | static inline void fpq_set(struct fp_prio_queue* q, unsigned int index) | ||
35 | { | ||
36 | unsigned long *word = q->bitmask + (index / BITS_PER_LONG); | ||
37 | __set_bit(index % BITS_PER_LONG, word); | ||
38 | } | ||
39 | |||
40 | static inline void fpq_clear(struct fp_prio_queue* q, unsigned int index) | ||
41 | { | ||
42 | unsigned long *word = q->bitmask + (index / BITS_PER_LONG); | ||
43 | __clear_bit(index % BITS_PER_LONG, word); | ||
44 | } | ||
45 | |||
46 | static inline unsigned int fpq_find(struct fp_prio_queue* q) | ||
47 | { | ||
48 | int i; | ||
49 | |||
50 | /* loop optimizer should unroll this */ | ||
51 | for (i = 0; i < FP_PRIO_BIT_WORDS; i++) | ||
52 | if (q->bitmask[i]) | ||
53 | return __ffs(q->bitmask[i]) + i * BITS_PER_LONG; | ||
54 | |||
55 | return LITMUS_MAX_PRIORITY; /* nothing found */ | ||
56 | } | ||
57 | |||
58 | static inline void fp_prio_add(struct fp_prio_queue* q, struct task_struct* t, unsigned int index) | ||
59 | { | ||
60 | |||
61 | BUG_ON(bheap_node_in_heap(tsk_rt(t)->heap_node)); | ||
62 | |||
63 | fpq_set(q, index); | ||
64 | bheap_insert(fp_ready_order, &q->queue[index], tsk_rt(t)->heap_node); | ||
65 | } | ||
66 | |||
67 | static inline void fp_prio_remove(struct fp_prio_queue* q, struct task_struct* t, unsigned int index) | ||
68 | { | ||
69 | BUG_ON(!is_queued(t)); | ||
70 | |||
71 | bheap_delete(fp_ready_order, &q->queue[index], tsk_rt(t)->heap_node); | ||
72 | if (likely(bheap_empty(&q->queue[index]))) | ||
73 | fpq_clear(q, index); | ||
74 | } | ||
75 | |||
76 | static inline struct task_struct* fp_prio_peek(struct fp_prio_queue* q) | ||
77 | { | ||
78 | unsigned int idx = fpq_find(q); | ||
79 | struct bheap_node* hn; | ||
80 | |||
81 | if (idx < LITMUS_MAX_PRIORITY) { | ||
82 | hn = bheap_peek(fp_ready_order, &q->queue[idx]); | ||
83 | return bheap2task(hn); | ||
84 | } else | ||
85 | return NULL; | ||
86 | } | ||
87 | |||
88 | static inline struct task_struct* fp_prio_take(struct fp_prio_queue* q) | ||
89 | { | ||
90 | unsigned int idx = fpq_find(q); | ||
91 | struct bheap_node* hn; | ||
92 | |||
93 | if (idx < LITMUS_MAX_PRIORITY) { | ||
94 | hn = bheap_take(fp_ready_order, &q->queue[idx]); | ||
95 | if (likely(bheap_empty(&q->queue[idx]))) | ||
96 | fpq_clear(q, idx); | ||
97 | return bheap2task(hn); | ||
98 | } else | ||
99 | return NULL; | ||
100 | } | ||
101 | |||
102 | int fp_preemption_needed(struct fp_prio_queue* q, struct task_struct *t); | ||
103 | |||
104 | |||
105 | #endif | ||
diff --git a/include/litmus/litmus.h b/include/litmus/litmus.h index fd0a8ea65162..09c8fd47ef9f 100644 --- a/include/litmus/litmus.h +++ b/include/litmus/litmus.h | |||
@@ -47,38 +47,24 @@ void litmus_exit_task(struct task_struct *tsk); | |||
47 | /* Realtime utility macros */ | 47 | /* Realtime utility macros */ |
48 | #define get_rt_flags(t) (tsk_rt(t)->flags) | 48 | #define get_rt_flags(t) (tsk_rt(t)->flags) |
49 | #define set_rt_flags(t,f) (tsk_rt(t)->flags=(f)) | 49 | #define set_rt_flags(t,f) (tsk_rt(t)->flags=(f)) |
50 | #define is_priority_boosted(t) (tsk_rt(t)->priority_boosted) | ||
51 | #define get_boost_start(t) (tsk_rt(t)->boost_start_time) | ||
52 | |||
53 | /* task_params macros */ | ||
50 | #define get_exec_cost(t) (tsk_rt(t)->task_params.exec_cost) | 54 | #define get_exec_cost(t) (tsk_rt(t)->task_params.exec_cost) |
51 | #define get_exec_time(t) (tsk_rt(t)->job_params.exec_time) | ||
52 | #define get_rt_period(t) (tsk_rt(t)->task_params.period) | 55 | #define get_rt_period(t) (tsk_rt(t)->task_params.period) |
56 | #define get_rt_relative_deadline(t) (tsk_rt(t)->task_params.relative_deadline) | ||
53 | #define get_rt_phase(t) (tsk_rt(t)->task_params.phase) | 57 | #define get_rt_phase(t) (tsk_rt(t)->task_params.phase) |
54 | #define get_partition(t) (tsk_rt(t)->task_params.cpu) | 58 | #define get_partition(t) (tsk_rt(t)->task_params.cpu) |
59 | #define get_priority(t) (tsk_rt(t)->task_params.priority) | ||
60 | #define get_class(t) (tsk_rt(t)->task_params.cls) | ||
61 | |||
62 | /* job_param macros */ | ||
63 | #define get_exec_time(t) (tsk_rt(t)->job_params.exec_time) | ||
55 | #define get_deadline(t) (tsk_rt(t)->job_params.deadline) | 64 | #define get_deadline(t) (tsk_rt(t)->job_params.deadline) |
56 | #define get_subjob_deadline(t) (tsk_rt(t)->job_params.subjob_deadline) | 65 | #define get_subjob_deadline(t) (tsk_rt(t)->job_params.subjob_deadline) |
57 | #define get_release(t) (tsk_rt(t)->job_params.release) | 66 | #define get_release(t) (tsk_rt(t)->job_params.release) |
58 | #define get_class(t) (tsk_rt(t)->task_params.cls) | ||
59 | |||
60 | #define is_priority_boosted(t) (tsk_rt(t)->priority_boosted) | ||
61 | #define is_in_crit_section(t) (tsk_rt(t)->in_crit_section) | 67 | #define is_in_crit_section(t) (tsk_rt(t)->in_crit_section) |
62 | #define get_boost_start(t) (tsk_rt(t)->boost_start_time) | ||
63 | |||
64 | inline static int budget_exhausted(struct task_struct* t) | ||
65 | { | ||
66 | return get_exec_time(t) >= get_exec_cost(t); | ||
67 | } | ||
68 | |||
69 | inline static lt_t budget_remaining(struct task_struct* t) | ||
70 | { | ||
71 | if (!budget_exhausted(t)) | ||
72 | return get_exec_cost(t) - get_exec_time(t); | ||
73 | else | ||
74 | /* avoid overflow */ | ||
75 | return 0; | ||
76 | } | ||
77 | |||
78 | #define budget_enforced(t) (tsk_rt(t)->task_params.budget_policy != NO_ENFORCEMENT) | ||
79 | |||
80 | #define budget_precisely_enforced(t) (tsk_rt(t)->task_params.budget_policy \ | ||
81 | == PRECISE_ENFORCEMENT) | ||
82 | 68 | ||
83 | #define is_hrt(t) \ | 69 | #define is_hrt(t) \ |
84 | (tsk_rt(t)->task_params.cls == RT_CLASS_HARD) | 70 | (tsk_rt(t)->task_params.cls == RT_CLASS_HARD) |
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index c9e4fe4ab0ab..6c05b14e7ce4 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -33,12 +33,34 @@ typedef enum { | |||
33 | PRECISE_ENFORCEMENT /* budgets are enforced with hrtimers */ | 33 | PRECISE_ENFORCEMENT /* budgets are enforced with hrtimers */ |
34 | } budget_policy_t; | 34 | } budget_policy_t; |
35 | 35 | ||
36 | /* We use the common priority interpretation "lower index == higher priority", | ||
37 | * which is commonly used in fixed-priority schedulability analysis papers. | ||
38 | * So, a numerically lower priority value implies higher scheduling priority, | ||
39 | * with priority 1 being the highest priority. Priority 0 is reserved for | ||
40 | * priority boosting. LITMUS_MAX_PRIORITY denotes the maximum priority value | ||
41 | * range. | ||
42 | */ | ||
43 | |||
44 | #define LITMUS_MAX_PRIORITY 512 | ||
45 | #define LITMUS_HIGHEST_PRIORITY 1 | ||
46 | #define LITMUS_LOWEST_PRIORITY (LITMUS_MAX_PRIORITY - 1) | ||
47 | |||
48 | /* Provide generic comparison macros for userspace, | ||
49 | * in case that we change this later. */ | ||
50 | #define litmus_higher_fixed_prio(a, b) (a < b) | ||
51 | #define litmus_lower_fixed_prio(a, b) (a > b) | ||
52 | #define litmus_is_valid_fixed_prio(p) \ | ||
53 | ((p) >= LITMUS_HIGHEST_PRIORITY && \ | ||
54 | (p) <= LITMUS_LOWEST_PRIORITY) | ||
55 | |||
36 | struct rt_task { | 56 | struct rt_task { |
37 | lt_t exec_cost; | 57 | lt_t exec_cost; |
38 | lt_t period; | 58 | lt_t period; |
59 | lt_t relative_deadline; | ||
39 | lt_t phase; | 60 | lt_t phase; |
40 | int split; | 61 | int split; |
41 | unsigned int cpu; | 62 | unsigned int cpu; |
63 | unsigned int priority; | ||
42 | task_class_t cls; | 64 | task_class_t cls; |
43 | budget_policy_t budget_policy; /* ignored by pfair */ | 65 | budget_policy_t budget_policy; /* ignored by pfair */ |
44 | }; | 66 | }; |
diff --git a/include/litmus/sched_trace.h b/include/litmus/sched_trace.h index 7ca34cb13881..82bde8241298 100644 --- a/include/litmus/sched_trace.h +++ b/include/litmus/sched_trace.h | |||
@@ -164,34 +164,93 @@ feather_callback void do_sched_trace_sys_release(unsigned long id, | |||
164 | 164 | ||
165 | #endif | 165 | #endif |
166 | 166 | ||
167 | #ifdef CONFIG_SCHED_LITMUS_TRACEPOINT | ||
168 | |||
169 | #include <trace/events/litmus.h> | ||
170 | |||
171 | #else | ||
172 | |||
173 | /* Override trace macros to actually do nothing */ | ||
174 | #define trace_litmus_task_param(t) | ||
175 | #define trace_litmus_task_release(t) | ||
176 | #define trace_litmus_switch_to(t) | ||
177 | #define trace_litmus_switch_away(prev) | ||
178 | #define trace_litmus_task_completion(t, forced) | ||
179 | #define trace_litmus_task_block(t) | ||
180 | #define trace_litmus_task_resume(t) | ||
181 | #define trace_litmus_sys_release(start) | ||
182 | |||
183 | #endif | ||
184 | |||
167 | 185 | ||
168 | #define SCHED_TRACE_BASE_ID 500 | 186 | #define SCHED_TRACE_BASE_ID 500 |
169 | 187 | ||
170 | 188 | ||
171 | #define sched_trace_task_name(t) \ | 189 | #define sched_trace_task_name(t) \ |
172 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 1, do_sched_trace_task_name, t) | 190 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 1, \ |
173 | #define sched_trace_task_param(t) \ | 191 | do_sched_trace_task_name, t) |
174 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 2, do_sched_trace_task_param, t) | 192 | |
175 | #define sched_trace_task_release(t) \ | 193 | #define sched_trace_task_param(t) \ |
176 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 3, do_sched_trace_task_release, t) | 194 | do { \ |
177 | #define sched_trace_task_switch_to(t) \ | 195 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 2, \ |
178 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 4, do_sched_trace_task_switch_to, t) | 196 | do_sched_trace_task_param, t); \ |
179 | #define sched_trace_task_switch_away(t) \ | 197 | trace_litmus_task_param(t); \ |
180 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 5, do_sched_trace_task_switch_away, t) | 198 | } while (0) |
181 | #define sched_trace_task_completion(t, forced) \ | 199 | |
182 | SCHED_TRACE2(SCHED_TRACE_BASE_ID + 6, do_sched_trace_task_completion, t, \ | 200 | #define sched_trace_task_release(t) \ |
183 | (unsigned long) forced) | 201 | do { \ |
184 | #define sched_trace_task_block(t) \ | 202 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 3, \ |
185 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 7, do_sched_trace_task_block, t) | 203 | do_sched_trace_task_release, t); \ |
186 | #define sched_trace_task_resume(t) \ | 204 | trace_litmus_task_release(t); \ |
187 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 8, do_sched_trace_task_resume, t) | 205 | } while (0) |
188 | #define sched_trace_action(t, action) \ | 206 | |
189 | SCHED_TRACE2(SCHED_TRACE_BASE_ID + 9, do_sched_trace_action, t, \ | 207 | #define sched_trace_task_switch_to(t) \ |
190 | (unsigned long) action); | 208 | do { \ |
191 | /* when is a pointer, it does not need an explicit cast to unsigned long */ | 209 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 4, \ |
192 | #define sched_trace_sys_release(when) \ | 210 | do_sched_trace_task_switch_to, t); \ |
193 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 10, do_sched_trace_sys_release, when) | 211 | trace_litmus_switch_to(t); \ |
212 | } while (0) | ||
213 | |||
214 | #define sched_trace_task_switch_away(t) \ | ||
215 | do { \ | ||
216 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 5, \ | ||
217 | do_sched_trace_task_switch_away, t); \ | ||
218 | trace_litmus_switch_away(t); \ | ||
219 | } while (0) | ||
220 | |||
221 | #define sched_trace_task_completion(t, forced) \ | ||
222 | do { \ | ||
223 | SCHED_TRACE2(SCHED_TRACE_BASE_ID + 6, \ | ||
224 | do_sched_trace_task_completion, t, \ | ||
225 | (unsigned long) forced); \ | ||
226 | trace_litmus_task_completion(t, forced); \ | ||
227 | } while (0) | ||
228 | |||
229 | #define sched_trace_task_block(t) \ | ||
230 | do { \ | ||
231 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 7, \ | ||
232 | do_sched_trace_task_block, t); \ | ||
233 | trace_litmus_task_block(t); \ | ||
234 | } while (0) | ||
235 | |||
236 | #define sched_trace_task_resume(t) \ | ||
237 | do { \ | ||
238 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 8, \ | ||
239 | do_sched_trace_task_resume, t); \ | ||
240 | trace_litmus_task_resume(t); \ | ||
241 | } while (0) | ||
242 | |||
243 | #define sched_trace_action(t, action) \ | ||
244 | SCHED_TRACE2(SCHED_TRACE_BASE_ID + 9, \ | ||
245 | do_sched_trace_action, t, (unsigned long) action); | ||
194 | 246 | ||
247 | /* when is a pointer, it does not need an explicit cast to unsigned long */ | ||
248 | #define sched_trace_sys_release(when) \ | ||
249 | do { \ | ||
250 | SCHED_TRACE(SCHED_TRACE_BASE_ID + 10, \ | ||
251 | do_sched_trace_sys_release, when); \ | ||
252 | trace_litmus_sys_release(when); \ | ||
253 | } while (0) | ||
195 | 254 | ||
196 | #define sched_trace_quantum_boundary() /* NOT IMPLEMENTED */ | 255 | #define sched_trace_quantum_boundary() /* NOT IMPLEMENTED */ |
197 | 256 | ||
diff --git a/include/litmus/wait.h b/include/litmus/wait.h new file mode 100644 index 000000000000..ce1347c355f8 --- /dev/null +++ b/include/litmus/wait.h | |||
@@ -0,0 +1,57 @@ | |||
1 | #ifndef _LITMUS_WAIT_H_ | ||
2 | #define _LITMUS_WAIT_H_ | ||
3 | |||
4 | struct task_struct* __waitqueue_remove_first(wait_queue_head_t *wq); | ||
5 | |||
6 | /* wrap regular wait_queue_t head */ | ||
7 | struct __prio_wait_queue { | ||
8 | wait_queue_t wq; | ||
9 | |||
10 | /* some priority point */ | ||
11 | lt_t priority; | ||
12 | /* break ties in priority by lower tie_breaker */ | ||
13 | unsigned int tie_breaker; | ||
14 | }; | ||
15 | |||
16 | typedef struct __prio_wait_queue prio_wait_queue_t; | ||
17 | |||
18 | static inline void init_prio_waitqueue_entry(prio_wait_queue_t *pwq, | ||
19 | struct task_struct* t, | ||
20 | lt_t priority) | ||
21 | { | ||
22 | init_waitqueue_entry(&pwq->wq, t); | ||
23 | pwq->priority = priority; | ||
24 | pwq->tie_breaker = 0; | ||
25 | } | ||
26 | |||
27 | static inline void init_prio_waitqueue_entry_tie(prio_wait_queue_t *pwq, | ||
28 | struct task_struct* t, | ||
29 | lt_t priority, | ||
30 | unsigned int tie_breaker) | ||
31 | { | ||
32 | init_waitqueue_entry(&pwq->wq, t); | ||
33 | pwq->priority = priority; | ||
34 | pwq->tie_breaker = tie_breaker; | ||
35 | } | ||
36 | |||
37 | unsigned int __add_wait_queue_prio_exclusive( | ||
38 | wait_queue_head_t* head, | ||
39 | prio_wait_queue_t *new); | ||
40 | |||
41 | static inline unsigned int add_wait_queue_prio_exclusive( | ||
42 | wait_queue_head_t* head, | ||
43 | prio_wait_queue_t *new) | ||
44 | { | ||
45 | unsigned long flags; | ||
46 | unsigned int passed; | ||
47 | |||
48 | spin_lock_irqsave(&head->lock, flags); | ||
49 | passed = __add_wait_queue_prio_exclusive(head, new); | ||
50 | |||
51 | spin_unlock_irqrestore(&head->lock, flags); | ||
52 | |||
53 | return passed; | ||
54 | } | ||
55 | |||
56 | |||
57 | #endif | ||
diff --git a/include/trace/events/litmus.h b/include/trace/events/litmus.h new file mode 100644 index 000000000000..0fffcee02be0 --- /dev/null +++ b/include/trace/events/litmus.h | |||
@@ -0,0 +1,231 @@ | |||
1 | /* | ||
2 | * LITMUS^RT kernel style scheduling tracepoints | ||
3 | */ | ||
4 | #undef TRACE_SYSTEM | ||
5 | #define TRACE_SYSTEM litmus | ||
6 | |||
7 | #if !defined(_SCHED_TASK_TRACEPOINT_H) || defined(TRACE_HEADER_MULTI_READ) | ||
8 | #define _SCHED_TASK_TRACEPOINT_H | ||
9 | |||
10 | #include <linux/tracepoint.h> | ||
11 | |||
12 | #include <litmus/litmus.h> | ||
13 | #include <litmus/rt_param.h> | ||
14 | |||
15 | /* | ||
16 | * Tracing task admission | ||
17 | */ | ||
18 | TRACE_EVENT(litmus_task_param, | ||
19 | |||
20 | TP_PROTO(struct task_struct *t), | ||
21 | |||
22 | TP_ARGS(t), | ||
23 | |||
24 | TP_STRUCT__entry( | ||
25 | __field( pid_t, pid ) | ||
26 | __field( unsigned int, job ) | ||
27 | __field( lt_t, wcet ) | ||
28 | __field( lt_t, period ) | ||
29 | __field( lt_t, phase ) | ||
30 | __field( int, partition ) | ||
31 | ), | ||
32 | |||
33 | TP_fast_assign( | ||
34 | __entry->pid = t ? t->pid : 0; | ||
35 | __entry->job = t ? t->rt_param.job_params.job_no : 0; | ||
36 | __entry->wcet = get_exec_cost(t); | ||
37 | __entry->period = get_rt_period(t); | ||
38 | __entry->phase = get_rt_phase(t); | ||
39 | __entry->partition = get_partition(t); | ||
40 | ), | ||
41 | |||
42 | TP_printk("period(%d, %Lu).\nwcet(%d, %Lu).\n", | ||
43 | __entry->pid, __entry->period, | ||
44 | __entry->pid, __entry->wcet) | ||
45 | ); | ||
46 | |||
47 | /* | ||
48 | * Tracing jobs release | ||
49 | */ | ||
50 | TRACE_EVENT(litmus_task_release, | ||
51 | |||
52 | TP_PROTO(struct task_struct *t), | ||
53 | |||
54 | TP_ARGS(t), | ||
55 | |||
56 | TP_STRUCT__entry( | ||
57 | __field( pid_t, pid ) | ||
58 | __field( unsigned int, job ) | ||
59 | __field( lt_t, release ) | ||
60 | __field( lt_t, deadline ) | ||
61 | ), | ||
62 | |||
63 | TP_fast_assign( | ||
64 | __entry->pid = t ? t->pid : 0; | ||
65 | __entry->job = t ? t->rt_param.job_params.job_no : 0; | ||
66 | __entry->release = get_release(t); | ||
67 | __entry->deadline = get_deadline(t); | ||
68 | ), | ||
69 | |||
70 | TP_printk("release(job(%u, %u)): %Lu\ndeadline(job(%u, %u)): %Lu\n", | ||
71 | __entry->pid, __entry->job, __entry->release, | ||
72 | __entry->pid, __entry->job, __entry->deadline) | ||
73 | ); | ||
74 | |||
75 | /* | ||
76 | * Tracepoint for switching to new task | ||
77 | */ | ||
78 | TRACE_EVENT(litmus_switch_to, | ||
79 | |||
80 | TP_PROTO(struct task_struct *t), | ||
81 | |||
82 | TP_ARGS(t), | ||
83 | |||
84 | TP_STRUCT__entry( | ||
85 | __field( pid_t, pid ) | ||
86 | __field( unsigned int, job ) | ||
87 | __field( lt_t, when ) | ||
88 | __field( lt_t, exec_time ) | ||
89 | ), | ||
90 | |||
91 | TP_fast_assign( | ||
92 | __entry->pid = is_realtime(t) ? t->pid : 0; | ||
93 | __entry->job = is_realtime(t) ? t->rt_param.job_params.job_no : 0; | ||
94 | __entry->when = litmus_clock(); | ||
95 | __entry->exec_time = get_exec_time(t); | ||
96 | ), | ||
97 | |||
98 | TP_printk("switch_to(job(%u, %u)): %Lu (exec: %Lu)\n", | ||
99 | __entry->pid, __entry->job, | ||
100 | __entry->when, __entry->exec_time) | ||
101 | ); | ||
102 | |||
103 | /* | ||
104 | * Tracepoint for switching away previous task | ||
105 | */ | ||
106 | TRACE_EVENT(litmus_switch_away, | ||
107 | |||
108 | TP_PROTO(struct task_struct *t), | ||
109 | |||
110 | TP_ARGS(t), | ||
111 | |||
112 | TP_STRUCT__entry( | ||
113 | __field( pid_t, pid ) | ||
114 | __field( unsigned int, job ) | ||
115 | __field( lt_t, when ) | ||
116 | __field( lt_t, exec_time ) | ||
117 | ), | ||
118 | |||
119 | TP_fast_assign( | ||
120 | __entry->pid = is_realtime(t) ? t->pid : 0; | ||
121 | __entry->job = is_realtime(t) ? t->rt_param.job_params.job_no : 0; | ||
122 | __entry->when = litmus_clock(); | ||
123 | __entry->exec_time = get_exec_time(t); | ||
124 | ), | ||
125 | |||
126 | TP_printk("switch_away(job(%u, %u)): %Lu (exec: %Lu)\n", | ||
127 | __entry->pid, __entry->job, | ||
128 | __entry->when, __entry->exec_time) | ||
129 | ); | ||
130 | |||
131 | /* | ||
132 | * Tracing jobs completion | ||
133 | */ | ||
134 | TRACE_EVENT(litmus_task_completion, | ||
135 | |||
136 | TP_PROTO(struct task_struct *t, unsigned long forced), | ||
137 | |||
138 | TP_ARGS(t, forced), | ||
139 | |||
140 | TP_STRUCT__entry( | ||
141 | __field( pid_t, pid ) | ||
142 | __field( unsigned int, job ) | ||
143 | __field( lt_t, when ) | ||
144 | __field( unsigned long, forced ) | ||
145 | ), | ||
146 | |||
147 | TP_fast_assign( | ||
148 | __entry->pid = t ? t->pid : 0; | ||
149 | __entry->job = t ? t->rt_param.job_params.job_no : 0; | ||
150 | __entry->when = litmus_clock(); | ||
151 | __entry->forced = forced; | ||
152 | ), | ||
153 | |||
154 | TP_printk("completed(job(%u, %u)): %Lu (forced: %lu)\n", | ||
155 | __entry->pid, __entry->job, | ||
156 | __entry->when, __entry->forced) | ||
157 | ); | ||
158 | |||
159 | /* | ||
160 | * Trace blocking tasks. | ||
161 | */ | ||
162 | TRACE_EVENT(litmus_task_block, | ||
163 | |||
164 | TP_PROTO(struct task_struct *t), | ||
165 | |||
166 | TP_ARGS(t), | ||
167 | |||
168 | TP_STRUCT__entry( | ||
169 | __field( pid_t, pid ) | ||
170 | __field( lt_t, when ) | ||
171 | ), | ||
172 | |||
173 | TP_fast_assign( | ||
174 | __entry->pid = t ? t->pid : 0; | ||
175 | __entry->when = litmus_clock(); | ||
176 | ), | ||
177 | |||
178 | TP_printk("(%u) blocks: %Lu\n", __entry->pid, __entry->when) | ||
179 | ); | ||
180 | |||
181 | /* | ||
182 | * Tracing jobs resume | ||
183 | */ | ||
184 | TRACE_EVENT(litmus_task_resume, | ||
185 | |||
186 | TP_PROTO(struct task_struct *t), | ||
187 | |||
188 | TP_ARGS(t), | ||
189 | |||
190 | TP_STRUCT__entry( | ||
191 | __field( pid_t, pid ) | ||
192 | __field( unsigned int, job ) | ||
193 | __field( lt_t, when ) | ||
194 | ), | ||
195 | |||
196 | TP_fast_assign( | ||
197 | __entry->pid = t ? t->pid : 0; | ||
198 | __entry->job = t ? t->rt_param.job_params.job_no : 0; | ||
199 | __entry->when = litmus_clock(); | ||
200 | ), | ||
201 | |||
202 | TP_printk("resume(job(%u, %u)): %Lu\n", | ||
203 | __entry->pid, __entry->job, __entry->when) | ||
204 | ); | ||
205 | |||
206 | /* | ||
207 | * Trace synchronous release | ||
208 | */ | ||
209 | TRACE_EVENT(litmus_sys_release, | ||
210 | |||
211 | TP_PROTO(lt_t *start), | ||
212 | |||
213 | TP_ARGS(start), | ||
214 | |||
215 | TP_STRUCT__entry( | ||
216 | __field( lt_t, rel ) | ||
217 | __field( lt_t, when ) | ||
218 | ), | ||
219 | |||
220 | TP_fast_assign( | ||
221 | __entry->rel = *start; | ||
222 | __entry->when = litmus_clock(); | ||
223 | ), | ||
224 | |||
225 | TP_printk("SynRelease(%Lu) at %Lu\n", __entry->rel, __entry->when) | ||
226 | ); | ||
227 | |||
228 | #endif /* _SCHED_TASK_TRACEPOINT_H */ | ||
229 | |||
230 | /* Must stay outside the protection */ | ||
231 | #include <trace/define_trace.h> | ||
diff --git a/kernel/sched.c b/kernel/sched.c index baaca61bc3a3..2229d0deec4b 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -80,14 +80,14 @@ | |||
80 | #include "workqueue_sched.h" | 80 | #include "workqueue_sched.h" |
81 | #include "sched_autogroup.h" | 81 | #include "sched_autogroup.h" |
82 | 82 | ||
83 | #define CREATE_TRACE_POINTS | ||
84 | #include <trace/events/sched.h> | ||
85 | |||
83 | #include <litmus/sched_trace.h> | 86 | #include <litmus/sched_trace.h> |
84 | #include <litmus/trace.h> | 87 | #include <litmus/trace.h> |
85 | 88 | ||
86 | static void litmus_tick(struct rq*, struct task_struct*); | 89 | static void litmus_tick(struct rq*, struct task_struct*); |
87 | 90 | ||
88 | #define CREATE_TRACE_POINTS | ||
89 | #include <trace/events/sched.h> | ||
90 | |||
91 | /* | 91 | /* |
92 | * Convert user-nice values [ -20 ... 0 ... 19 ] | 92 | * Convert user-nice values [ -20 ... 0 ... 19 ] |
93 | * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ], | 93 | * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ], |
diff --git a/litmus/Kconfig b/litmus/Kconfig index 94b48e199577..68459d4dca41 100644 --- a/litmus/Kconfig +++ b/litmus/Kconfig | |||
@@ -138,6 +138,24 @@ config SCHED_TASK_TRACE_SHIFT | |||
138 | 10 => 1k events | 138 | 10 => 1k events |
139 | 8 => 512 events | 139 | 8 => 512 events |
140 | 140 | ||
141 | config SCHED_LITMUS_TRACEPOINT | ||
142 | bool "Enable Event/Tracepoint Tracing for real-time task tracing" | ||
143 | depends on TRACEPOINTS | ||
144 | default n | ||
145 | help | ||
146 | Enable kernel-style events (tracepoint) for Litmus. Litmus events | ||
147 | trace the same functions as the above sched_trace_XXX(), but can | ||
148 | be enabled independently. | ||
149 | Litmus tracepoints can be recorded and analyzed together (single | ||
150 | time reference) with all other kernel tracing events (e.g., | ||
151 | sched:sched_switch, etc.). | ||
152 | |||
153 | This also enables a quick way to visualize schedule traces using | ||
154 | trace-cmd utility and kernelshark visualizer. | ||
155 | |||
156 | Say Yes for debugging and visualization purposes. | ||
157 | Say No for overhead tracing. | ||
158 | |||
141 | config SCHED_OVERHEAD_TRACE | 159 | config SCHED_OVERHEAD_TRACE |
142 | bool "Record timestamps for overhead measurements" | 160 | bool "Record timestamps for overhead measurements" |
143 | depends on FEATHER_TRACE | 161 | depends on FEATHER_TRACE |
diff --git a/litmus/Makefile b/litmus/Makefile index b892f356f2be..2ffbbb1af78a 100644 --- a/litmus/Makefile +++ b/litmus/Makefile | |||
@@ -12,16 +12,19 @@ obj-y = sched_plugin.o litmus.o \ | |||
12 | rt_domain.o \ | 12 | rt_domain.o \ |
13 | edf_common.o \ | 13 | edf_common.o \ |
14 | edf_split_common.o \ | 14 | edf_split_common.o \ |
15 | fp_common.o \ | ||
15 | fdso.o \ | 16 | fdso.o \ |
16 | locking.o \ | 17 | locking.o \ |
17 | srp.o \ | 18 | srp.o \ |
18 | bheap.o \ | 19 | bheap.o \ |
20 | binheap.o \ | ||
19 | ctrldev.o \ | 21 | ctrldev.o \ |
20 | sched_gsn_edf.o \ | 22 | sched_gsn_edf.o \ |
21 | sched_gsn_edf_split.o \ | 23 | sched_gsn_edf_split.o \ |
22 | sched_gfl_split.o \ | 24 | sched_gfl_split.o \ |
23 | sched_cfl_split.o \ | 25 | sched_cfl_split.o \ |
24 | sched_psn_edf.o | 26 | sched_psn_edf.o \ |
27 | sched_pfp.o | ||
25 | 28 | ||
26 | obj-$(CONFIG_PLUGIN_CEDF) += sched_cedf.o | 29 | obj-$(CONFIG_PLUGIN_CEDF) += sched_cedf.o |
27 | obj-$(CONFIG_PLUGIN_PFAIR) += sched_pfair.o | 30 | obj-$(CONFIG_PLUGIN_PFAIR) += sched_pfair.o |
diff --git a/litmus/binheap.c b/litmus/binheap.c new file mode 100644 index 000000000000..40a913f4b5a7 --- /dev/null +++ b/litmus/binheap.c | |||
@@ -0,0 +1,388 @@ | |||
1 | #include <litmus/binheap.h> | ||
2 | |||
3 | /* Returns true of the root ancestor of node is the root of the given heap. */ | ||
4 | int binheap_is_in_this_heap(struct binheap_node *node, | ||
5 | struct binheap* heap) | ||
6 | { | ||
7 | if(!binheap_is_in_heap(node)) { | ||
8 | return 0; | ||
9 | } | ||
10 | |||
11 | while(node->parent != NULL) { | ||
12 | node = node->parent; | ||
13 | } | ||
14 | |||
15 | return (node == heap->root); | ||
16 | } | ||
17 | |||
18 | |||
19 | /* Update the node reference pointers. Same logic as Litmus binomial heap. */ | ||
20 | static void __update_ref(struct binheap_node *parent, | ||
21 | struct binheap_node *child) | ||
22 | { | ||
23 | *(parent->ref_ptr) = child; | ||
24 | *(child->ref_ptr) = parent; | ||
25 | |||
26 | swap(parent->ref_ptr, child->ref_ptr); | ||
27 | } | ||
28 | |||
29 | |||
30 | /* Swaps data between two nodes. */ | ||
31 | static void __binheap_swap(struct binheap_node *parent, | ||
32 | struct binheap_node *child) | ||
33 | { | ||
34 | swap(parent->data, child->data); | ||
35 | __update_ref(parent, child); | ||
36 | } | ||
37 | |||
38 | |||
39 | /* Swaps memory and data between two nodes. Actual nodes swap instead of | ||
40 | * just data. Needed when we delete nodes from the heap. | ||
41 | */ | ||
42 | static void __binheap_swap_safe(struct binheap *handle, | ||
43 | struct binheap_node *a, | ||
44 | struct binheap_node *b) | ||
45 | { | ||
46 | swap(a->data, b->data); | ||
47 | __update_ref(a, b); | ||
48 | |||
49 | if((a->parent != NULL) && (a->parent == b->parent)) { | ||
50 | /* special case: shared parent */ | ||
51 | swap(a->parent->left, a->parent->right); | ||
52 | } | ||
53 | else { | ||
54 | /* Update pointers to swap parents. */ | ||
55 | |||
56 | if(a->parent) { | ||
57 | if(a == a->parent->left) { | ||
58 | a->parent->left = b; | ||
59 | } | ||
60 | else { | ||
61 | a->parent->right = b; | ||
62 | } | ||
63 | } | ||
64 | |||
65 | if(b->parent) { | ||
66 | if(b == b->parent->left) { | ||
67 | b->parent->left = a; | ||
68 | } | ||
69 | else { | ||
70 | b->parent->right = a; | ||
71 | } | ||
72 | } | ||
73 | |||
74 | swap(a->parent, b->parent); | ||
75 | } | ||
76 | |||
77 | /* swap children */ | ||
78 | |||
79 | if(a->left) { | ||
80 | a->left->parent = b; | ||
81 | |||
82 | if(a->right) { | ||
83 | a->right->parent = b; | ||
84 | } | ||
85 | } | ||
86 | |||
87 | if(b->left) { | ||
88 | b->left->parent = a; | ||
89 | |||
90 | if(b->right) { | ||
91 | b->right->parent = a; | ||
92 | } | ||
93 | } | ||
94 | |||
95 | swap(a->left, b->left); | ||
96 | swap(a->right, b->right); | ||
97 | |||
98 | |||
99 | /* update next/last/root pointers */ | ||
100 | |||
101 | if(a == handle->next) { | ||
102 | handle->next = b; | ||
103 | } | ||
104 | else if(b == handle->next) { | ||
105 | handle->next = a; | ||
106 | } | ||
107 | |||
108 | if(a == handle->last) { | ||
109 | handle->last = b; | ||
110 | } | ||
111 | else if(b == handle->last) { | ||
112 | handle->last = a; | ||
113 | } | ||
114 | |||
115 | if(a == handle->root) { | ||
116 | handle->root = b; | ||
117 | } | ||
118 | else if(b == handle->root) { | ||
119 | handle->root = a; | ||
120 | } | ||
121 | } | ||
122 | |||
123 | |||
124 | /** | ||
125 | * Update the pointer to the last node in the complete binary tree. | ||
126 | * Called internally after the root node has been deleted. | ||
127 | */ | ||
128 | static void __binheap_update_last(struct binheap *handle) | ||
129 | { | ||
130 | struct binheap_node *temp = handle->last; | ||
131 | |||
132 | /* find a "bend" in the tree. */ | ||
133 | while(temp->parent && (temp == temp->parent->left)) { | ||
134 | temp = temp->parent; | ||
135 | } | ||
136 | |||
137 | /* step over to sibling if we're not at root */ | ||
138 | if(temp->parent != NULL) { | ||
139 | temp = temp->parent->left; | ||
140 | } | ||
141 | |||
142 | /* now travel right as far as possible. */ | ||
143 | while(temp->right != NULL) { | ||
144 | temp = temp->right; | ||
145 | } | ||
146 | |||
147 | /* take one step to the left if we're not at the bottom-most level. */ | ||
148 | if(temp->left != NULL) { | ||
149 | temp = temp->left; | ||
150 | } | ||
151 | |||
152 | handle->last = temp; | ||
153 | } | ||
154 | |||
155 | |||
156 | /** | ||
157 | * Update the pointer to the node that will take the next inserted node. | ||
158 | * Called internally after a node has been inserted. | ||
159 | */ | ||
160 | static void __binheap_update_next(struct binheap *handle) | ||
161 | { | ||
162 | struct binheap_node *temp = handle->next; | ||
163 | |||
164 | /* find a "bend" in the tree. */ | ||
165 | while(temp->parent && (temp == temp->parent->right)) { | ||
166 | temp = temp->parent; | ||
167 | } | ||
168 | |||
169 | /* step over to sibling if we're not at root */ | ||
170 | if(temp->parent != NULL) { | ||
171 | temp = temp->parent->right; | ||
172 | } | ||
173 | |||
174 | /* now travel left as far as possible. */ | ||
175 | while(temp->left != NULL) { | ||
176 | temp = temp->left; | ||
177 | } | ||
178 | |||
179 | handle->next = temp; | ||
180 | } | ||
181 | |||
182 | |||
183 | |||
184 | /* bubble node up towards root */ | ||
185 | static void __binheap_bubble_up(struct binheap *handle, | ||
186 | struct binheap_node *node) | ||
187 | { | ||
188 | /* let BINHEAP_POISON data bubble to the top */ | ||
189 | |||
190 | while((node->parent != NULL) && | ||
191 | ((node->data == BINHEAP_POISON) || | ||
192 | handle->compare(node, node->parent))) { | ||
193 | __binheap_swap(node->parent, node); | ||
194 | node = node->parent; | ||
195 | } | ||
196 | } | ||
197 | |||
198 | |||
199 | /* bubble node down, swapping with min-child */ | ||
200 | static void __binheap_bubble_down(struct binheap *handle) | ||
201 | { | ||
202 | struct binheap_node *node = handle->root; | ||
203 | |||
204 | while(node->left != NULL) { | ||
205 | if(node->right && handle->compare(node->right, node->left)) { | ||
206 | if(handle->compare(node->right, node)) { | ||
207 | __binheap_swap(node, node->right); | ||
208 | node = node->right; | ||
209 | } | ||
210 | else { | ||
211 | break; | ||
212 | } | ||
213 | } | ||
214 | else { | ||
215 | if(handle->compare(node->left, node)) { | ||
216 | __binheap_swap(node, node->left); | ||
217 | node = node->left; | ||
218 | } | ||
219 | else { | ||
220 | break; | ||
221 | } | ||
222 | } | ||
223 | } | ||
224 | } | ||
225 | |||
226 | |||
227 | void __binheap_add(struct binheap_node *new_node, | ||
228 | struct binheap *handle, | ||
229 | void *data) | ||
230 | { | ||
231 | new_node->data = data; | ||
232 | new_node->ref = new_node; | ||
233 | new_node->ref_ptr = &(new_node->ref); | ||
234 | |||
235 | if(!binheap_empty(handle)) { | ||
236 | /* insert left side first */ | ||
237 | if(handle->next->left == NULL) { | ||
238 | handle->next->left = new_node; | ||
239 | new_node->parent = handle->next; | ||
240 | new_node->left = NULL; | ||
241 | new_node->right = NULL; | ||
242 | |||
243 | handle->last = new_node; | ||
244 | |||
245 | __binheap_bubble_up(handle, new_node); | ||
246 | } | ||
247 | else { | ||
248 | /* left occupied. insert right. */ | ||
249 | handle->next->right = new_node; | ||
250 | new_node->parent = handle->next; | ||
251 | new_node->left = NULL; | ||
252 | new_node->right = NULL; | ||
253 | |||
254 | handle->last = new_node; | ||
255 | |||
256 | __binheap_update_next(handle); | ||
257 | __binheap_bubble_up(handle, new_node); | ||
258 | } | ||
259 | } | ||
260 | else { | ||
261 | /* first node in heap */ | ||
262 | |||
263 | new_node->parent = NULL; | ||
264 | new_node->left = NULL; | ||
265 | new_node->right = NULL; | ||
266 | |||
267 | handle->root = new_node; | ||
268 | handle->next = new_node; | ||
269 | handle->last = new_node; | ||
270 | } | ||
271 | } | ||
272 | |||
273 | |||
274 | /** | ||
275 | * Removes the root node from the heap. The node is removed after coalescing | ||
276 | * the binheap_node with its original data pointer at the root of the tree. | ||
277 | * | ||
278 | * The 'last' node in the tree is then swapped up to the root and bubbled | ||
279 | * down. | ||
280 | */ | ||
281 | void __binheap_delete_root(struct binheap *handle, | ||
282 | struct binheap_node *container) | ||
283 | { | ||
284 | struct binheap_node *root = handle->root; | ||
285 | |||
286 | if(root != container) { | ||
287 | /* coalesce */ | ||
288 | __binheap_swap_safe(handle, root, container); | ||
289 | root = container; | ||
290 | } | ||
291 | |||
292 | if(handle->last != root) { | ||
293 | /* swap 'last' node up to root and bubble it down. */ | ||
294 | |||
295 | struct binheap_node *to_move = handle->last; | ||
296 | |||
297 | if(to_move->parent != root) { | ||
298 | handle->next = to_move->parent; | ||
299 | |||
300 | if(handle->next->right == to_move) { | ||
301 | /* disconnect from parent */ | ||
302 | to_move->parent->right = NULL; | ||
303 | handle->last = handle->next->left; | ||
304 | } | ||
305 | else { | ||
306 | /* find new 'last' before we disconnect */ | ||
307 | __binheap_update_last(handle); | ||
308 | |||
309 | /* disconnect from parent */ | ||
310 | to_move->parent->left = NULL; | ||
311 | } | ||
312 | } | ||
313 | else { | ||
314 | /* 'last' is direct child of root */ | ||
315 | |||
316 | handle->next = to_move; | ||
317 | |||
318 | if(to_move == to_move->parent->right) { | ||
319 | to_move->parent->right = NULL; | ||
320 | handle->last = to_move->parent->left; | ||
321 | } | ||
322 | else { | ||
323 | to_move->parent->left = NULL; | ||
324 | handle->last = to_move; | ||
325 | } | ||
326 | } | ||
327 | to_move->parent = NULL; | ||
328 | |||
329 | /* reconnect as root. We can't just swap data ptrs since root node | ||
330 | * may be freed after this function returns. | ||
331 | */ | ||
332 | to_move->left = root->left; | ||
333 | to_move->right = root->right; | ||
334 | if(to_move->left != NULL) { | ||
335 | to_move->left->parent = to_move; | ||
336 | } | ||
337 | if(to_move->right != NULL) { | ||
338 | to_move->right->parent = to_move; | ||
339 | } | ||
340 | |||
341 | handle->root = to_move; | ||
342 | |||
343 | /* bubble down */ | ||
344 | __binheap_bubble_down(handle); | ||
345 | } | ||
346 | else { | ||
347 | /* removing last node in tree */ | ||
348 | handle->root = NULL; | ||
349 | handle->next = NULL; | ||
350 | handle->last = NULL; | ||
351 | } | ||
352 | |||
353 | /* mark as removed */ | ||
354 | container->parent = BINHEAP_POISON; | ||
355 | } | ||
356 | |||
357 | |||
358 | /** | ||
359 | * Delete an arbitrary node. Bubble node to delete up to the root, | ||
360 | * and then delete to root. | ||
361 | */ | ||
362 | void __binheap_delete(struct binheap_node *node_to_delete, | ||
363 | struct binheap *handle) | ||
364 | { | ||
365 | struct binheap_node *target = node_to_delete->ref; | ||
366 | void *temp_data = target->data; | ||
367 | |||
368 | /* temporarily set data to null to allow node to bubble up to the top. */ | ||
369 | target->data = BINHEAP_POISON; | ||
370 | |||
371 | __binheap_bubble_up(handle, target); | ||
372 | __binheap_delete_root(handle, node_to_delete); | ||
373 | |||
374 | node_to_delete->data = temp_data; /* restore node data pointer */ | ||
375 | } | ||
376 | |||
377 | |||
378 | /** | ||
379 | * Bubble up a node whose pointer has decreased in value. | ||
380 | */ | ||
381 | void __binheap_decrease(struct binheap_node *orig_node, | ||
382 | struct binheap *handle) | ||
383 | { | ||
384 | struct binheap_node *target = orig_node->ref; | ||
385 | |||
386 | __binheap_bubble_up(handle, target); | ||
387 | } | ||
388 | |||
diff --git a/litmus/budget.c b/litmus/budget.c index c3d0cb6c30a4..f496e19d5c1d 100644 --- a/litmus/budget.c +++ b/litmus/budget.c | |||
@@ -5,6 +5,8 @@ | |||
5 | #include <litmus/litmus.h> | 5 | #include <litmus/litmus.h> |
6 | #include <litmus/preempt.h> | 6 | #include <litmus/preempt.h> |
7 | 7 | ||
8 | #include <litmus/budget.h> | ||
9 | |||
8 | struct enforcement_timer { | 10 | struct enforcement_timer { |
9 | /* The enforcement timer is used to accurately police | 11 | /* The enforcement timer is used to accurately police |
10 | * slice budgets. */ | 12 | * slice budgets. */ |
diff --git a/litmus/ctrldev.c b/litmus/ctrldev.c index 6677a67cc945..9969ab17c190 100644 --- a/litmus/ctrldev.c +++ b/litmus/ctrldev.c | |||
@@ -30,27 +30,19 @@ static int alloc_ctrl_page(struct task_struct *t) | |||
30 | static int map_ctrl_page(struct task_struct *t, struct vm_area_struct* vma) | 30 | static int map_ctrl_page(struct task_struct *t, struct vm_area_struct* vma) |
31 | { | 31 | { |
32 | int err; | 32 | int err; |
33 | unsigned long pfn; | ||
34 | 33 | ||
35 | struct page* ctrl = virt_to_page(tsk_rt(t)->ctrl_page); | 34 | struct page* ctrl = virt_to_page(tsk_rt(t)->ctrl_page); |
36 | 35 | ||
37 | /* Increase ref count. Is decreased when vma is destroyed. */ | ||
38 | get_page(ctrl); | ||
39 | |||
40 | /* compute page frame number */ | ||
41 | pfn = page_to_pfn(ctrl); | ||
42 | |||
43 | TRACE_CUR(CTRL_NAME | 36 | TRACE_CUR(CTRL_NAME |
44 | ": mapping %p (pfn:%lx, %lx) to 0x%lx (prot:%lx)\n", | 37 | ": mapping %p (pfn:%lx) to 0x%lx (prot:%lx)\n", |
45 | tsk_rt(t)->ctrl_page, pfn, page_to_pfn(ctrl), vma->vm_start, | 38 | tsk_rt(t)->ctrl_page,page_to_pfn(ctrl), vma->vm_start, |
46 | vma->vm_page_prot); | 39 | vma->vm_page_prot); |
47 | 40 | ||
48 | /* Map it into the vma. Make sure to use PAGE_SHARED, otherwise | 41 | /* Map it into the vma. */ |
49 | * userspace actually gets a copy-on-write page. */ | 42 | err = vm_insert_page(vma, vma->vm_start, ctrl); |
50 | err = remap_pfn_range(vma, vma->vm_start, pfn, PAGE_SIZE, PAGE_SHARED); | ||
51 | 43 | ||
52 | if (err) | 44 | if (err) |
53 | TRACE_CUR(CTRL_NAME ": remap_pfn_range() failed (%d)\n", err); | 45 | TRACE_CUR(CTRL_NAME ": vm_insert_page() failed (%d)\n", err); |
54 | 46 | ||
55 | return err; | 47 | return err; |
56 | } | 48 | } |
@@ -63,19 +55,19 @@ static void litmus_ctrl_vm_close(struct vm_area_struct* vma) | |||
63 | TRACE_CUR(CTRL_NAME | 55 | TRACE_CUR(CTRL_NAME |
64 | ": %p:%p vma:%p vma->vm_private_data:%p closed.\n", | 56 | ": %p:%p vma:%p vma->vm_private_data:%p closed.\n", |
65 | (void*) vma->vm_start, (void*) vma->vm_end, vma, | 57 | (void*) vma->vm_start, (void*) vma->vm_end, vma, |
66 | vma->vm_private_data, current->comm, | 58 | vma->vm_private_data); |
67 | current->pid); | ||
68 | } | 59 | } |
69 | 60 | ||
70 | static int litmus_ctrl_vm_fault(struct vm_area_struct* vma, | 61 | static int litmus_ctrl_vm_fault(struct vm_area_struct* vma, |
71 | struct vm_fault* vmf) | 62 | struct vm_fault* vmf) |
72 | { | 63 | { |
73 | /* This function should never be called, since | 64 | TRACE_CUR("%s flags=0x%x (off:%ld)\n", __FUNCTION__, |
74 | * all pages should have been mapped by mmap() | 65 | vma->vm_flags, vmf->pgoff); |
75 | * already. */ | 66 | |
76 | TRACE_CUR("%s flags=0x%x\n", __FUNCTION__, vma->vm_flags); | 67 | /* This function should never be called, since all pages should have |
68 | * been mapped by mmap() already. */ | ||
69 | WARN_ONCE(1, "Page faults should be impossible in the control page\n"); | ||
77 | 70 | ||
78 | /* nope, you only get one page */ | ||
79 | return VM_FAULT_SIGBUS; | 71 | return VM_FAULT_SIGBUS; |
80 | } | 72 | } |
81 | 73 | ||
@@ -103,9 +95,16 @@ static int litmus_ctrl_mmap(struct file* filp, struct vm_area_struct* vma) | |||
103 | return -EINVAL; | 95 | return -EINVAL; |
104 | 96 | ||
105 | vma->vm_ops = &litmus_ctrl_vm_ops; | 97 | vma->vm_ops = &litmus_ctrl_vm_ops; |
106 | /* this mapping should not be kept across forks, | 98 | /* This mapping should not be kept across forks, |
107 | * and cannot be expanded */ | 99 | * cannot be expanded, and is not a "normal" page. */ |
108 | vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND; | 100 | vma->vm_flags |= VM_DONTCOPY | VM_DONTEXPAND | VM_IO; |
101 | |||
102 | /* We don't want the first write access to trigger a "minor" page fault | ||
103 | * to mark the page as dirty. This is transient, private memory, we | ||
104 | * don't care if it was touched or not. __S011 means RW access, but not | ||
105 | * execute, and avoids copy-on-write behavior. | ||
106 | * See protection_map in mmap.c. */ | ||
107 | vma->vm_page_prot = __S011; | ||
109 | 108 | ||
110 | err = alloc_ctrl_page(current); | 109 | err = alloc_ctrl_page(current); |
111 | if (!err) | 110 | if (!err) |
diff --git a/litmus/fdso.c b/litmus/fdso.c index aa7b384264e3..cd85b9cd9a0a 100644 --- a/litmus/fdso.c +++ b/litmus/fdso.c | |||
@@ -23,6 +23,10 @@ extern struct fdso_ops generic_lock_ops; | |||
23 | static const struct fdso_ops* fdso_ops[] = { | 23 | static const struct fdso_ops* fdso_ops[] = { |
24 | &generic_lock_ops, /* FMLP_SEM */ | 24 | &generic_lock_ops, /* FMLP_SEM */ |
25 | &generic_lock_ops, /* SRP_SEM */ | 25 | &generic_lock_ops, /* SRP_SEM */ |
26 | &generic_lock_ops, /* MPCP_SEM */ | ||
27 | &generic_lock_ops, /* MPCP_VS_SEM */ | ||
28 | &generic_lock_ops, /* DPCP_SEM */ | ||
29 | &generic_lock_ops, /* PCP_SEM */ | ||
26 | }; | 30 | }; |
27 | 31 | ||
28 | static int fdso_create(void** obj_ref, obj_type_t type, void* __user config) | 32 | static int fdso_create(void** obj_ref, obj_type_t type, void* __user config) |
diff --git a/litmus/fp_common.c b/litmus/fp_common.c new file mode 100644 index 000000000000..31fc2db20adf --- /dev/null +++ b/litmus/fp_common.c | |||
@@ -0,0 +1,119 @@ | |||
1 | /* | ||
2 | * litmus/fp_common.c | ||
3 | * | ||
4 | * Common functions for fixed-priority scheduler. | ||
5 | */ | ||
6 | |||
7 | #include <linux/percpu.h> | ||
8 | #include <linux/sched.h> | ||
9 | #include <linux/list.h> | ||
10 | |||
11 | #include <litmus/litmus.h> | ||
12 | #include <litmus/sched_plugin.h> | ||
13 | #include <litmus/sched_trace.h> | ||
14 | |||
15 | #include <litmus/fp_common.h> | ||
16 | |||
17 | /* fp_higher_prio - returns true if first has a higher static priority | ||
18 | * than second. Deadline ties are broken by PID. | ||
19 | * | ||
20 | * both first and second may be NULL | ||
21 | */ | ||
22 | int fp_higher_prio(struct task_struct* first, | ||
23 | struct task_struct* second) | ||
24 | { | ||
25 | struct task_struct *first_task = first; | ||
26 | struct task_struct *second_task = second; | ||
27 | |||
28 | /* There is no point in comparing a task to itself. */ | ||
29 | if (unlikely(first && first == second)) { | ||
30 | TRACE_TASK(first, | ||
31 | "WARNING: pointless FP priority comparison.\n"); | ||
32 | return 0; | ||
33 | } | ||
34 | |||
35 | |||
36 | /* check for NULL tasks */ | ||
37 | if (!first || !second) | ||
38 | return first && !second; | ||
39 | |||
40 | #ifdef CONFIG_LITMUS_LOCKING | ||
41 | |||
42 | /* Check for inherited priorities. Change task | ||
43 | * used for comparison in such a case. | ||
44 | */ | ||
45 | if (unlikely(first->rt_param.inh_task)) | ||
46 | first_task = first->rt_param.inh_task; | ||
47 | if (unlikely(second->rt_param.inh_task)) | ||
48 | second_task = second->rt_param.inh_task; | ||
49 | |||
50 | /* Check for priority boosting. Tie-break by start of boosting. | ||
51 | */ | ||
52 | if (unlikely(is_priority_boosted(first_task))) { | ||
53 | /* first_task is boosted, how about second_task? */ | ||
54 | if (!is_priority_boosted(second_task) || | ||
55 | lt_before(get_boost_start(first_task), | ||
56 | get_boost_start(second_task))) | ||
57 | return 1; | ||
58 | else | ||
59 | return 0; | ||
60 | } else if (unlikely(is_priority_boosted(second_task))) | ||
61 | /* second_task is boosted, first is not*/ | ||
62 | return 0; | ||
63 | |||
64 | #endif | ||
65 | |||
66 | |||
67 | return !is_realtime(second_task) || | ||
68 | |||
69 | get_priority(first_task) < get_priority(second_task) || | ||
70 | |||
71 | /* Break by PID. | ||
72 | */ | ||
73 | (get_priority(first_task) == get_priority(second_task) && | ||
74 | (first_task->pid < second_task->pid || | ||
75 | |||
76 | /* If the PIDs are the same then the task with the inherited | ||
77 | * priority wins. | ||
78 | */ | ||
79 | (first_task->pid == second_task->pid && | ||
80 | !second->rt_param.inh_task))); | ||
81 | } | ||
82 | |||
83 | int fp_ready_order(struct bheap_node* a, struct bheap_node* b) | ||
84 | { | ||
85 | return fp_higher_prio(bheap2task(a), bheap2task(b)); | ||
86 | } | ||
87 | |||
88 | void fp_domain_init(rt_domain_t* rt, check_resched_needed_t resched, | ||
89 | release_jobs_t release) | ||
90 | { | ||
91 | rt_domain_init(rt, fp_ready_order, resched, release); | ||
92 | } | ||
93 | |||
94 | /* need_to_preempt - check whether the task t needs to be preempted | ||
95 | */ | ||
96 | int fp_preemption_needed(struct fp_prio_queue *q, struct task_struct *t) | ||
97 | { | ||
98 | struct task_struct *pending; | ||
99 | |||
100 | pending = fp_prio_peek(q); | ||
101 | |||
102 | if (!pending) | ||
103 | return 0; | ||
104 | if (!t) | ||
105 | return 1; | ||
106 | |||
107 | /* make sure to get non-rt stuff out of the way */ | ||
108 | return !is_realtime(t) || fp_higher_prio(pending, t); | ||
109 | } | ||
110 | |||
111 | void fp_prio_queue_init(struct fp_prio_queue* q) | ||
112 | { | ||
113 | int i; | ||
114 | |||
115 | for (i = 0; i < FP_PRIO_BIT_WORDS; i++) | ||
116 | q->bitmask[i] = 0; | ||
117 | for (i = 0; i < LITMUS_MAX_PRIORITY; i++) | ||
118 | bheap_init(&q->queue[i]); | ||
119 | } | ||
diff --git a/litmus/jobs.c b/litmus/jobs.c index 36e314625d86..bc8246572e54 100644 --- a/litmus/jobs.c +++ b/litmus/jobs.c | |||
@@ -6,13 +6,13 @@ | |||
6 | #include <litmus/litmus.h> | 6 | #include <litmus/litmus.h> |
7 | #include <litmus/jobs.h> | 7 | #include <litmus/jobs.h> |
8 | 8 | ||
9 | void prepare_for_next_period(struct task_struct *t) | 9 | static inline void setup_release(struct task_struct *t, lt_t release) |
10 | { | 10 | { |
11 | BUG_ON(!t); | ||
12 | /* prepare next release */ | 11 | /* prepare next release */ |
13 | t->rt_param.job_params.release = t->rt_param.job_params.deadline; | 12 | t->rt_param.job_params.release = release; |
14 | t->rt_param.job_params.deadline += get_rt_period(t); | 13 | t->rt_param.job_params.deadline = release + get_rt_relative_deadline(t); |
15 | t->rt_param.job_params.exec_time = 0; | 14 | t->rt_param.job_params.exec_time = 0; |
15 | |||
16 | /* update job sequence number */ | 16 | /* update job sequence number */ |
17 | t->rt_param.job_params.job_no++; | 17 | t->rt_param.job_params.job_no++; |
18 | 18 | ||
@@ -20,10 +20,16 @@ void prepare_for_next_period(struct task_struct *t) | |||
20 | t->rt.time_slice = 1; | 20 | t->rt.time_slice = 1; |
21 | } | 21 | } |
22 | 22 | ||
23 | void prepare_for_next_period(struct task_struct *t) | ||
24 | { | ||
25 | BUG_ON(!t); | ||
26 | setup_release(t, get_release(t) + get_rt_period(t)); | ||
27 | } | ||
28 | |||
23 | void release_at(struct task_struct *t, lt_t start) | 29 | void release_at(struct task_struct *t, lt_t start) |
24 | { | 30 | { |
25 | t->rt_param.job_params.deadline = start; | 31 | BUG_ON(!t); |
26 | prepare_for_next_period(t); | 32 | setup_release(t, start); |
27 | set_rt_flags(t, RT_F_RUNNING); | 33 | set_rt_flags(t, RT_F_RUNNING); |
28 | } | 34 | } |
29 | 35 | ||
diff --git a/litmus/litmus.c b/litmus/litmus.c index 301390148d02..81384327e850 100644 --- a/litmus/litmus.c +++ b/litmus/litmus.c | |||
@@ -102,21 +102,25 @@ asmlinkage long sys_set_rt_task_param(pid_t pid, struct rt_task __user * param) | |||
102 | goto out_unlock; | 102 | goto out_unlock; |
103 | } | 103 | } |
104 | 104 | ||
105 | /* set relative deadline to be implicit if left unspecified */ | ||
106 | if (tp.relative_deadline == 0) | ||
107 | tp.relative_deadline = tp.period; | ||
108 | |||
105 | if (tp.exec_cost <= 0) | 109 | if (tp.exec_cost <= 0) |
106 | goto out_unlock; | 110 | goto out_unlock; |
107 | if (tp.period <= 0) | 111 | if (tp.period <= 0) |
108 | goto out_unlock; | 112 | goto out_unlock; |
109 | if (!cpu_online(tp.cpu)) | 113 | if (!cpu_online(tp.cpu)) |
110 | goto out_unlock; | 114 | goto out_unlock; |
111 | if (tp.period < tp.exec_cost) | 115 | if (min(tp.relative_deadline, tp.period) < tp.exec_cost) /*density check*/ |
112 | { | 116 | { |
113 | printk(KERN_INFO "litmus: real-time task %d rejected " | 117 | printk(KERN_INFO "litmus: real-time task %d rejected " |
114 | "because wcet > period\n", pid); | 118 | "because task density > 1.0\n", pid); |
115 | goto out_unlock; | 119 | goto out_unlock; |
116 | } | 120 | } |
117 | if ( tp.cls != RT_CLASS_HARD && | 121 | if (tp.cls != RT_CLASS_HARD && |
118 | tp.cls != RT_CLASS_SOFT && | 122 | tp.cls != RT_CLASS_SOFT && |
119 | tp.cls != RT_CLASS_BEST_EFFORT) | 123 | tp.cls != RT_CLASS_BEST_EFFORT) |
120 | { | 124 | { |
121 | printk(KERN_INFO "litmus: real-time task %d rejected " | 125 | printk(KERN_INFO "litmus: real-time task %d rejected " |
122 | "because its class is invalid\n", pid); | 126 | "because its class is invalid\n", pid); |
@@ -321,11 +325,14 @@ long litmus_admit_task(struct task_struct* tsk) | |||
321 | 325 | ||
322 | BUG_ON(is_realtime(tsk)); | 326 | BUG_ON(is_realtime(tsk)); |
323 | 327 | ||
324 | if (get_rt_period(tsk) == 0 || | 328 | if (get_rt_relative_deadline(tsk) == 0 || |
325 | get_exec_cost(tsk) > get_rt_period(tsk)) { | 329 | get_exec_cost(tsk) > |
326 | TRACE_TASK(tsk, "litmus admit: invalid task parameters " | 330 | min(get_rt_relative_deadline(tsk), get_rt_period(tsk)) ) { |
327 | "(%lu, %lu)\n", | 331 | TRACE_TASK(tsk, |
328 | get_exec_cost(tsk), get_rt_period(tsk)); | 332 | "litmus admit: invalid task parameters " |
333 | "(e = %lu, p = %lu, d = %lu)\n", | ||
334 | get_exec_cost(tsk), get_rt_period(tsk), | ||
335 | get_rt_relative_deadline(tsk)); | ||
329 | retval = -EINVAL; | 336 | retval = -EINVAL; |
330 | goto out; | 337 | goto out; |
331 | } | 338 | } |
diff --git a/litmus/locking.c b/litmus/locking.c index 0c1aa6aa40b7..ca5a073a989e 100644 --- a/litmus/locking.c +++ b/litmus/locking.c | |||
@@ -4,6 +4,7 @@ | |||
4 | 4 | ||
5 | #include <litmus/sched_plugin.h> | 5 | #include <litmus/sched_plugin.h> |
6 | #include <litmus/trace.h> | 6 | #include <litmus/trace.h> |
7 | #include <litmus/wait.h> | ||
7 | 8 | ||
8 | static int create_generic_lock(void** obj_ref, obj_type_t type, void* __user arg); | 9 | static int create_generic_lock(void** obj_ref, obj_type_t type, void* __user arg); |
9 | static int open_generic_lock(struct od_table_entry* entry, void* __user arg); | 10 | static int open_generic_lock(struct od_table_entry* entry, void* __user arg); |
@@ -121,6 +122,37 @@ struct task_struct* __waitqueue_remove_first(wait_queue_head_t *wq) | |||
121 | return(t); | 122 | return(t); |
122 | } | 123 | } |
123 | 124 | ||
125 | unsigned int __add_wait_queue_prio_exclusive( | ||
126 | wait_queue_head_t* head, | ||
127 | prio_wait_queue_t *new) | ||
128 | { | ||
129 | struct list_head *pos; | ||
130 | unsigned int passed = 0; | ||
131 | |||
132 | new->wq.flags |= WQ_FLAG_EXCLUSIVE; | ||
133 | |||
134 | /* find a spot where the new entry is less than the next */ | ||
135 | list_for_each(pos, &head->task_list) { | ||
136 | prio_wait_queue_t* queued = list_entry(pos, prio_wait_queue_t, | ||
137 | wq.task_list); | ||
138 | |||
139 | if (unlikely(lt_before(new->priority, queued->priority) || | ||
140 | (new->priority == queued->priority && | ||
141 | new->tie_breaker < queued->tie_breaker))) { | ||
142 | /* pos is not less than new, thus insert here */ | ||
143 | __list_add(&new->wq.task_list, pos->prev, pos); | ||
144 | goto out; | ||
145 | } | ||
146 | passed++; | ||
147 | } | ||
148 | |||
149 | /* if we get to this point either the list is empty or every entry | ||
150 | * queued element is less than new. | ||
151 | * Let's add new to the end. */ | ||
152 | list_add_tail(&new->wq.task_list, &head->task_list); | ||
153 | out: | ||
154 | return passed; | ||
155 | } | ||
124 | 156 | ||
125 | #else | 157 | #else |
126 | 158 | ||
diff --git a/litmus/rt_domain.c b/litmus/rt_domain.c index d405854cd39c..d0b796611bea 100644 --- a/litmus/rt_domain.c +++ b/litmus/rt_domain.c | |||
@@ -300,9 +300,11 @@ void rt_domain_init(rt_domain_t *rt, | |||
300 | */ | 300 | */ |
301 | void __add_ready(rt_domain_t* rt, struct task_struct *new) | 301 | void __add_ready(rt_domain_t* rt, struct task_struct *new) |
302 | { | 302 | { |
303 | TRACE("rt: adding %s/%d (%llu, %llu) rel=%llu to ready queue at %llu\n", | 303 | TRACE("rt: adding %s/%d (%llu, %llu, %llu) rel=%llu " |
304 | new->comm, new->pid, get_exec_cost(new), get_rt_period(new), | 304 | "to ready queue at %llu\n", |
305 | get_release(new), litmus_clock()); | 305 | new->comm, new->pid, |
306 | get_exec_cost(new), get_rt_period(new), get_rt_relative_deadline(new), | ||
307 | get_release(new), litmus_clock()); | ||
306 | 308 | ||
307 | BUG_ON(bheap_node_in_heap(tsk_rt(new)->heap_node)); | 309 | BUG_ON(bheap_node_in_heap(tsk_rt(new)->heap_node)); |
308 | 310 | ||
diff --git a/litmus/sched_cedf.c b/litmus/sched_cedf.c index 480c62bc895b..b0c16e34d2c5 100644 --- a/litmus/sched_cedf.c +++ b/litmus/sched_cedf.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <litmus/litmus.h> | 35 | #include <litmus/litmus.h> |
36 | #include <litmus/jobs.h> | 36 | #include <litmus/jobs.h> |
37 | #include <litmus/preempt.h> | 37 | #include <litmus/preempt.h> |
38 | #include <litmus/budget.h> | ||
38 | #include <litmus/sched_plugin.h> | 39 | #include <litmus/sched_plugin.h> |
39 | #include <litmus/edf_common.h> | 40 | #include <litmus/edf_common.h> |
40 | #include <litmus/sched_trace.h> | 41 | #include <litmus/sched_trace.h> |
@@ -304,11 +305,11 @@ static void check_for_preemptions(cedf_domain_t *cluster) | |||
304 | &per_cpu(cedf_cpu_entries, task_cpu(task))); | 305 | &per_cpu(cedf_cpu_entries, task_cpu(task))); |
305 | if(affinity) | 306 | if(affinity) |
306 | last = affinity; | 307 | last = affinity; |
307 | else if(last->linked) | 308 | else if(requeue_preempted_job(last->linked)) |
308 | requeue(last->linked); | 309 | requeue(last->linked); |
309 | } | 310 | } |
310 | #else | 311 | #else |
311 | if (last->linked) | 312 | if (requeue_preempted_job(last->linked)) |
312 | requeue(last->linked); | 313 | requeue(last->linked); |
313 | #endif | 314 | #endif |
314 | link_task_to_cpu(task, last); | 315 | link_task_to_cpu(task, last); |
@@ -478,9 +479,9 @@ static struct task_struct* cedf_schedule(struct task_struct * prev) | |||
478 | /* Any task that is preemptable and either exhausts its execution | 479 | /* Any task that is preemptable and either exhausts its execution |
479 | * budget or wants to sleep completes. We may have to reschedule after | 480 | * budget or wants to sleep completes. We may have to reschedule after |
480 | * this. Don't do a job completion if we block (can't have timers running | 481 | * this. Don't do a job completion if we block (can't have timers running |
481 | * for blocked jobs). Preemption go first for the same reason. | 482 | * for blocked jobs). |
482 | */ | 483 | */ |
483 | if (!np && (out_of_time || sleep) && !blocks && !preempt) | 484 | if (!np && (out_of_time || sleep) && !blocks) |
484 | job_completion(entry->scheduled, !sleep); | 485 | job_completion(entry->scheduled, !sleep); |
485 | 486 | ||
486 | /* Link pending task if we became unlinked. | 487 | /* Link pending task if we became unlinked. |
diff --git a/litmus/sched_gsn_edf.c b/litmus/sched_gsn_edf.c index 6ed504f4750e..c3344b9d288f 100644 --- a/litmus/sched_gsn_edf.c +++ b/litmus/sched_gsn_edf.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <litmus/trace.h> | 21 | #include <litmus/trace.h> |
22 | 22 | ||
23 | #include <litmus/preempt.h> | 23 | #include <litmus/preempt.h> |
24 | #include <litmus/budget.h> | ||
24 | 25 | ||
25 | #include <litmus/bheap.h> | 26 | #include <litmus/bheap.h> |
26 | 27 | ||
@@ -296,11 +297,11 @@ static void check_for_preemptions(void) | |||
296 | &per_cpu(gsnedf_cpu_entries, task_cpu(task))); | 297 | &per_cpu(gsnedf_cpu_entries, task_cpu(task))); |
297 | if (affinity) | 298 | if (affinity) |
298 | last = affinity; | 299 | last = affinity; |
299 | else if (last->linked) | 300 | else if (requeue_preempted_job(last->linked)) |
300 | requeue(last->linked); | 301 | requeue(last->linked); |
301 | } | 302 | } |
302 | #else | 303 | #else |
303 | if (last->linked) | 304 | if (requeue_preempted_job(last->linked)) |
304 | requeue(last->linked); | 305 | requeue(last->linked); |
305 | #endif | 306 | #endif |
306 | 307 | ||
@@ -426,9 +427,8 @@ static struct task_struct* gsnedf_schedule(struct task_struct * prev) | |||
426 | /* (0) Determine state */ | 427 | /* (0) Determine state */ |
427 | exists = entry->scheduled != NULL; | 428 | exists = entry->scheduled != NULL; |
428 | blocks = exists && !is_running(entry->scheduled); | 429 | blocks = exists && !is_running(entry->scheduled); |
429 | out_of_time = exists && | 430 | out_of_time = exists && budget_enforced(entry->scheduled) |
430 | budget_enforced(entry->scheduled) && | 431 | && budget_exhausted(entry->scheduled); |
431 | budget_exhausted(entry->scheduled); | ||
432 | np = exists && is_np(entry->scheduled); | 432 | np = exists && is_np(entry->scheduled); |
433 | sleep = exists && get_rt_flags(entry->scheduled) == RT_F_SLEEP; | 433 | sleep = exists && get_rt_flags(entry->scheduled) == RT_F_SLEEP; |
434 | preempt = entry->scheduled != entry->linked; | 434 | preempt = entry->scheduled != entry->linked; |
@@ -466,9 +466,9 @@ static struct task_struct* gsnedf_schedule(struct task_struct * prev) | |||
466 | /* Any task that is preemptable and either exhausts its execution | 466 | /* Any task that is preemptable and either exhausts its execution |
467 | * budget or wants to sleep completes. We may have to reschedule after | 467 | * budget or wants to sleep completes. We may have to reschedule after |
468 | * this. Don't do a job completion if we block (can't have timers running | 468 | * this. Don't do a job completion if we block (can't have timers running |
469 | * for blocked jobs). Preemption go first for the same reason. | 469 | * for blocked jobs). |
470 | */ | 470 | */ |
471 | if (!np && (out_of_time || sleep) && !blocks && !preempt) | 471 | if (!np && (out_of_time || sleep) && !blocks) |
472 | job_completion(entry->scheduled, !sleep); | 472 | job_completion(entry->scheduled, !sleep); |
473 | 473 | ||
474 | /* Link pending task if we became unlinked. | 474 | /* Link pending task if we became unlinked. |
diff --git a/litmus/sched_pfair.c b/litmus/sched_pfair.c index 16f1065bbdca..72c06a492ef9 100644 --- a/litmus/sched_pfair.c +++ b/litmus/sched_pfair.c | |||
@@ -850,6 +850,13 @@ static long pfair_admit_task(struct task_struct* t) | |||
850 | cpu_cluster(pstate[task_cpu(t)])) | 850 | cpu_cluster(pstate[task_cpu(t)])) |
851 | return -EINVAL; | 851 | return -EINVAL; |
852 | 852 | ||
853 | if (get_rt_period(t) != get_rt_relative_deadline(t)) { | ||
854 | printk(KERN_INFO "%s: Admission rejected. " | ||
855 | "Only implicit deadlines are currently supported.\n", | ||
856 | litmus->plugin_name); | ||
857 | return -EINVAL; | ||
858 | } | ||
859 | |||
853 | /* Pfair is a tick-based method, so the time | 860 | /* Pfair is a tick-based method, so the time |
854 | * of interest is jiffies. Calculate tick-based | 861 | * of interest is jiffies. Calculate tick-based |
855 | * times for everything. | 862 | * times for everything. |
diff --git a/litmus/sched_pfp.c b/litmus/sched_pfp.c new file mode 100644 index 000000000000..62be699629b1 --- /dev/null +++ b/litmus/sched_pfp.c | |||
@@ -0,0 +1,1685 @@ | |||
1 | /* | ||
2 | * litmus/sched_pfp.c | ||
3 | * | ||
4 | * Implementation of partitioned fixed-priority scheduling. | ||
5 | * Based on PSN-EDF. | ||
6 | */ | ||
7 | |||
8 | #include <linux/percpu.h> | ||
9 | #include <linux/sched.h> | ||
10 | #include <linux/list.h> | ||
11 | #include <linux/spinlock.h> | ||
12 | #include <linux/module.h> | ||
13 | |||
14 | #include <litmus/litmus.h> | ||
15 | #include <litmus/wait.h> | ||
16 | #include <litmus/jobs.h> | ||
17 | #include <litmus/preempt.h> | ||
18 | #include <litmus/fp_common.h> | ||
19 | #include <litmus/sched_plugin.h> | ||
20 | #include <litmus/sched_trace.h> | ||
21 | #include <litmus/trace.h> | ||
22 | #include <litmus/budget.h> | ||
23 | |||
24 | #include <linux/uaccess.h> | ||
25 | |||
26 | |||
27 | typedef struct { | ||
28 | rt_domain_t domain; | ||
29 | struct fp_prio_queue ready_queue; | ||
30 | int cpu; | ||
31 | struct task_struct* scheduled; /* only RT tasks */ | ||
32 | /* | ||
33 | * scheduling lock slock | ||
34 | * protects the domain and serializes scheduling decisions | ||
35 | */ | ||
36 | #define slock domain.ready_lock | ||
37 | |||
38 | } pfp_domain_t; | ||
39 | |||
40 | DEFINE_PER_CPU(pfp_domain_t, pfp_domains); | ||
41 | |||
42 | pfp_domain_t* pfp_doms[NR_CPUS]; | ||
43 | |||
44 | #define local_pfp (&__get_cpu_var(pfp_domains)) | ||
45 | #define remote_dom(cpu) (&per_cpu(pfp_domains, cpu).domain) | ||
46 | #define remote_pfp(cpu) (&per_cpu(pfp_domains, cpu)) | ||
47 | #define task_dom(task) remote_dom(get_partition(task)) | ||
48 | #define task_pfp(task) remote_pfp(get_partition(task)) | ||
49 | |||
50 | /* we assume the lock is being held */ | ||
51 | static void preempt(pfp_domain_t *pfp) | ||
52 | { | ||
53 | preempt_if_preemptable(pfp->scheduled, pfp->cpu); | ||
54 | } | ||
55 | |||
56 | static unsigned int priority_index(struct task_struct* t) | ||
57 | { | ||
58 | #ifdef CONFIG_LOCKING | ||
59 | if (unlikely(t->rt_param.inh_task)) | ||
60 | /* use effective priority */ | ||
61 | t = t->rt_param.inh_task; | ||
62 | |||
63 | if (is_priority_boosted(t)) { | ||
64 | /* zero is reserved for priority-boosted tasks */ | ||
65 | return 0; | ||
66 | } else | ||
67 | #endif | ||
68 | return get_priority(t); | ||
69 | } | ||
70 | |||
71 | |||
72 | static void pfp_release_jobs(rt_domain_t* rt, struct bheap* tasks) | ||
73 | { | ||
74 | pfp_domain_t *pfp = container_of(rt, pfp_domain_t, domain); | ||
75 | unsigned long flags; | ||
76 | struct task_struct* t; | ||
77 | struct bheap_node* hn; | ||
78 | |||
79 | raw_spin_lock_irqsave(&pfp->slock, flags); | ||
80 | |||
81 | while (!bheap_empty(tasks)) { | ||
82 | hn = bheap_take(fp_ready_order, tasks); | ||
83 | t = bheap2task(hn); | ||
84 | TRACE_TASK(t, "released (part:%d prio:%d)\n", | ||
85 | get_partition(t), get_priority(t)); | ||
86 | fp_prio_add(&pfp->ready_queue, t, priority_index(t)); | ||
87 | } | ||
88 | |||
89 | /* do we need to preempt? */ | ||
90 | if (fp_higher_prio(fp_prio_peek(&pfp->ready_queue), pfp->scheduled)) { | ||
91 | TRACE_CUR("preempted by new release\n"); | ||
92 | preempt(pfp); | ||
93 | } | ||
94 | |||
95 | raw_spin_unlock_irqrestore(&pfp->slock, flags); | ||
96 | } | ||
97 | |||
98 | static void pfp_domain_init(pfp_domain_t* pfp, | ||
99 | int cpu) | ||
100 | { | ||
101 | fp_domain_init(&pfp->domain, NULL, pfp_release_jobs); | ||
102 | pfp->cpu = cpu; | ||
103 | pfp->scheduled = NULL; | ||
104 | fp_prio_queue_init(&pfp->ready_queue); | ||
105 | } | ||
106 | |||
107 | static void requeue(struct task_struct* t, pfp_domain_t *pfp) | ||
108 | { | ||
109 | if (t->state != TASK_RUNNING) | ||
110 | TRACE_TASK(t, "requeue: !TASK_RUNNING\n"); | ||
111 | |||
112 | set_rt_flags(t, RT_F_RUNNING); | ||
113 | if (is_released(t, litmus_clock())) | ||
114 | fp_prio_add(&pfp->ready_queue, t, priority_index(t)); | ||
115 | else | ||
116 | add_release(&pfp->domain, t); /* it has got to wait */ | ||
117 | } | ||
118 | |||
119 | static void job_completion(struct task_struct* t, int forced) | ||
120 | { | ||
121 | sched_trace_task_completion(t,forced); | ||
122 | TRACE_TASK(t, "job_completion().\n"); | ||
123 | |||
124 | set_rt_flags(t, RT_F_SLEEP); | ||
125 | prepare_for_next_period(t); | ||
126 | } | ||
127 | |||
128 | static void pfp_tick(struct task_struct *t) | ||
129 | { | ||
130 | pfp_domain_t *pfp = local_pfp; | ||
131 | |||
132 | /* Check for inconsistency. We don't need the lock for this since | ||
133 | * ->scheduled is only changed in schedule, which obviously is not | ||
134 | * executing in parallel on this CPU | ||
135 | */ | ||
136 | BUG_ON(is_realtime(t) && t != pfp->scheduled); | ||
137 | |||
138 | if (is_realtime(t) && budget_enforced(t) && budget_exhausted(t)) { | ||
139 | if (!is_np(t)) { | ||
140 | litmus_reschedule_local(); | ||
141 | TRACE("pfp_scheduler_tick: " | ||
142 | "%d is preemptable " | ||
143 | " => FORCE_RESCHED\n", t->pid); | ||
144 | } else if (is_user_np(t)) { | ||
145 | TRACE("pfp_scheduler_tick: " | ||
146 | "%d is non-preemptable, " | ||
147 | "preemption delayed.\n", t->pid); | ||
148 | request_exit_np(t); | ||
149 | } | ||
150 | } | ||
151 | } | ||
152 | |||
153 | static struct task_struct* pfp_schedule(struct task_struct * prev) | ||
154 | { | ||
155 | pfp_domain_t* pfp = local_pfp; | ||
156 | struct task_struct* next; | ||
157 | |||
158 | int out_of_time, sleep, preempt, np, exists, blocks, resched, migrate; | ||
159 | |||
160 | raw_spin_lock(&pfp->slock); | ||
161 | |||
162 | /* sanity checking | ||
163 | * differently from gedf, when a task exits (dead) | ||
164 | * pfp->schedule may be null and prev _is_ realtime | ||
165 | */ | ||
166 | BUG_ON(pfp->scheduled && pfp->scheduled != prev); | ||
167 | BUG_ON(pfp->scheduled && !is_realtime(prev)); | ||
168 | |||
169 | /* (0) Determine state */ | ||
170 | exists = pfp->scheduled != NULL; | ||
171 | blocks = exists && !is_running(pfp->scheduled); | ||
172 | out_of_time = exists && | ||
173 | budget_enforced(pfp->scheduled) && | ||
174 | budget_exhausted(pfp->scheduled); | ||
175 | np = exists && is_np(pfp->scheduled); | ||
176 | sleep = exists && get_rt_flags(pfp->scheduled) == RT_F_SLEEP; | ||
177 | migrate = exists && get_partition(pfp->scheduled) != pfp->cpu; | ||
178 | preempt = migrate || fp_preemption_needed(&pfp->ready_queue, prev); | ||
179 | |||
180 | /* If we need to preempt do so. | ||
181 | * The following checks set resched to 1 in case of special | ||
182 | * circumstances. | ||
183 | */ | ||
184 | resched = preempt; | ||
185 | |||
186 | /* If a task blocks we have no choice but to reschedule. | ||
187 | */ | ||
188 | if (blocks) | ||
189 | resched = 1; | ||
190 | |||
191 | /* Request a sys_exit_np() call if we would like to preempt but cannot. | ||
192 | * Multiple calls to request_exit_np() don't hurt. | ||
193 | */ | ||
194 | if (np && (out_of_time || preempt || sleep)) | ||
195 | request_exit_np(pfp->scheduled); | ||
196 | |||
197 | /* Any task that is preemptable and either exhausts its execution | ||
198 | * budget or wants to sleep completes. We may have to reschedule after | ||
199 | * this. | ||
200 | */ | ||
201 | if (!np && (out_of_time || sleep) && !blocks && !migrate) { | ||
202 | job_completion(pfp->scheduled, !sleep); | ||
203 | resched = 1; | ||
204 | } | ||
205 | |||
206 | /* The final scheduling decision. Do we need to switch for some reason? | ||
207 | * Switch if we are in RT mode and have no task or if we need to | ||
208 | * resched. | ||
209 | */ | ||
210 | next = NULL; | ||
211 | if ((!np || blocks) && (resched || !exists)) { | ||
212 | /* When preempting a task that does not block, then | ||
213 | * re-insert it into either the ready queue or the | ||
214 | * release queue (if it completed). requeue() picks | ||
215 | * the appropriate queue. | ||
216 | */ | ||
217 | if (pfp->scheduled && !blocks && !migrate) | ||
218 | requeue(pfp->scheduled, pfp); | ||
219 | next = fp_prio_take(&pfp->ready_queue); | ||
220 | } else | ||
221 | /* Only override Linux scheduler if we have a real-time task | ||
222 | * scheduled that needs to continue. | ||
223 | */ | ||
224 | if (exists) | ||
225 | next = prev; | ||
226 | |||
227 | if (next) { | ||
228 | TRACE_TASK(next, "scheduled at %llu\n", litmus_clock()); | ||
229 | set_rt_flags(next, RT_F_RUNNING); | ||
230 | } else { | ||
231 | TRACE("becoming idle at %llu\n", litmus_clock()); | ||
232 | } | ||
233 | |||
234 | pfp->scheduled = next; | ||
235 | sched_state_task_picked(); | ||
236 | raw_spin_unlock(&pfp->slock); | ||
237 | |||
238 | return next; | ||
239 | } | ||
240 | |||
241 | #ifdef CONFIG_LITMUS_LOCKING | ||
242 | |||
243 | /* prev is no longer scheduled --- see if it needs to migrate */ | ||
244 | static void pfp_finish_switch(struct task_struct *prev) | ||
245 | { | ||
246 | pfp_domain_t *to; | ||
247 | |||
248 | if (is_realtime(prev) && | ||
249 | is_running(prev) && | ||
250 | get_partition(prev) != smp_processor_id()) { | ||
251 | TRACE_TASK(prev, "needs to migrate from P%d to P%d\n", | ||
252 | smp_processor_id(), get_partition(prev)); | ||
253 | |||
254 | to = task_pfp(prev); | ||
255 | |||
256 | raw_spin_lock(&to->slock); | ||
257 | |||
258 | TRACE_TASK(prev, "adding to queue on P%d\n", to->cpu); | ||
259 | requeue(prev, to); | ||
260 | if (fp_preemption_needed(&to->ready_queue, to->scheduled)) | ||
261 | preempt(to); | ||
262 | |||
263 | raw_spin_unlock(&to->slock); | ||
264 | |||
265 | } | ||
266 | } | ||
267 | |||
268 | #endif | ||
269 | |||
270 | /* Prepare a task for running in RT mode | ||
271 | */ | ||
272 | static void pfp_task_new(struct task_struct * t, int on_rq, int running) | ||
273 | { | ||
274 | pfp_domain_t* pfp = task_pfp(t); | ||
275 | unsigned long flags; | ||
276 | |||
277 | TRACE_TASK(t, "P-FP: task new, cpu = %d\n", | ||
278 | t->rt_param.task_params.cpu); | ||
279 | |||
280 | /* setup job parameters */ | ||
281 | release_at(t, litmus_clock()); | ||
282 | |||
283 | /* The task should be running in the queue, otherwise signal | ||
284 | * code will try to wake it up with fatal consequences. | ||
285 | */ | ||
286 | raw_spin_lock_irqsave(&pfp->slock, flags); | ||
287 | if (running) { | ||
288 | /* there shouldn't be anything else running at the time */ | ||
289 | BUG_ON(pfp->scheduled); | ||
290 | pfp->scheduled = t; | ||
291 | } else { | ||
292 | requeue(t, pfp); | ||
293 | /* maybe we have to reschedule */ | ||
294 | preempt(pfp); | ||
295 | } | ||
296 | raw_spin_unlock_irqrestore(&pfp->slock, flags); | ||
297 | } | ||
298 | |||
299 | static void pfp_task_wake_up(struct task_struct *task) | ||
300 | { | ||
301 | unsigned long flags; | ||
302 | pfp_domain_t* pfp = task_pfp(task); | ||
303 | lt_t now; | ||
304 | |||
305 | TRACE_TASK(task, "wake_up at %llu\n", litmus_clock()); | ||
306 | raw_spin_lock_irqsave(&pfp->slock, flags); | ||
307 | |||
308 | #ifdef CONFIG_LITMUS_LOCKING | ||
309 | /* Should only be queued when processing a fake-wake up due to a | ||
310 | * migration-related state change. */ | ||
311 | if (unlikely(is_queued(task))) { | ||
312 | TRACE_TASK(task, "WARNING: waking task still queued. Is this right?\n"); | ||
313 | goto out_unlock; | ||
314 | } | ||
315 | #else | ||
316 | BUG_ON(is_queued(task)); | ||
317 | #endif | ||
318 | now = litmus_clock(); | ||
319 | if (is_tardy(task, now) | ||
320 | #ifdef CONFIG_LITMUS_LOCKING | ||
321 | /* We need to take suspensions because of semaphores into | ||
322 | * account! If a job resumes after being suspended due to acquiring | ||
323 | * a semaphore, it should never be treated as a new job release. | ||
324 | */ | ||
325 | && !is_priority_boosted(task) | ||
326 | #endif | ||
327 | ) { | ||
328 | /* new sporadic release */ | ||
329 | release_at(task, now); | ||
330 | sched_trace_task_release(task); | ||
331 | } | ||
332 | |||
333 | /* Only add to ready queue if it is not the currently-scheduled | ||
334 | * task. This could be the case if a task was woken up concurrently | ||
335 | * on a remote CPU before the executing CPU got around to actually | ||
336 | * de-scheduling the task, i.e., wake_up() raced with schedule() | ||
337 | * and won. Also, don't requeue if it is still queued, which can | ||
338 | * happen under the DPCP due wake-ups racing with migrations. | ||
339 | */ | ||
340 | if (pfp->scheduled != task) | ||
341 | requeue(task, pfp); | ||
342 | |||
343 | out_unlock: | ||
344 | raw_spin_unlock_irqrestore(&pfp->slock, flags); | ||
345 | TRACE_TASK(task, "wake up done\n"); | ||
346 | } | ||
347 | |||
348 | static void pfp_task_block(struct task_struct *t) | ||
349 | { | ||
350 | /* only running tasks can block, thus t is in no queue */ | ||
351 | TRACE_TASK(t, "block at %llu, state=%d\n", litmus_clock(), t->state); | ||
352 | |||
353 | BUG_ON(!is_realtime(t)); | ||
354 | |||
355 | /* If this task blocked normally, it shouldn't be queued. The exception is | ||
356 | * if this is a simulated block()/wakeup() pair from the pull-migration code path. | ||
357 | * This should only happen if the DPCP is being used. | ||
358 | */ | ||
359 | #ifdef CONFIG_LITMUS_LOCKING | ||
360 | if (unlikely(is_queued(t))) | ||
361 | TRACE_TASK(t, "WARNING: blocking task still queued. Is this right?\n"); | ||
362 | #else | ||
363 | BUG_ON(is_queued(t)); | ||
364 | #endif | ||
365 | } | ||
366 | |||
367 | static void pfp_task_exit(struct task_struct * t) | ||
368 | { | ||
369 | unsigned long flags; | ||
370 | pfp_domain_t* pfp = task_pfp(t); | ||
371 | rt_domain_t* dom; | ||
372 | |||
373 | raw_spin_lock_irqsave(&pfp->slock, flags); | ||
374 | if (is_queued(t)) { | ||
375 | BUG(); /* This currently doesn't work. */ | ||
376 | /* dequeue */ | ||
377 | dom = task_dom(t); | ||
378 | remove(dom, t); | ||
379 | } | ||
380 | if (pfp->scheduled == t) { | ||
381 | pfp->scheduled = NULL; | ||
382 | preempt(pfp); | ||
383 | } | ||
384 | TRACE_TASK(t, "RIP, now reschedule\n"); | ||
385 | |||
386 | raw_spin_unlock_irqrestore(&pfp->slock, flags); | ||
387 | } | ||
388 | |||
389 | #ifdef CONFIG_LITMUS_LOCKING | ||
390 | |||
391 | #include <litmus/fdso.h> | ||
392 | #include <litmus/srp.h> | ||
393 | |||
394 | static void fp_dequeue(pfp_domain_t* pfp, struct task_struct* t) | ||
395 | { | ||
396 | BUG_ON(pfp->scheduled == t && is_queued(t)); | ||
397 | if (is_queued(t)) | ||
398 | fp_prio_remove(&pfp->ready_queue, t, priority_index(t)); | ||
399 | } | ||
400 | |||
401 | static void fp_set_prio_inh(pfp_domain_t* pfp, struct task_struct* t, | ||
402 | struct task_struct* prio_inh) | ||
403 | { | ||
404 | int requeue; | ||
405 | |||
406 | if (!t || t->rt_param.inh_task == prio_inh) { | ||
407 | /* no update required */ | ||
408 | if (t) | ||
409 | TRACE_TASK(t, "no prio-inh update required\n"); | ||
410 | return; | ||
411 | } | ||
412 | |||
413 | requeue = is_queued(t); | ||
414 | TRACE_TASK(t, "prio-inh: is_queued:%d\n", requeue); | ||
415 | |||
416 | if (requeue) | ||
417 | /* first remove */ | ||
418 | fp_dequeue(pfp, t); | ||
419 | |||
420 | t->rt_param.inh_task = prio_inh; | ||
421 | |||
422 | if (requeue) | ||
423 | /* add again to the right queue */ | ||
424 | fp_prio_add(&pfp->ready_queue, t, priority_index(t)); | ||
425 | } | ||
426 | |||
427 | static int effective_agent_priority(int prio) | ||
428 | { | ||
429 | /* make sure agents have higher priority */ | ||
430 | return prio - LITMUS_MAX_PRIORITY; | ||
431 | } | ||
432 | |||
433 | static lt_t prio_point(int eprio) | ||
434 | { | ||
435 | /* make sure we have non-negative prio points */ | ||
436 | return eprio + LITMUS_MAX_PRIORITY; | ||
437 | } | ||
438 | |||
439 | static int prio_from_point(lt_t prio_point) | ||
440 | { | ||
441 | return ((int) prio_point) - LITMUS_MAX_PRIORITY; | ||
442 | } | ||
443 | |||
444 | static void boost_priority(struct task_struct* t, lt_t priority_point) | ||
445 | { | ||
446 | unsigned long flags; | ||
447 | pfp_domain_t* pfp = task_pfp(t); | ||
448 | |||
449 | raw_spin_lock_irqsave(&pfp->slock, flags); | ||
450 | |||
451 | |||
452 | TRACE_TASK(t, "priority boosted at %llu\n", litmus_clock()); | ||
453 | |||
454 | tsk_rt(t)->priority_boosted = 1; | ||
455 | /* tie-break by protocol-specific priority point */ | ||
456 | tsk_rt(t)->boost_start_time = priority_point; | ||
457 | |||
458 | if (pfp->scheduled != t) { | ||
459 | /* holder may be queued: first stop queue changes */ | ||
460 | raw_spin_lock(&pfp->domain.release_lock); | ||
461 | if (is_queued(t) && | ||
462 | /* If it is queued, then we need to re-order. */ | ||
463 | bheap_decrease(fp_ready_order, tsk_rt(t)->heap_node) && | ||
464 | /* If we bubbled to the top, then we need to check for preemptions. */ | ||
465 | fp_preemption_needed(&pfp->ready_queue, pfp->scheduled)) | ||
466 | preempt(pfp); | ||
467 | raw_spin_unlock(&pfp->domain.release_lock); | ||
468 | } /* else: nothing to do since the job is not queued while scheduled */ | ||
469 | |||
470 | raw_spin_unlock_irqrestore(&pfp->slock, flags); | ||
471 | } | ||
472 | |||
473 | static void unboost_priority(struct task_struct* t) | ||
474 | { | ||
475 | unsigned long flags; | ||
476 | pfp_domain_t* pfp = task_pfp(t); | ||
477 | lt_t now; | ||
478 | |||
479 | raw_spin_lock_irqsave(&pfp->slock, flags); | ||
480 | now = litmus_clock(); | ||
481 | |||
482 | /* assumption: this only happens when the job is scheduled */ | ||
483 | BUG_ON(pfp->scheduled != t); | ||
484 | |||
485 | TRACE_TASK(t, "priority restored at %llu\n", now); | ||
486 | |||
487 | /* priority boosted jobs must be scheduled */ | ||
488 | BUG_ON(pfp->scheduled != t); | ||
489 | |||
490 | tsk_rt(t)->priority_boosted = 0; | ||
491 | tsk_rt(t)->boost_start_time = 0; | ||
492 | |||
493 | /* check if this changes anything */ | ||
494 | if (fp_preemption_needed(&pfp->ready_queue, pfp->scheduled)) | ||
495 | preempt(pfp); | ||
496 | |||
497 | raw_spin_unlock_irqrestore(&pfp->slock, flags); | ||
498 | } | ||
499 | |||
500 | /* ******************** SRP support ************************ */ | ||
501 | |||
502 | static unsigned int pfp_get_srp_prio(struct task_struct* t) | ||
503 | { | ||
504 | return get_priority(t); | ||
505 | } | ||
506 | |||
507 | /* ******************** FMLP support ********************** */ | ||
508 | |||
509 | struct fmlp_semaphore { | ||
510 | struct litmus_lock litmus_lock; | ||
511 | |||
512 | /* current resource holder */ | ||
513 | struct task_struct *owner; | ||
514 | |||
515 | /* FIFO queue of waiting tasks */ | ||
516 | wait_queue_head_t wait; | ||
517 | }; | ||
518 | |||
519 | static inline struct fmlp_semaphore* fmlp_from_lock(struct litmus_lock* lock) | ||
520 | { | ||
521 | return container_of(lock, struct fmlp_semaphore, litmus_lock); | ||
522 | } | ||
523 | int pfp_fmlp_lock(struct litmus_lock* l) | ||
524 | { | ||
525 | struct task_struct* t = current; | ||
526 | struct fmlp_semaphore *sem = fmlp_from_lock(l); | ||
527 | wait_queue_t wait; | ||
528 | unsigned long flags; | ||
529 | lt_t time_of_request; | ||
530 | |||
531 | if (!is_realtime(t)) | ||
532 | return -EPERM; | ||
533 | |||
534 | spin_lock_irqsave(&sem->wait.lock, flags); | ||
535 | |||
536 | /* tie-break by this point in time */ | ||
537 | time_of_request = litmus_clock(); | ||
538 | |||
539 | /* Priority-boost ourself *before* we suspend so that | ||
540 | * our priority is boosted when we resume. */ | ||
541 | boost_priority(t, time_of_request); | ||
542 | |||
543 | if (sem->owner) { | ||
544 | /* resource is not free => must suspend and wait */ | ||
545 | |||
546 | init_waitqueue_entry(&wait, t); | ||
547 | |||
548 | /* FIXME: interruptible would be nice some day */ | ||
549 | set_task_state(t, TASK_UNINTERRUPTIBLE); | ||
550 | |||
551 | __add_wait_queue_tail_exclusive(&sem->wait, &wait); | ||
552 | |||
553 | TS_LOCK_SUSPEND; | ||
554 | |||
555 | /* release lock before sleeping */ | ||
556 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
557 | |||
558 | /* We depend on the FIFO order. Thus, we don't need to recheck | ||
559 | * when we wake up; we are guaranteed to have the lock since | ||
560 | * there is only one wake up per release. | ||
561 | */ | ||
562 | |||
563 | schedule(); | ||
564 | |||
565 | TS_LOCK_RESUME; | ||
566 | |||
567 | /* Since we hold the lock, no other task will change | ||
568 | * ->owner. We can thus check it without acquiring the spin | ||
569 | * lock. */ | ||
570 | BUG_ON(sem->owner != t); | ||
571 | } else { | ||
572 | /* it's ours now */ | ||
573 | sem->owner = t; | ||
574 | |||
575 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
576 | } | ||
577 | |||
578 | return 0; | ||
579 | } | ||
580 | |||
581 | int pfp_fmlp_unlock(struct litmus_lock* l) | ||
582 | { | ||
583 | struct task_struct *t = current, *next; | ||
584 | struct fmlp_semaphore *sem = fmlp_from_lock(l); | ||
585 | unsigned long flags; | ||
586 | int err = 0; | ||
587 | |||
588 | spin_lock_irqsave(&sem->wait.lock, flags); | ||
589 | |||
590 | if (sem->owner != t) { | ||
591 | err = -EINVAL; | ||
592 | goto out; | ||
593 | } | ||
594 | |||
595 | /* we lose the benefit of priority boosting */ | ||
596 | |||
597 | unboost_priority(t); | ||
598 | |||
599 | /* check if there are jobs waiting for this resource */ | ||
600 | next = __waitqueue_remove_first(&sem->wait); | ||
601 | if (next) { | ||
602 | /* next becomes the resouce holder */ | ||
603 | sem->owner = next; | ||
604 | |||
605 | /* Wake up next. The waiting job is already priority-boosted. */ | ||
606 | wake_up_process(next); | ||
607 | } else | ||
608 | /* resource becomes available */ | ||
609 | sem->owner = NULL; | ||
610 | |||
611 | out: | ||
612 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
613 | return err; | ||
614 | } | ||
615 | |||
616 | int pfp_fmlp_close(struct litmus_lock* l) | ||
617 | { | ||
618 | struct task_struct *t = current; | ||
619 | struct fmlp_semaphore *sem = fmlp_from_lock(l); | ||
620 | unsigned long flags; | ||
621 | |||
622 | int owner; | ||
623 | |||
624 | spin_lock_irqsave(&sem->wait.lock, flags); | ||
625 | |||
626 | owner = sem->owner == t; | ||
627 | |||
628 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
629 | |||
630 | if (owner) | ||
631 | pfp_fmlp_unlock(l); | ||
632 | |||
633 | return 0; | ||
634 | } | ||
635 | |||
636 | void pfp_fmlp_free(struct litmus_lock* lock) | ||
637 | { | ||
638 | kfree(fmlp_from_lock(lock)); | ||
639 | } | ||
640 | |||
641 | static struct litmus_lock_ops pfp_fmlp_lock_ops = { | ||
642 | .close = pfp_fmlp_close, | ||
643 | .lock = pfp_fmlp_lock, | ||
644 | .unlock = pfp_fmlp_unlock, | ||
645 | .deallocate = pfp_fmlp_free, | ||
646 | }; | ||
647 | |||
648 | static struct litmus_lock* pfp_new_fmlp(void) | ||
649 | { | ||
650 | struct fmlp_semaphore* sem; | ||
651 | |||
652 | sem = kmalloc(sizeof(*sem), GFP_KERNEL); | ||
653 | if (!sem) | ||
654 | return NULL; | ||
655 | |||
656 | sem->owner = NULL; | ||
657 | init_waitqueue_head(&sem->wait); | ||
658 | sem->litmus_lock.ops = &pfp_fmlp_lock_ops; | ||
659 | |||
660 | return &sem->litmus_lock; | ||
661 | } | ||
662 | |||
663 | /* ******************** MPCP support ********************** */ | ||
664 | |||
665 | struct mpcp_semaphore { | ||
666 | struct litmus_lock litmus_lock; | ||
667 | |||
668 | /* current resource holder */ | ||
669 | struct task_struct *owner; | ||
670 | |||
671 | /* priority queue of waiting tasks */ | ||
672 | wait_queue_head_t wait; | ||
673 | |||
674 | /* priority ceiling per cpu */ | ||
675 | unsigned int prio_ceiling[NR_CPUS]; | ||
676 | |||
677 | /* should jobs spin "virtually" for this resource? */ | ||
678 | int vspin; | ||
679 | }; | ||
680 | |||
681 | #define OMEGA_CEILING UINT_MAX | ||
682 | |||
683 | /* Since jobs spin "virtually" while waiting to acquire a lock, | ||
684 | * they first must aquire a local per-cpu resource. | ||
685 | */ | ||
686 | static DEFINE_PER_CPU(wait_queue_head_t, mpcpvs_vspin_wait); | ||
687 | static DEFINE_PER_CPU(struct task_struct*, mpcpvs_vspin); | ||
688 | |||
689 | /* called with preemptions off <=> no local modifications */ | ||
690 | static void mpcp_vspin_enter(void) | ||
691 | { | ||
692 | struct task_struct* t = current; | ||
693 | |||
694 | while (1) { | ||
695 | if (__get_cpu_var(mpcpvs_vspin) == NULL) { | ||
696 | /* good, we get to issue our request */ | ||
697 | __get_cpu_var(mpcpvs_vspin) = t; | ||
698 | break; | ||
699 | } else { | ||
700 | /* some job is spinning => enqueue in request queue */ | ||
701 | prio_wait_queue_t wait; | ||
702 | wait_queue_head_t* vspin = &__get_cpu_var(mpcpvs_vspin_wait); | ||
703 | unsigned long flags; | ||
704 | |||
705 | /* ordered by regular priority */ | ||
706 | init_prio_waitqueue_entry(&wait, t, prio_point(get_priority(t))); | ||
707 | |||
708 | spin_lock_irqsave(&vspin->lock, flags); | ||
709 | |||
710 | set_task_state(t, TASK_UNINTERRUPTIBLE); | ||
711 | |||
712 | __add_wait_queue_prio_exclusive(vspin, &wait); | ||
713 | |||
714 | spin_unlock_irqrestore(&vspin->lock, flags); | ||
715 | |||
716 | TS_LOCK_SUSPEND; | ||
717 | |||
718 | preempt_enable_no_resched(); | ||
719 | |||
720 | schedule(); | ||
721 | |||
722 | preempt_disable(); | ||
723 | |||
724 | TS_LOCK_RESUME; | ||
725 | /* Recheck if we got it --- some higher-priority process might | ||
726 | * have swooped in. */ | ||
727 | } | ||
728 | } | ||
729 | /* ok, now it is ours */ | ||
730 | } | ||
731 | |||
732 | /* called with preemptions off */ | ||
733 | static void mpcp_vspin_exit(void) | ||
734 | { | ||
735 | struct task_struct* t = current, *next; | ||
736 | unsigned long flags; | ||
737 | wait_queue_head_t* vspin = &__get_cpu_var(mpcpvs_vspin_wait); | ||
738 | |||
739 | BUG_ON(__get_cpu_var(mpcpvs_vspin) != t); | ||
740 | |||
741 | /* no spinning job */ | ||
742 | __get_cpu_var(mpcpvs_vspin) = NULL; | ||
743 | |||
744 | /* see if anyone is waiting for us to stop "spinning" */ | ||
745 | spin_lock_irqsave(&vspin->lock, flags); | ||
746 | next = __waitqueue_remove_first(vspin); | ||
747 | |||
748 | if (next) | ||
749 | wake_up_process(next); | ||
750 | |||
751 | spin_unlock_irqrestore(&vspin->lock, flags); | ||
752 | } | ||
753 | |||
754 | static inline struct mpcp_semaphore* mpcp_from_lock(struct litmus_lock* lock) | ||
755 | { | ||
756 | return container_of(lock, struct mpcp_semaphore, litmus_lock); | ||
757 | } | ||
758 | |||
759 | int pfp_mpcp_lock(struct litmus_lock* l) | ||
760 | { | ||
761 | struct task_struct* t = current; | ||
762 | struct mpcp_semaphore *sem = mpcp_from_lock(l); | ||
763 | prio_wait_queue_t wait; | ||
764 | unsigned long flags; | ||
765 | |||
766 | if (!is_realtime(t)) | ||
767 | return -EPERM; | ||
768 | |||
769 | preempt_disable(); | ||
770 | |||
771 | if (sem->vspin) | ||
772 | mpcp_vspin_enter(); | ||
773 | |||
774 | /* Priority-boost ourself *before* we suspend so that | ||
775 | * our priority is boosted when we resume. Use the priority | ||
776 | * ceiling for the local partition. */ | ||
777 | boost_priority(t, sem->prio_ceiling[get_partition(t)]); | ||
778 | |||
779 | spin_lock_irqsave(&sem->wait.lock, flags); | ||
780 | |||
781 | preempt_enable_no_resched(); | ||
782 | |||
783 | if (sem->owner) { | ||
784 | /* resource is not free => must suspend and wait */ | ||
785 | |||
786 | /* ordered by regular priority */ | ||
787 | init_prio_waitqueue_entry(&wait, t, prio_point(get_priority(t))); | ||
788 | |||
789 | /* FIXME: interruptible would be nice some day */ | ||
790 | set_task_state(t, TASK_UNINTERRUPTIBLE); | ||
791 | |||
792 | __add_wait_queue_prio_exclusive(&sem->wait, &wait); | ||
793 | |||
794 | TS_LOCK_SUSPEND; | ||
795 | |||
796 | /* release lock before sleeping */ | ||
797 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
798 | |||
799 | /* We depend on the FIFO order. Thus, we don't need to recheck | ||
800 | * when we wake up; we are guaranteed to have the lock since | ||
801 | * there is only one wake up per release. | ||
802 | */ | ||
803 | |||
804 | schedule(); | ||
805 | |||
806 | TS_LOCK_RESUME; | ||
807 | |||
808 | /* Since we hold the lock, no other task will change | ||
809 | * ->owner. We can thus check it without acquiring the spin | ||
810 | * lock. */ | ||
811 | BUG_ON(sem->owner != t); | ||
812 | } else { | ||
813 | /* it's ours now */ | ||
814 | sem->owner = t; | ||
815 | |||
816 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
817 | } | ||
818 | |||
819 | return 0; | ||
820 | } | ||
821 | |||
822 | int pfp_mpcp_unlock(struct litmus_lock* l) | ||
823 | { | ||
824 | struct task_struct *t = current, *next; | ||
825 | struct mpcp_semaphore *sem = mpcp_from_lock(l); | ||
826 | unsigned long flags; | ||
827 | int err = 0; | ||
828 | |||
829 | spin_lock_irqsave(&sem->wait.lock, flags); | ||
830 | |||
831 | if (sem->owner != t) { | ||
832 | err = -EINVAL; | ||
833 | goto out; | ||
834 | } | ||
835 | |||
836 | /* we lose the benefit of priority boosting */ | ||
837 | |||
838 | unboost_priority(t); | ||
839 | |||
840 | /* check if there are jobs waiting for this resource */ | ||
841 | next = __waitqueue_remove_first(&sem->wait); | ||
842 | if (next) { | ||
843 | /* next becomes the resouce holder */ | ||
844 | sem->owner = next; | ||
845 | |||
846 | /* Wake up next. The waiting job is already priority-boosted. */ | ||
847 | wake_up_process(next); | ||
848 | } else | ||
849 | /* resource becomes available */ | ||
850 | sem->owner = NULL; | ||
851 | |||
852 | out: | ||
853 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
854 | |||
855 | if (sem->vspin && err == 0) { | ||
856 | preempt_disable(); | ||
857 | mpcp_vspin_exit(); | ||
858 | preempt_enable(); | ||
859 | } | ||
860 | |||
861 | return err; | ||
862 | } | ||
863 | |||
864 | int pfp_mpcp_open(struct litmus_lock* l, void* config) | ||
865 | { | ||
866 | struct task_struct *t = current; | ||
867 | struct mpcp_semaphore *sem = mpcp_from_lock(l); | ||
868 | int cpu, local_cpu; | ||
869 | unsigned long flags; | ||
870 | |||
871 | if (!is_realtime(t)) | ||
872 | /* we need to know the real-time priority */ | ||
873 | return -EPERM; | ||
874 | |||
875 | local_cpu = get_partition(t); | ||
876 | |||
877 | spin_lock_irqsave(&sem->wait.lock, flags); | ||
878 | |||
879 | for (cpu = 0; cpu < NR_CPUS; cpu++) | ||
880 | if (cpu != local_cpu) | ||
881 | { | ||
882 | sem->prio_ceiling[cpu] = min(sem->prio_ceiling[cpu], | ||
883 | get_priority(t)); | ||
884 | TRACE_CUR("priority ceiling for sem %p is now %d on cpu %d\n", | ||
885 | sem, sem->prio_ceiling[cpu], cpu); | ||
886 | } | ||
887 | |||
888 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
889 | |||
890 | return 0; | ||
891 | } | ||
892 | |||
893 | int pfp_mpcp_close(struct litmus_lock* l) | ||
894 | { | ||
895 | struct task_struct *t = current; | ||
896 | struct mpcp_semaphore *sem = mpcp_from_lock(l); | ||
897 | unsigned long flags; | ||
898 | |||
899 | int owner; | ||
900 | |||
901 | spin_lock_irqsave(&sem->wait.lock, flags); | ||
902 | |||
903 | owner = sem->owner == t; | ||
904 | |||
905 | spin_unlock_irqrestore(&sem->wait.lock, flags); | ||
906 | |||
907 | if (owner) | ||
908 | pfp_mpcp_unlock(l); | ||
909 | |||
910 | return 0; | ||
911 | } | ||
912 | |||
913 | void pfp_mpcp_free(struct litmus_lock* lock) | ||
914 | { | ||
915 | kfree(mpcp_from_lock(lock)); | ||
916 | } | ||
917 | |||
918 | static struct litmus_lock_ops pfp_mpcp_lock_ops = { | ||
919 | .close = pfp_mpcp_close, | ||
920 | .lock = pfp_mpcp_lock, | ||
921 | .open = pfp_mpcp_open, | ||
922 | .unlock = pfp_mpcp_unlock, | ||
923 | .deallocate = pfp_mpcp_free, | ||
924 | }; | ||
925 | |||
926 | static struct litmus_lock* pfp_new_mpcp(int vspin) | ||
927 | { | ||
928 | struct mpcp_semaphore* sem; | ||
929 | int cpu; | ||
930 | |||
931 | sem = kmalloc(sizeof(*sem), GFP_KERNEL); | ||
932 | if (!sem) | ||
933 | return NULL; | ||
934 | |||
935 | sem->owner = NULL; | ||
936 | init_waitqueue_head(&sem->wait); | ||
937 | sem->litmus_lock.ops = &pfp_mpcp_lock_ops; | ||
938 | |||
939 | for (cpu = 0; cpu < NR_CPUS; cpu++) | ||
940 | sem->prio_ceiling[cpu] = OMEGA_CEILING; | ||
941 | |||
942 | /* mark as virtual spinning */ | ||
943 | sem->vspin = vspin; | ||
944 | |||
945 | return &sem->litmus_lock; | ||
946 | } | ||
947 | |||
948 | |||
949 | /* ******************** PCP support ********************** */ | ||
950 | |||
951 | |||
952 | struct pcp_semaphore { | ||
953 | struct litmus_lock litmus_lock; | ||
954 | |||
955 | struct list_head ceiling; | ||
956 | |||
957 | /* current resource holder */ | ||
958 | struct task_struct *owner; | ||
959 | |||
960 | /* priority ceiling --- can be negative due to DPCP support */ | ||
961 | int prio_ceiling; | ||
962 | |||
963 | /* on which processor is this PCP semaphore allocated? */ | ||
964 | int on_cpu; | ||
965 | }; | ||
966 | |||
967 | static inline struct pcp_semaphore* pcp_from_lock(struct litmus_lock* lock) | ||
968 | { | ||
969 | return container_of(lock, struct pcp_semaphore, litmus_lock); | ||
970 | } | ||
971 | |||
972 | |||
973 | struct pcp_state { | ||
974 | struct list_head system_ceiling; | ||
975 | |||
976 | /* highest-priority waiting task */ | ||
977 | struct task_struct* hp_waiter; | ||
978 | |||
979 | /* list of jobs waiting to get past the system ceiling */ | ||
980 | wait_queue_head_t ceiling_blocked; | ||
981 | }; | ||
982 | |||
983 | static void pcp_init_state(struct pcp_state* s) | ||
984 | { | ||
985 | INIT_LIST_HEAD(&s->system_ceiling); | ||
986 | s->hp_waiter = NULL; | ||
987 | init_waitqueue_head(&s->ceiling_blocked); | ||
988 | } | ||
989 | |||
990 | static DEFINE_PER_CPU(struct pcp_state, pcp_state); | ||
991 | |||
992 | /* assumes preemptions are off */ | ||
993 | static struct pcp_semaphore* pcp_get_ceiling(void) | ||
994 | { | ||
995 | struct list_head* top = __get_cpu_var(pcp_state).system_ceiling.next; | ||
996 | |||
997 | if (top) | ||
998 | return list_entry(top, struct pcp_semaphore, ceiling); | ||
999 | else | ||
1000 | return NULL; | ||
1001 | } | ||
1002 | |||
1003 | /* assumes preempt off */ | ||
1004 | static void pcp_add_ceiling(struct pcp_semaphore* sem) | ||
1005 | { | ||
1006 | struct list_head *pos; | ||
1007 | struct list_head *in_use = &__get_cpu_var(pcp_state).system_ceiling; | ||
1008 | struct pcp_semaphore* held; | ||
1009 | |||
1010 | BUG_ON(sem->on_cpu != smp_processor_id()); | ||
1011 | BUG_ON(in_list(&sem->ceiling)); | ||
1012 | |||
1013 | list_for_each(pos, in_use) { | ||
1014 | held = list_entry(pos, struct pcp_semaphore, ceiling); | ||
1015 | if (held->prio_ceiling >= sem->prio_ceiling) { | ||
1016 | __list_add(&sem->ceiling, pos->prev, pos); | ||
1017 | return; | ||
1018 | } | ||
1019 | } | ||
1020 | |||
1021 | /* we hit the end of the list */ | ||
1022 | |||
1023 | list_add_tail(&sem->ceiling, in_use); | ||
1024 | } | ||
1025 | |||
1026 | /* assumes preempt off */ | ||
1027 | static int pcp_exceeds_ceiling(struct pcp_semaphore* ceiling, | ||
1028 | struct task_struct* task, | ||
1029 | int effective_prio) | ||
1030 | { | ||
1031 | return ceiling == NULL || | ||
1032 | ceiling->prio_ceiling > effective_prio || | ||
1033 | ceiling->owner == task; | ||
1034 | } | ||
1035 | |||
1036 | /* assumes preempt off */ | ||
1037 | static void pcp_priority_inheritance(void) | ||
1038 | { | ||
1039 | unsigned long flags; | ||
1040 | pfp_domain_t* pfp = local_pfp; | ||
1041 | |||
1042 | struct pcp_semaphore* ceiling = pcp_get_ceiling(); | ||
1043 | struct task_struct *blocker, *blocked; | ||
1044 | |||
1045 | blocker = ceiling ? ceiling->owner : NULL; | ||
1046 | blocked = __get_cpu_var(pcp_state).hp_waiter; | ||
1047 | |||
1048 | raw_spin_lock_irqsave(&pfp->slock, flags); | ||
1049 | |||
1050 | /* Current is no longer inheriting anything by default. This should be | ||
1051 | * the currently scheduled job, and hence not currently queued. */ | ||
1052 | BUG_ON(current != pfp->scheduled); | ||
1053 | |||
1054 | fp_set_prio_inh(pfp, current, NULL); | ||
1055 | fp_set_prio_inh(pfp, blocked, NULL); | ||
1056 | fp_set_prio_inh(pfp, blocker, NULL); | ||
1057 | |||
1058 | |||
1059 | /* Let blocking job inherit priority of blocked job, if required. */ | ||
1060 | if (blocker && blocked && | ||
1061 | fp_higher_prio(blocked, blocker)) { | ||
1062 | TRACE_TASK(blocker, "PCP inherits from %s/%d (prio %u -> %u) \n", | ||
1063 | blocked->comm, blocked->pid, | ||
1064 | get_priority(blocker), get_priority(blocked)); | ||
1065 | fp_set_prio_inh(pfp, blocker, blocked); | ||
1066 | } | ||
1067 | |||
1068 | /* check if anything changed */ | ||
1069 | if (fp_higher_prio(fp_prio_peek(&pfp->ready_queue), pfp->scheduled)) | ||
1070 | preempt(pfp); | ||
1071 | |||
1072 | raw_spin_unlock_irqrestore(&pfp->slock, flags); | ||
1073 | } | ||
1074 | |||
1075 | /* called with preemptions off */ | ||
1076 | static void pcp_raise_ceiling(struct pcp_semaphore* sem, | ||
1077 | int effective_prio) | ||
1078 | { | ||
1079 | struct task_struct* t = current; | ||
1080 | struct pcp_semaphore* ceiling; | ||
1081 | prio_wait_queue_t wait; | ||
1082 | unsigned int waiting_higher_prio; | ||
1083 | |||
1084 | do { | ||
1085 | ceiling = pcp_get_ceiling(); | ||
1086 | if (pcp_exceeds_ceiling(ceiling, t, effective_prio)) | ||
1087 | break; | ||
1088 | |||
1089 | TRACE_CUR("PCP ceiling-blocked, wanted sem %p, but %s/%d has the ceiling \n", | ||
1090 | sem, ceiling->owner->comm, ceiling->owner->pid); | ||
1091 | |||
1092 | /* we need to wait until the ceiling is lowered */ | ||
1093 | |||
1094 | /* enqueue in priority order */ | ||
1095 | init_prio_waitqueue_entry(&wait, t, prio_point(effective_prio)); | ||
1096 | set_task_state(t, TASK_UNINTERRUPTIBLE); | ||
1097 | waiting_higher_prio = add_wait_queue_prio_exclusive( | ||
1098 | &__get_cpu_var(pcp_state).ceiling_blocked, &wait); | ||
1099 | |||
1100 | if (waiting_higher_prio == 0) { | ||
1101 | TRACE_CUR("PCP new highest-prio waiter => prio inheritance\n"); | ||
1102 | |||
1103 | /* we are the new highest-priority waiting job | ||
1104 | * => update inheritance */ | ||
1105 | __get_cpu_var(pcp_state).hp_waiter = t; | ||
1106 | pcp_priority_inheritance(); | ||
1107 | } | ||
1108 | |||
1109 | TS_LOCK_SUSPEND; | ||
1110 | |||
1111 | preempt_enable_no_resched(); | ||
1112 | schedule(); | ||
1113 | preempt_disable(); | ||
1114 | |||
1115 | /* pcp_resume_unblocked() removed us from wait queue */ | ||
1116 | |||
1117 | TS_LOCK_RESUME; | ||
1118 | } while(1); | ||
1119 | |||
1120 | TRACE_CUR("PCP got the ceiling and sem %p\n", sem); | ||
1121 | |||
1122 | /* We are good to go. The semaphore should be available. */ | ||
1123 | BUG_ON(sem->owner != NULL); | ||
1124 | |||
1125 | sem->owner = t; | ||
1126 | |||
1127 | pcp_add_ceiling(sem); | ||
1128 | } | ||
1129 | |||
1130 | static void pcp_resume_unblocked(void) | ||
1131 | { | ||
1132 | wait_queue_head_t *blocked = &__get_cpu_var(pcp_state).ceiling_blocked; | ||
1133 | unsigned long flags; | ||
1134 | prio_wait_queue_t* q; | ||
1135 | struct task_struct* t = NULL; | ||
1136 | |||
1137 | struct pcp_semaphore* ceiling = pcp_get_ceiling(); | ||
1138 | |||
1139 | spin_lock_irqsave(&blocked->lock, flags); | ||
1140 | |||
1141 | while (waitqueue_active(blocked)) { | ||
1142 | /* check first == highest-priority waiting job */ | ||
1143 | q = list_entry(blocked->task_list.next, | ||
1144 | prio_wait_queue_t, wq.task_list); | ||
1145 | t = (struct task_struct*) q->wq.private; | ||
1146 | |||
1147 | /* can it proceed now? => let it go */ | ||
1148 | if (pcp_exceeds_ceiling(ceiling, t, | ||
1149 | prio_from_point(q->priority))) { | ||
1150 | __remove_wait_queue(blocked, &q->wq); | ||
1151 | wake_up_process(t); | ||
1152 | } else { | ||
1153 | /* We are done. Update highest-priority waiter. */ | ||
1154 | __get_cpu_var(pcp_state).hp_waiter = t; | ||
1155 | goto out; | ||
1156 | } | ||
1157 | } | ||
1158 | /* If we get here, then there are no more waiting | ||
1159 | * jobs. */ | ||
1160 | __get_cpu_var(pcp_state).hp_waiter = NULL; | ||
1161 | out: | ||
1162 | spin_unlock_irqrestore(&blocked->lock, flags); | ||
1163 | } | ||
1164 | |||
1165 | /* assumes preempt off */ | ||
1166 | static void pcp_lower_ceiling(struct pcp_semaphore* sem) | ||
1167 | { | ||
1168 | BUG_ON(!in_list(&sem->ceiling)); | ||
1169 | BUG_ON(sem->owner != current); | ||
1170 | BUG_ON(sem->on_cpu != smp_processor_id()); | ||
1171 | |||
1172 | /* remove from ceiling list */ | ||
1173 | list_del(&sem->ceiling); | ||
1174 | |||
1175 | /* release */ | ||
1176 | sem->owner = NULL; | ||
1177 | |||
1178 | TRACE_CUR("PCP released sem %p\n", sem); | ||
1179 | |||
1180 | /* Wake up all ceiling-blocked jobs that now pass the ceiling. */ | ||
1181 | pcp_resume_unblocked(); | ||
1182 | |||
1183 | pcp_priority_inheritance(); | ||
1184 | } | ||
1185 | |||
1186 | static void pcp_update_prio_ceiling(struct pcp_semaphore* sem, | ||
1187 | int effective_prio) | ||
1188 | { | ||
1189 | /* This needs to be synchronized on something. | ||
1190 | * Might as well use waitqueue lock for the processor. | ||
1191 | * We assume this happens only before the task set starts execution, | ||
1192 | * (i.e., during initialization), but it may happen on multiple processors | ||
1193 | * at the same time. | ||
1194 | */ | ||
1195 | unsigned long flags; | ||
1196 | |||
1197 | struct pcp_state* s = &per_cpu(pcp_state, sem->on_cpu); | ||
1198 | |||
1199 | spin_lock_irqsave(&s->ceiling_blocked.lock, flags); | ||
1200 | |||
1201 | sem->prio_ceiling = min(sem->prio_ceiling, effective_prio); | ||
1202 | |||
1203 | spin_unlock_irqrestore(&s->ceiling_blocked.lock, flags); | ||
1204 | } | ||
1205 | |||
1206 | static void pcp_init_semaphore(struct pcp_semaphore* sem, int cpu) | ||
1207 | { | ||
1208 | sem->owner = NULL; | ||
1209 | INIT_LIST_HEAD(&sem->ceiling); | ||
1210 | sem->prio_ceiling = INT_MAX; | ||
1211 | sem->on_cpu = cpu; | ||
1212 | } | ||
1213 | |||
1214 | int pfp_pcp_lock(struct litmus_lock* l) | ||
1215 | { | ||
1216 | struct task_struct* t = current; | ||
1217 | struct pcp_semaphore *sem = pcp_from_lock(l); | ||
1218 | |||
1219 | int eprio = effective_agent_priority(get_priority(t)); | ||
1220 | int from = get_partition(t); | ||
1221 | int to = sem->on_cpu; | ||
1222 | |||
1223 | if (!is_realtime(t) || from != to) | ||
1224 | return -EPERM; | ||
1225 | |||
1226 | preempt_disable(); | ||
1227 | |||
1228 | pcp_raise_ceiling(sem, eprio); | ||
1229 | |||
1230 | preempt_enable(); | ||
1231 | |||
1232 | return 0; | ||
1233 | } | ||
1234 | |||
1235 | int pfp_pcp_unlock(struct litmus_lock* l) | ||
1236 | { | ||
1237 | struct task_struct *t = current; | ||
1238 | struct pcp_semaphore *sem = pcp_from_lock(l); | ||
1239 | |||
1240 | int err = 0; | ||
1241 | |||
1242 | preempt_disable(); | ||
1243 | |||
1244 | if (sem->on_cpu != smp_processor_id() || sem->owner != t) { | ||
1245 | err = -EINVAL; | ||
1246 | goto out; | ||
1247 | } | ||
1248 | |||
1249 | /* give it back */ | ||
1250 | pcp_lower_ceiling(sem); | ||
1251 | |||
1252 | out: | ||
1253 | preempt_enable(); | ||
1254 | |||
1255 | return err; | ||
1256 | } | ||
1257 | |||
1258 | int pfp_pcp_open(struct litmus_lock* l, void* __user config) | ||
1259 | { | ||
1260 | struct task_struct *t = current; | ||
1261 | struct pcp_semaphore *sem = pcp_from_lock(l); | ||
1262 | |||
1263 | int cpu, eprio; | ||
1264 | |||
1265 | if (!is_realtime(t)) | ||
1266 | /* we need to know the real-time priority */ | ||
1267 | return -EPERM; | ||
1268 | |||
1269 | if (get_user(cpu, (int*) config)) | ||
1270 | return -EFAULT; | ||
1271 | |||
1272 | /* make sure the resource location matches */ | ||
1273 | if (cpu != sem->on_cpu) | ||
1274 | return -EINVAL; | ||
1275 | |||
1276 | eprio = effective_agent_priority(get_priority(t)); | ||
1277 | |||
1278 | pcp_update_prio_ceiling(sem, eprio); | ||
1279 | |||
1280 | return 0; | ||
1281 | } | ||
1282 | |||
1283 | int pfp_pcp_close(struct litmus_lock* l) | ||
1284 | { | ||
1285 | struct task_struct *t = current; | ||
1286 | struct pcp_semaphore *sem = pcp_from_lock(l); | ||
1287 | |||
1288 | int owner = 0; | ||
1289 | |||
1290 | preempt_disable(); | ||
1291 | |||
1292 | if (sem->on_cpu == smp_processor_id()) | ||
1293 | owner = sem->owner == t; | ||
1294 | |||
1295 | preempt_enable(); | ||
1296 | |||
1297 | if (owner) | ||
1298 | pfp_pcp_unlock(l); | ||
1299 | |||
1300 | return 0; | ||
1301 | } | ||
1302 | |||
1303 | void pfp_pcp_free(struct litmus_lock* lock) | ||
1304 | { | ||
1305 | kfree(pcp_from_lock(lock)); | ||
1306 | } | ||
1307 | |||
1308 | |||
1309 | static struct litmus_lock_ops pfp_pcp_lock_ops = { | ||
1310 | .close = pfp_pcp_close, | ||
1311 | .lock = pfp_pcp_lock, | ||
1312 | .open = pfp_pcp_open, | ||
1313 | .unlock = pfp_pcp_unlock, | ||
1314 | .deallocate = pfp_pcp_free, | ||
1315 | }; | ||
1316 | |||
1317 | |||
1318 | static struct litmus_lock* pfp_new_pcp(int on_cpu) | ||
1319 | { | ||
1320 | struct pcp_semaphore* sem; | ||
1321 | |||
1322 | sem = kmalloc(sizeof(*sem), GFP_KERNEL); | ||
1323 | if (!sem) | ||
1324 | return NULL; | ||
1325 | |||
1326 | sem->litmus_lock.ops = &pfp_pcp_lock_ops; | ||
1327 | pcp_init_semaphore(sem, on_cpu); | ||
1328 | |||
1329 | return &sem->litmus_lock; | ||
1330 | } | ||
1331 | |||
1332 | /* ******************** DPCP support ********************** */ | ||
1333 | |||
1334 | struct dpcp_semaphore { | ||
1335 | struct litmus_lock litmus_lock; | ||
1336 | struct pcp_semaphore pcp; | ||
1337 | int owner_cpu; | ||
1338 | }; | ||
1339 | |||
1340 | static inline struct dpcp_semaphore* dpcp_from_lock(struct litmus_lock* lock) | ||
1341 | { | ||
1342 | return container_of(lock, struct dpcp_semaphore, litmus_lock); | ||
1343 | } | ||
1344 | |||
1345 | /* called with preemptions disabled */ | ||
1346 | static void pfp_migrate_to(int target_cpu) | ||
1347 | { | ||
1348 | struct task_struct* t = current; | ||
1349 | pfp_domain_t *from; | ||
1350 | |||
1351 | if (get_partition(t) == target_cpu) | ||
1352 | return; | ||
1353 | |||
1354 | /* make sure target_cpu makes sense */ | ||
1355 | BUG_ON(!cpu_online(target_cpu)); | ||
1356 | |||
1357 | local_irq_disable(); | ||
1358 | |||
1359 | /* scheduled task should not be in any ready or release queue */ | ||
1360 | BUG_ON(is_queued(t)); | ||
1361 | |||
1362 | /* lock both pfp domains in order of address */ | ||
1363 | from = task_pfp(t); | ||
1364 | |||
1365 | raw_spin_lock(&from->slock); | ||
1366 | |||
1367 | /* switch partitions */ | ||
1368 | tsk_rt(t)->task_params.cpu = target_cpu; | ||
1369 | |||
1370 | raw_spin_unlock(&from->slock); | ||
1371 | |||
1372 | /* Don't trace scheduler costs as part of | ||
1373 | * locking overhead. Scheduling costs are accounted for | ||
1374 | * explicitly. */ | ||
1375 | TS_LOCK_SUSPEND; | ||
1376 | |||
1377 | local_irq_enable(); | ||
1378 | preempt_enable_no_resched(); | ||
1379 | |||
1380 | /* deschedule to be migrated */ | ||
1381 | schedule(); | ||
1382 | |||
1383 | /* we are now on the target processor */ | ||
1384 | preempt_disable(); | ||
1385 | |||
1386 | /* start recording costs again */ | ||
1387 | TS_LOCK_RESUME; | ||
1388 | |||
1389 | BUG_ON(smp_processor_id() != target_cpu); | ||
1390 | } | ||
1391 | |||
1392 | int pfp_dpcp_lock(struct litmus_lock* l) | ||
1393 | { | ||
1394 | struct task_struct* t = current; | ||
1395 | struct dpcp_semaphore *sem = dpcp_from_lock(l); | ||
1396 | int eprio = effective_agent_priority(get_priority(t)); | ||
1397 | int from = get_partition(t); | ||
1398 | int to = sem->pcp.on_cpu; | ||
1399 | |||
1400 | if (!is_realtime(t)) | ||
1401 | return -EPERM; | ||
1402 | |||
1403 | preempt_disable(); | ||
1404 | |||
1405 | /* Priority-boost ourself *before* we suspend so that | ||
1406 | * our priority is boosted when we resume. */ | ||
1407 | |||
1408 | boost_priority(t, get_priority(t)); | ||
1409 | |||
1410 | pfp_migrate_to(to); | ||
1411 | |||
1412 | pcp_raise_ceiling(&sem->pcp, eprio); | ||
1413 | |||
1414 | /* yep, we got it => execute request */ | ||
1415 | sem->owner_cpu = from; | ||
1416 | |||
1417 | preempt_enable(); | ||
1418 | |||
1419 | return 0; | ||
1420 | } | ||
1421 | |||
1422 | int pfp_dpcp_unlock(struct litmus_lock* l) | ||
1423 | { | ||
1424 | struct task_struct *t = current; | ||
1425 | struct dpcp_semaphore *sem = dpcp_from_lock(l); | ||
1426 | int err = 0; | ||
1427 | int home; | ||
1428 | |||
1429 | preempt_disable(); | ||
1430 | |||
1431 | if (sem->pcp.on_cpu != smp_processor_id() || sem->pcp.owner != t) { | ||
1432 | err = -EINVAL; | ||
1433 | goto out; | ||
1434 | } | ||
1435 | |||
1436 | home = sem->owner_cpu; | ||
1437 | |||
1438 | /* give it back */ | ||
1439 | pcp_lower_ceiling(&sem->pcp); | ||
1440 | |||
1441 | /* we lose the benefit of priority boosting */ | ||
1442 | unboost_priority(t); | ||
1443 | |||
1444 | pfp_migrate_to(home); | ||
1445 | |||
1446 | out: | ||
1447 | preempt_enable(); | ||
1448 | |||
1449 | return err; | ||
1450 | } | ||
1451 | |||
1452 | int pfp_dpcp_open(struct litmus_lock* l, void* __user config) | ||
1453 | { | ||
1454 | struct task_struct *t = current; | ||
1455 | struct dpcp_semaphore *sem = dpcp_from_lock(l); | ||
1456 | int cpu, eprio; | ||
1457 | |||
1458 | if (!is_realtime(t)) | ||
1459 | /* we need to know the real-time priority */ | ||
1460 | return -EPERM; | ||
1461 | |||
1462 | if (get_user(cpu, (int*) config)) | ||
1463 | return -EFAULT; | ||
1464 | |||
1465 | /* make sure the resource location matches */ | ||
1466 | if (cpu != sem->pcp.on_cpu) | ||
1467 | return -EINVAL; | ||
1468 | |||
1469 | eprio = effective_agent_priority(get_priority(t)); | ||
1470 | |||
1471 | pcp_update_prio_ceiling(&sem->pcp, eprio); | ||
1472 | |||
1473 | return 0; | ||
1474 | } | ||
1475 | |||
1476 | int pfp_dpcp_close(struct litmus_lock* l) | ||
1477 | { | ||
1478 | struct task_struct *t = current; | ||
1479 | struct dpcp_semaphore *sem = dpcp_from_lock(l); | ||
1480 | int owner = 0; | ||
1481 | |||
1482 | preempt_disable(); | ||
1483 | |||
1484 | if (sem->pcp.on_cpu == smp_processor_id()) | ||
1485 | owner = sem->pcp.owner == t; | ||
1486 | |||
1487 | preempt_enable(); | ||
1488 | |||
1489 | if (owner) | ||
1490 | pfp_dpcp_unlock(l); | ||
1491 | |||
1492 | return 0; | ||
1493 | } | ||
1494 | |||
1495 | void pfp_dpcp_free(struct litmus_lock* lock) | ||
1496 | { | ||
1497 | kfree(dpcp_from_lock(lock)); | ||
1498 | } | ||
1499 | |||
1500 | static struct litmus_lock_ops pfp_dpcp_lock_ops = { | ||
1501 | .close = pfp_dpcp_close, | ||
1502 | .lock = pfp_dpcp_lock, | ||
1503 | .open = pfp_dpcp_open, | ||
1504 | .unlock = pfp_dpcp_unlock, | ||
1505 | .deallocate = pfp_dpcp_free, | ||
1506 | }; | ||
1507 | |||
1508 | static struct litmus_lock* pfp_new_dpcp(int on_cpu) | ||
1509 | { | ||
1510 | struct dpcp_semaphore* sem; | ||
1511 | |||
1512 | sem = kmalloc(sizeof(*sem), GFP_KERNEL); | ||
1513 | if (!sem) | ||
1514 | return NULL; | ||
1515 | |||
1516 | sem->litmus_lock.ops = &pfp_dpcp_lock_ops; | ||
1517 | sem->owner_cpu = NO_CPU; | ||
1518 | pcp_init_semaphore(&sem->pcp, on_cpu); | ||
1519 | |||
1520 | return &sem->litmus_lock; | ||
1521 | } | ||
1522 | |||
1523 | |||
1524 | /* **** lock constructor **** */ | ||
1525 | |||
1526 | |||
1527 | static long pfp_allocate_lock(struct litmus_lock **lock, int type, | ||
1528 | void* __user config) | ||
1529 | { | ||
1530 | int err = -ENXIO, cpu; | ||
1531 | struct srp_semaphore* srp; | ||
1532 | |||
1533 | /* P-FP currently supports the SRP for local resources and the FMLP | ||
1534 | * for global resources. */ | ||
1535 | switch (type) { | ||
1536 | case FMLP_SEM: | ||
1537 | /* FIFO Mutex Locking Protocol */ | ||
1538 | *lock = pfp_new_fmlp(); | ||
1539 | if (*lock) | ||
1540 | err = 0; | ||
1541 | else | ||
1542 | err = -ENOMEM; | ||
1543 | break; | ||
1544 | |||
1545 | case MPCP_SEM: | ||
1546 | /* Multiprocesor Priority Ceiling Protocol */ | ||
1547 | *lock = pfp_new_mpcp(0); | ||
1548 | if (*lock) | ||
1549 | err = 0; | ||
1550 | else | ||
1551 | err = -ENOMEM; | ||
1552 | break; | ||
1553 | |||
1554 | case MPCP_VS_SEM: | ||
1555 | /* Multiprocesor Priority Ceiling Protocol with virtual spinning */ | ||
1556 | *lock = pfp_new_mpcp(1); | ||
1557 | if (*lock) | ||
1558 | err = 0; | ||
1559 | else | ||
1560 | err = -ENOMEM; | ||
1561 | break; | ||
1562 | |||
1563 | case DPCP_SEM: | ||
1564 | /* Distributed Priority Ceiling Protocol */ | ||
1565 | if (get_user(cpu, (int*) config)) | ||
1566 | return -EFAULT; | ||
1567 | |||
1568 | if (!cpu_online(cpu)) | ||
1569 | return -EINVAL; | ||
1570 | |||
1571 | *lock = pfp_new_dpcp(cpu); | ||
1572 | if (*lock) | ||
1573 | err = 0; | ||
1574 | else | ||
1575 | err = -ENOMEM; | ||
1576 | break; | ||
1577 | |||
1578 | case SRP_SEM: | ||
1579 | /* Baker's Stack Resource Policy */ | ||
1580 | srp = allocate_srp_semaphore(); | ||
1581 | if (srp) { | ||
1582 | *lock = &srp->litmus_lock; | ||
1583 | err = 0; | ||
1584 | } else | ||
1585 | err = -ENOMEM; | ||
1586 | break; | ||
1587 | |||
1588 | case PCP_SEM: | ||
1589 | /* Priority Ceiling Protocol */ | ||
1590 | if (get_user(cpu, (int*) config)) | ||
1591 | return -EFAULT; | ||
1592 | |||
1593 | if (!cpu_online(cpu)) | ||
1594 | return -EINVAL; | ||
1595 | |||
1596 | *lock = pfp_new_pcp(cpu); | ||
1597 | if (*lock) | ||
1598 | err = 0; | ||
1599 | else | ||
1600 | err = -ENOMEM; | ||
1601 | break; | ||
1602 | }; | ||
1603 | |||
1604 | return err; | ||
1605 | } | ||
1606 | |||
1607 | #endif | ||
1608 | |||
1609 | static long pfp_admit_task(struct task_struct* tsk) | ||
1610 | { | ||
1611 | if (task_cpu(tsk) == tsk->rt_param.task_params.cpu && | ||
1612 | #ifdef CONFIG_RELEASE_MASTER | ||
1613 | /* don't allow tasks on release master CPU */ | ||
1614 | task_cpu(tsk) != remote_dom(task_cpu(tsk))->release_master && | ||
1615 | #endif | ||
1616 | litmus_is_valid_fixed_prio(get_priority(tsk))) | ||
1617 | return 0; | ||
1618 | else | ||
1619 | return -EINVAL; | ||
1620 | } | ||
1621 | |||
1622 | static long pfp_activate_plugin(void) | ||
1623 | { | ||
1624 | #if defined(CONFIG_RELEASE_MASTER) || defined(CONFIG_LITMUS_LOCKING) | ||
1625 | int cpu; | ||
1626 | #endif | ||
1627 | |||
1628 | #ifdef CONFIG_RELEASE_MASTER | ||
1629 | for_each_online_cpu(cpu) { | ||
1630 | remote_dom(cpu)->release_master = atomic_read(&release_master_cpu); | ||
1631 | } | ||
1632 | #endif | ||
1633 | |||
1634 | #ifdef CONFIG_LITMUS_LOCKING | ||
1635 | get_srp_prio = pfp_get_srp_prio; | ||
1636 | |||
1637 | for_each_online_cpu(cpu) { | ||
1638 | init_waitqueue_head(&per_cpu(mpcpvs_vspin_wait, cpu)); | ||
1639 | per_cpu(mpcpvs_vspin, cpu) = NULL; | ||
1640 | |||
1641 | pcp_init_state(&per_cpu(pcp_state, cpu)); | ||
1642 | pfp_doms[cpu] = remote_pfp(cpu); | ||
1643 | } | ||
1644 | |||
1645 | #endif | ||
1646 | |||
1647 | return 0; | ||
1648 | } | ||
1649 | |||
1650 | |||
1651 | /* Plugin object */ | ||
1652 | static struct sched_plugin pfp_plugin __cacheline_aligned_in_smp = { | ||
1653 | .plugin_name = "P-FP", | ||
1654 | .tick = pfp_tick, | ||
1655 | .task_new = pfp_task_new, | ||
1656 | .complete_job = complete_job, | ||
1657 | .task_exit = pfp_task_exit, | ||
1658 | .schedule = pfp_schedule, | ||
1659 | .task_wake_up = pfp_task_wake_up, | ||
1660 | .task_block = pfp_task_block, | ||
1661 | .admit_task = pfp_admit_task, | ||
1662 | .activate_plugin = pfp_activate_plugin, | ||
1663 | #ifdef CONFIG_LITMUS_LOCKING | ||
1664 | .allocate_lock = pfp_allocate_lock, | ||
1665 | .finish_switch = pfp_finish_switch, | ||
1666 | #endif | ||
1667 | }; | ||
1668 | |||
1669 | |||
1670 | static int __init init_pfp(void) | ||
1671 | { | ||
1672 | int i; | ||
1673 | |||
1674 | /* We do not really want to support cpu hotplug, do we? ;) | ||
1675 | * However, if we are so crazy to do so, | ||
1676 | * we cannot use num_online_cpu() | ||
1677 | */ | ||
1678 | for (i = 0; i < num_online_cpus(); i++) { | ||
1679 | pfp_domain_init(remote_pfp(i), i); | ||
1680 | } | ||
1681 | return register_sched_plugin(&pfp_plugin); | ||
1682 | } | ||
1683 | |||
1684 | module_init(init_pfp); | ||
1685 | |||
diff --git a/litmus/sched_psn_edf.c b/litmus/sched_psn_edf.c index 8e4a22dd8d6a..b0c8126bd44a 100644 --- a/litmus/sched_psn_edf.c +++ b/litmus/sched_psn_edf.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <litmus/litmus.h> | 17 | #include <litmus/litmus.h> |
18 | #include <litmus/jobs.h> | 18 | #include <litmus/jobs.h> |
19 | #include <litmus/preempt.h> | 19 | #include <litmus/preempt.h> |
20 | #include <litmus/budget.h> | ||
20 | #include <litmus/sched_plugin.h> | 21 | #include <litmus/sched_plugin.h> |
21 | #include <litmus/edf_common.h> | 22 | #include <litmus/edf_common.h> |
22 | #include <litmus/sched_trace.h> | 23 | #include <litmus/sched_trace.h> |