diff options
-rw-r--r-- | core/opal.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/opal.c b/core/opal.c index fc18db3..a49d022 100644 --- a/core/opal.c +++ b/core/opal.c @@ -284,6 +284,11 @@ void opal_run_pollers(void) { struct opal_poll_entry *poll_ent; + if (this_cpu()->lock_depth) { + prlog(PR_ERR, "Running pollers with lock held !\n"); + backtrace(); + } + /* We run the timers first */ check_timers(false); |