summaryrefslogtreecommitdiffstats
path: root/arch/tile/mm
diff options
context:
space:
mode:
authorWang Sheng-Hui <shhuiw@gmail.com>2014-05-07 03:28:12 -0400
committerChris Metcalf <cmetcalf@tilera.com>2014-05-13 11:51:10 -0400
commite540e835f89c3cfa0eca5d909047224c78c874a8 (patch)
tree2782e451ea639a82aa05a1617781ba6078bd4be5 /arch/tile/mm
parent3af1ea5a2e8ff7ac7ffea3cff1f93914f3cc211d (diff)
tile: cleanup the comment in init_pgprot
In tile vmlinux, the rodata area start after the _sdata. The rodata area is included between [_sdata, __end_rodata), and is handled at an earlier point. The page walk starts at __end_rodata, not _sdata. Signed-off-by: Wang Sheng-Hui <shhuiw@gmail.com> Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/mm')
-rw-r--r--arch/tile/mm/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/tile/mm/init.c b/arch/tile/mm/init.c
index 0fa1acfac79a..7ba1dc3d41fa 100644
--- a/arch/tile/mm/init.c
+++ b/arch/tile/mm/init.c
@@ -273,9 +273,9 @@ static pgprot_t __init init_pgprot(ulong address)
273 /* 273 /*
274 * Otherwise we just hand out consecutive cpus. To avoid 274 * Otherwise we just hand out consecutive cpus. To avoid
275 * requiring this function to hold state, we just walk forward from 275 * requiring this function to hold state, we just walk forward from
276 * _sdata by PAGE_SIZE, skipping the readonly and init data, to reach 276 * __end_rodata by PAGE_SIZE, skipping the readonly and init data, to
277 * the requested address, while walking cpu home around kdata_mask. 277 * reach the requested address, while walking cpu home around
278 * This is typically no more than a dozen or so iterations. 278 * kdata_mask. This is typically no more than a dozen or so iterations.
279 */ 279 */
280 page = (((ulong)__end_rodata) + PAGE_SIZE - 1) & PAGE_MASK; 280 page = (((ulong)__end_rodata) + PAGE_SIZE - 1) & PAGE_MASK;
281 BUG_ON(address < page || address >= (ulong)_end); 281 BUG_ON(address < page || address >= (ulong)_end);