diff options
Diffstat (limited to 'litmus/sched_cedf.c')
-rw-r--r-- | litmus/sched_cedf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/litmus/sched_cedf.c b/litmus/sched_cedf.c index 8c9513d33f59..1469a1e537d3 100644 --- a/litmus/sched_cedf.c +++ b/litmus/sched_cedf.c | |||
@@ -50,7 +50,15 @@ | |||
50 | * (default) we cluster all the CPUs that shares a L2 cache, while | 50 | * (default) we cluster all the CPUs that shares a L2 cache, while |
51 | * cluster_cache_index = 3 we cluster all CPs that shares a L3 cache | 51 | * cluster_cache_index = 3 we cluster all CPs that shares a L3 cache |
52 | */ | 52 | */ |
53 | #if defined(CONFIG_CEDF_DEFAULT_L1) | ||
54 | int cluster_index = 1; | ||
55 | #elif defined(CONFIG_CEDF_DEFAULT_L2) | ||
53 | int cluster_index = 2; | 56 | int cluster_index = 2; |
57 | #elif defined(CONFIG_CEDF_DEFAULT_L3) | ||
58 | int cluster_index = 3; | ||
59 | #elif defined(CONFIG_CEDF_DEFAULT_ALL) | ||
60 | int cluster_index = 0; | ||
61 | #endif | ||
54 | 62 | ||
55 | /* forward declaration... a funny thing with C ;) */ | 63 | /* forward declaration... a funny thing with C ;) */ |
56 | struct clusterdomain; | 64 | struct clusterdomain; |