summaryrefslogtreecommitdiff
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2012-09-27 11:11:46 +0200
committerSteven Rostedt <rostedt@goodmis.org>2016-08-15 17:06:27 -0400
commitc0f26392ef78610708597df6be857ccabedfd077 (patch)
tree26be831cb6ff2680e9e3072900d2ffd8fab804cb /mm/page_alloc.c
parent43e0ef737f18f4690cd7ffa02254bc0406e3770c (diff)
downloadlinux-rt-c0f26392ef78610708597df6be857ccabedfd077.tar.gz
mm: page_alloc: Use local_lock_on() instead of plain spinlock
The plain spinlock while sufficient does not update the local_lock internals. Use a proper local_lock function instead to ease debugging. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index d52414dc5bf3..a500c9e740dd 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -269,9 +269,9 @@ static DEFINE_LOCAL_IRQ_LOCK(pa_lock);
#ifdef CONFIG_PREEMPT_RT_BASE
# define cpu_lock_irqsave(cpu, flags) \
- spin_lock_irqsave(&per_cpu(pa_lock, cpu).lock, flags)
+ local_lock_irqsave_on(pa_lock, flags, cpu)
# define cpu_unlock_irqrestore(cpu, flags) \
- spin_unlock_irqrestore(&per_cpu(pa_lock, cpu).lock, flags)
+ local_unlock_irqrestore_on(pa_lock, flags, cpu)
#else
# define cpu_lock_irqsave(cpu, flags) local_irq_save(flags)
# define cpu_unlock_irqrestore(cpu, flags) local_irq_restore(flags)