powerpc/mm: Move the linear_mapping_mutex to the ifdef where it is used
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Fri, 19 Feb 2021 16:56:48 +0000 (17:56 +0100)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 24 Mar 2021 03:09:29 +0000 (14:09 +1100)
commit9be77e11dade414d2fa63750aa5c754fac49d619
treee83784213c3cb085bd7f1a4bf3f5bcdb134db463
parent1e28eed17697bcf343c6743f0028cc3b5dd88bf0
powerpc/mm: Move the linear_mapping_mutex to the ifdef where it is used

The mutex linear_mapping_mutex is defined at the of the file while its
only two user are within the CONFIG_MEMORY_HOTPLUG block.
A compile without CONFIG_MEMORY_HOTPLUG set fails on PREEMPT_RT because
its mutex implementation is smart enough to realize that it is unused.

Move the definition of linear_mapping_mutex to ifdef block where it is
used.

Fixes: 1f73ad3e8d755 ("powerpc/mm: print warning in arch_remove_linear_mapping()")
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210219165648.2505482-1-bigeasy@linutronix.de
arch/powerpc/mm/mem.c