parisc: Optimize switch_mm
We only need to switch contexts when prev != next, and we don't need to disable interrupts to do the check. Signed-off-by: John David Anglin <dave.anglin@bell.net> Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
42593e7000
commit
d2883fa1a6
@ -63,6 +63,9 @@ static inline void switch_mm(struct mm_struct *prev,
|
|||||||
{
|
{
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
|
if (prev == next)
|
||||||
|
return;
|
||||||
|
|
||||||
local_irq_save(flags);
|
local_irq_save(flags);
|
||||||
switch_mm_irqs_off(prev, next, tsk);
|
switch_mm_irqs_off(prev, next, tsk);
|
||||||
local_irq_restore(flags);
|
local_irq_restore(flags);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user