diff options
author | David S. Miller <davem@davemloft.net> | 2006-01-31 18:30:13 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-03-20 01:11:13 -0800 |
commit | 05e28f9de65a38bb0c769080e91b6976e7e1e70c (patch) | |
tree | e1d3fcc1381ea6612ce4c082ca8596e84b637216 /include/asm-sparc64/cpudata.h | |
parent | 74bf4312fff083ab25c3f357cc653ada7995e5f6 (diff) | |
download | blackbird-op-linux-05e28f9de65a38bb0c769080e91b6976e7e1e70c.tar.gz blackbird-op-linux-05e28f9de65a38bb0c769080e91b6976e7e1e70c.zip |
[SPARC64]: No need to D-cache color page tables any longer.
Unlike the virtual page tables, the new TSB scheme does not
require this ugly hack.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64/cpudata.h')
-rw-r--r-- | include/asm-sparc64/cpudata.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/asm-sparc64/cpudata.h b/include/asm-sparc64/cpudata.h index 74de79dca915..45a9a2cfaf79 100644 --- a/include/asm-sparc64/cpudata.h +++ b/include/asm-sparc64/cpudata.h @@ -20,8 +20,9 @@ typedef struct { /* Dcache line 2 */ unsigned int pgcache_size; unsigned int __pad1; - unsigned long *pte_cache[2]; + unsigned long *pte_cache; unsigned long *pgd_cache; + unsigned long __pad2; /* Dcache line 3, rarely used */ unsigned int dcache_size; @@ -30,8 +31,8 @@ typedef struct { unsigned int icache_line_size; unsigned int ecache_size; unsigned int ecache_line_size; - unsigned int __pad2; unsigned int __pad3; + unsigned int __pad4; } cpuinfo_sparc; DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data); |