Commit 514da692 authored by Thorsten Blum's avatar Thorsten Blum Committed by Steven Rostedt (Google)
Browse files

ring-buffer: Use str_low_high() helper in ring_buffer_producer()

Remove hard-coded strings by using the helper function str_low_high().

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Link: https://lore.kernel.org/20241018110709.111707-2-thorsten.blum@linux.dev


Signed-off-by: default avatarThorsten Blum <thorsten.blum@linux.dev>
Signed-off-by: default avatarSteven Rostedt (Google) <rostedt@goodmis.org>
parent 0b60a7fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -307,14 +307,14 @@ static void ring_buffer_producer(void)
	if (!disable_reader) {
		if (consumer_fifo)
			trace_printk("Running Consumer at SCHED_FIFO %s\n",
				     consumer_fifo == 1 ? "low" : "high");
				     str_low_high(consumer_fifo == 1));
		else
			trace_printk("Running Consumer at nice: %d\n",
				     consumer_nice);
	}
	if (producer_fifo)
		trace_printk("Running Producer at SCHED_FIFO %s\n",
			     producer_fifo == 1 ? "low" : "high");
			     str_low_high(producer_fifo == 1));
	else
		trace_printk("Running Producer at nice: %d\n",
			     producer_nice);