diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc64/mm/tsb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/sparc64/mm/tsb.c b/arch/sparc64/mm/tsb.c index 353cb060561b..534ac2819892 100644 --- a/arch/sparc64/mm/tsb.c +++ b/arch/sparc64/mm/tsb.c | |||
@@ -373,6 +373,7 @@ int init_new_context(struct task_struct *tsk, struct mm_struct *mm) | |||
373 | void destroy_context(struct mm_struct *mm) | 373 | void destroy_context(struct mm_struct *mm) |
374 | { | 374 | { |
375 | unsigned long size = mm->context.tsb_nentries * sizeof(struct tsb); | 375 | unsigned long size = mm->context.tsb_nentries * sizeof(struct tsb); |
376 | unsigned long flags; | ||
376 | 377 | ||
377 | free_pages((unsigned long) mm->context.tsb, get_order(size)); | 378 | free_pages((unsigned long) mm->context.tsb, get_order(size)); |
378 | 379 | ||
@@ -383,12 +384,12 @@ void destroy_context(struct mm_struct *mm) | |||
383 | mm->context.tsb = NULL; | 384 | mm->context.tsb = NULL; |
384 | mm->context.tsb_reg_val = 0UL; | 385 | mm->context.tsb_reg_val = 0UL; |
385 | 386 | ||
386 | spin_lock(&ctx_alloc_lock); | 387 | spin_lock_irqsave(&ctx_alloc_lock, flags); |
387 | 388 | ||
388 | if (CTX_VALID(mm->context)) { | 389 | if (CTX_VALID(mm->context)) { |
389 | unsigned long nr = CTX_NRBITS(mm->context); | 390 | unsigned long nr = CTX_NRBITS(mm->context); |
390 | mmu_context_bmap[nr>>6] &= ~(1UL << (nr & 63)); | 391 | mmu_context_bmap[nr>>6] &= ~(1UL << (nr & 63)); |
391 | } | 392 | } |
392 | 393 | ||
393 | spin_unlock(&ctx_alloc_lock); | 394 | spin_unlock_irqrestore(&ctx_alloc_lock, flags); |
394 | } | 395 | } |