diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2012-03-30 16:27:20 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2012-04-02 12:13:59 -0400 |
commit | b1760c847ff9d04fba7cdbef005a0ad805311c6d (patch) | |
tree | 59f876e619cdbc62268ecd7462e8cc0f4204a9c7 /arch/tile | |
parent | cdd8e16feba87a3fc2bb1885d36f895a2a3288bf (diff) | |
download | linux-3.10-b1760c847ff9d04fba7cdbef005a0ad805311c6d.tar.gz linux-3.10-b1760c847ff9d04fba7cdbef005a0ad805311c6d.tar.bz2 linux-3.10-b1760c847ff9d04fba7cdbef005a0ad805311c6d.zip |
arch/tile: remove bogus performance optimization
We were re-homing the initial task's kernel stack on the boot cpu,
but in fact it's better to let it stay globally homed, since that
task isn't bound to the boot cpu anyway. This is more of a general
cleanup than an actual performance optimization, but it removes
code, which is a good thing. :-)
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/mm/init.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/tile/mm/init.c b/arch/tile/mm/init.c index 8400d3fb9e0..6a9d20ddc34 100644 --- a/arch/tile/mm/init.c +++ b/arch/tile/mm/init.c @@ -254,11 +254,6 @@ static pgprot_t __init init_pgprot(ulong address) return construct_pgprot(PAGE_KERNEL_RO, PAGE_HOME_IMMUTABLE); } - /* As a performance optimization, keep the boot init stack here. */ - if (address >= (ulong)&init_thread_union && - address < (ulong)&init_thread_union + THREAD_SIZE) - return construct_pgprot(PAGE_KERNEL, smp_processor_id()); - #ifndef __tilegx__ #if !ATOMIC_LOCKS_FOUND_VIA_TABLE() /* Force the atomic_locks[] array page to be hash-for-home. */ |