Skip to content

Commit

Permalink
[PATCH] ARM SMP: Use local_flush_tlb* where we really want to be local
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jun 28, 2005
1 parent 603fff5 commit 564c90a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ void __init paging_init(struct meminfo *mi, struct machine_desc *mdesc)
memtable_init(mi);
if (mdesc->map_io)
mdesc->map_io();
flush_tlb_all();
local_flush_tlb_all();

/*
* initialise the zones within each node
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mm/mm-armv.c
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ void __init memtable_init(struct meminfo *mi)
}

flush_cache_all();
flush_tlb_all();
local_flush_tlb_all();

top_pmd = pmd_off_k(0xffff0000);
}
Expand Down

0 comments on commit 564c90a

Please sign in to comment.