mirror of
https://github.com/schoebel/mars
synced 2025-04-01 00:06:32 +00:00
brick_say: fix detection of in_atomic()
This commit is contained in:
parent
19f1b85616
commit
a24d18d620
@ -94,7 +94,7 @@ static
|
||||
void _say_mark(unsigned long cpu)
|
||||
{
|
||||
char *ptr;
|
||||
bool use_atomic = (preempt_count() & (SOFTIRQ_MASK | HARDIRQ_MASK | NMI_MASK)) != 0 || irqs_disabled();
|
||||
bool use_atomic = (preempt_count() & (SOFTIRQ_MASK | HARDIRQ_MASK | NMI_MASK)) != 0 || in_atomic() || irqs_disabled();
|
||||
|
||||
say_alloc(cpu, use_atomic);
|
||||
if (unlikely(use_atomic || cpu >= NR_CPUS))
|
||||
|
Loading…
Reference in New Issue
Block a user