diff options
Diffstat (limited to 'kernel/trace/ring_buffer_benchmark.c')
-rw-r--r-- | kernel/trace/ring_buffer_benchmark.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/trace/ring_buffer_benchmark.c b/kernel/trace/ring_buffer_benchmark.c index a5457d577b98..0434ff1b808e 100644 --- a/kernel/trace/ring_buffer_benchmark.c +++ b/kernel/trace/ring_buffer_benchmark.c | |||
@@ -40,8 +40,8 @@ static int write_iteration = 50; | |||
40 | module_param(write_iteration, uint, 0644); | 40 | module_param(write_iteration, uint, 0644); |
41 | MODULE_PARM_DESC(write_iteration, "# of writes between timestamp readings"); | 41 | MODULE_PARM_DESC(write_iteration, "# of writes between timestamp readings"); |
42 | 42 | ||
43 | static int producer_nice = 19; | 43 | static int producer_nice = MAX_NICE; |
44 | static int consumer_nice = 19; | 44 | static int consumer_nice = MAX_NICE; |
45 | 45 | ||
46 | static int producer_fifo = -1; | 46 | static int producer_fifo = -1; |
47 | static int consumer_fifo = -1; | 47 | static int consumer_fifo = -1; |
@@ -308,7 +308,7 @@ static void ring_buffer_producer(void) | |||
308 | 308 | ||
309 | /* Let the user know that the test is running at low priority */ | 309 | /* Let the user know that the test is running at low priority */ |
310 | if (producer_fifo < 0 && consumer_fifo < 0 && | 310 | if (producer_fifo < 0 && consumer_fifo < 0 && |
311 | producer_nice == 19 && consumer_nice == 19) | 311 | producer_nice == MAX_NICE && consumer_nice == MAX_NICE) |
312 | trace_printk("WARNING!!! This test is running at lowest priority.\n"); | 312 | trace_printk("WARNING!!! This test is running at lowest priority.\n"); |
313 | 313 | ||
314 | trace_printk("Time: %lld (usecs)\n", time); | 314 | trace_printk("Time: %lld (usecs)\n", time); |