We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b60a7f commit 514da69Copy full SHA for 514da69
kernel/trace/ring_buffer_benchmark.c
@@ -307,14 +307,14 @@ static void ring_buffer_producer(void)
307
if (!disable_reader) {
308
if (consumer_fifo)
309
trace_printk("Running Consumer at SCHED_FIFO %s\n",
310
- consumer_fifo == 1 ? "low" : "high");
+ str_low_high(consumer_fifo == 1));
311
else
312
trace_printk("Running Consumer at nice: %d\n",
313
consumer_nice);
314
}
315
if (producer_fifo)
316
trace_printk("Running Producer at SCHED_FIFO %s\n",
317
- producer_fifo == 1 ? "low" : "high");
+ str_low_high(producer_fifo == 1));
318
319
trace_printk("Running Producer at nice: %d\n",
320
producer_nice);
0 commit comments