diff options
author | Bjoern Brandenburg <bbb@mpi-sws.org> | 2016-03-24 11:24:00 -0400 |
---|---|---|
committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2016-03-24 11:24:00 -0400 |
commit | e9ef5f31aeb99b4f00de62557aaf51e670a4b0f9 (patch) | |
tree | 4b41351bdc21f0e8bf162d0c61b2452595233e84 /litmus | |
parent | dbf173a2fbe2abe9a5ee149390705f18c2b17f25 (diff) |
Switch to aligned quanta by default.
For first-time users, aligned quanta is likely what's expected.
Diffstat (limited to 'litmus')
-rw-r--r-- | litmus/litmus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/litmus/litmus.c b/litmus/litmus.c index ed8e4127207e..971402589f82 100644 --- a/litmus/litmus.c +++ b/litmus/litmus.c | |||
@@ -57,9 +57,9 @@ void release_heap_free(struct release_heap* rh); | |||
57 | 57 | ||
58 | /** | 58 | /** |
59 | * Get the quantum alignment as a cmdline option. | 59 | * Get the quantum alignment as a cmdline option. |
60 | * Default is staggered quanta, as this results in lower overheads. | 60 | * Default is aligned quanta.. |
61 | */ | 61 | */ |
62 | static bool aligned_quanta = 0; | 62 | static bool aligned_quanta = 1; |
63 | module_param(aligned_quanta, bool, 0644); | 63 | module_param(aligned_quanta, bool, 0644); |
64 | 64 | ||
65 | u64 cpu_stagger_offset(int cpu) | 65 | u64 cpu_stagger_offset(int cpu) |