Commit d56a3c1a authored by Denys Vlasenko's avatar Denys Vlasenko Committed by Michal Marek

Rename .data.vmpages and .data.vm0.XXX to .data..vmpages and .data..vm0.XXX.

Signed-off-by: default avatarDenys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 54cb27a7
...@@ -53,11 +53,11 @@ union thread_union init_thread_union __init_task_data ...@@ -53,11 +53,11 @@ union thread_union init_thread_union __init_task_data
* guarantee that global objects will be laid out in memory in the same order * guarantee that global objects will be laid out in memory in the same order
* as the order of declaration, so put these in different sections and use * as the order of declaration, so put these in different sections and use
* the linker script to order them. */ * the linker script to order them. */
pmd_t pmd0[PTRS_PER_PMD] __attribute__ ((__section__ (".data.vm0.pmd"), aligned(PAGE_SIZE))); pmd_t pmd0[PTRS_PER_PMD] __attribute__ ((__section__ (".data..vm0.pmd"), aligned(PAGE_SIZE)));
#endif #endif
pgd_t swapper_pg_dir[PTRS_PER_PGD] __attribute__ ((__section__ (".data.vm0.pgd"), aligned(PAGE_SIZE))); pgd_t swapper_pg_dir[PTRS_PER_PGD] __attribute__ ((__section__ (".data..vm0.pgd"), aligned(PAGE_SIZE)));
pte_t pg0[PT_INITIAL * PTRS_PER_PTE] __attribute__ ((__section__ (".data.vm0.pte"), aligned(PAGE_SIZE))); pte_t pg0[PT_INITIAL * PTRS_PER_PTE] __attribute__ ((__section__ (".data..vm0.pte"), aligned(PAGE_SIZE)));
/* /*
* Initial task structure. * Initial task structure.
......
...@@ -105,10 +105,10 @@ SECTIONS ...@@ -105,10 +105,10 @@ SECTIONS
__bss_start = .; __bss_start = .;
/* page table entries need to be PAGE_SIZE aligned */ /* page table entries need to be PAGE_SIZE aligned */
. = ALIGN(PAGE_SIZE); . = ALIGN(PAGE_SIZE);
.data.vmpages : { .data..vmpages : {
*(.data.vm0.pmd) *(.data..vm0.pmd)
*(.data.vm0.pgd) *(.data..vm0.pgd)
*(.data.vm0.pte) *(.data..vm0.pte)
} }
.bss : { .bss : {
*(.bss) *(.bss)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment