From f4a802aea7f43a8b221e1337d967b0fb0fd12db8 Mon Sep 17 00:00:00 2001 From: Thomas Gleixner <tglx@linutronix.de> Date: Tue, 14 Jul 2015 14:26:34 +0200 Subject: [PATCH 109/158] panic: skip get_random_bytes for RT_FULL in init_oops_id Disable on -RT. If this is invoked from irq-context we will have problems to acquire the sleeping lock. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> --- kernel/panic.c | 2 ++ 1 file changed, 2 insertions(+) Index: linux-5.15.19-rt29/kernel/panic.c =================================================================== @ linux-5.15.19-rt29/kernel/panic.c:548 @ static u64 oops_id; static int init_oops_id(void) { +#ifndef CONFIG_PREEMPT_RT if (!oops_id) get_random_bytes(&oops_id, sizeof(oops_id)); else +#endif oops_id++; return 0;