mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 11:50:52 +07:00
debug_locks: set oops_in_progress if we will log messages.
Otherwise lock debugging messages on runqueue locks can deadlock the system due to the wakeups performed by printk(). Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
419ca3f135
commit
e0fdace10e
@ -8,6 +8,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
|
* Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
|
||||||
*/
|
*/
|
||||||
|
#include <linux/kernel.h>
|
||||||
#include <linux/rwsem.h>
|
#include <linux/rwsem.h>
|
||||||
#include <linux/mutex.h>
|
#include <linux/mutex.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
@ -37,6 +38,7 @@ int debug_locks_off(void)
|
|||||||
{
|
{
|
||||||
if (xchg(&debug_locks, 0)) {
|
if (xchg(&debug_locks, 0)) {
|
||||||
if (!debug_locks_silent) {
|
if (!debug_locks_silent) {
|
||||||
|
oops_in_progress = 1;
|
||||||
console_verbose();
|
console_verbose();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user