printk: Remove trace_.*_rcuidle() usage

The problem, per commit fc98c3c8c9 ("printk: use rcuidle console
tracepoint"), was printk usage from the cpuidle path where RCU was
already disabled.

Per the patches earlier in this series, this is no longer the case.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Tested-by: Tony Lindgren <tony@atomide.com>
Tested-by: Ulf Hansson <ulf.hansson@linaro.org>
Reviewed-by: Sergey Senozhatsky <senozhatsky@chromium.org>
Acked-by: Petr Mladek <pmladek@suse.com>
Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Frederic Weisbecker <frederic@kernel.org>
Link: https://lore.kernel.org/r/20230112195540.865735001@infradead.org
This commit is contained in:
Peter Zijlstra 2023-01-12 20:43:39 +01:00 committed by Ingo Molnar
parent 4a3182e6d6
commit 880970b56b

View File

@ -2194,7 +2194,7 @@ static u16 printk_sprint(char *text, u16 size, int facility,
}
}
trace_console_rcuidle(text, text_len);
trace_console(text, text_len);
return text_len;
}