diff options
Diffstat (limited to 'arch/x86/mm')
-rw-r--r-- | arch/x86/mm/init_64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index 50d29f5da02b..f51180c02b8f 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -573,7 +573,6 @@ void free_init_pages(char *what, unsigned long begin, unsigned long end) | |||
573 | set_memory_rw(begin, (end - begin)/PAGE_SIZE); | 573 | set_memory_rw(begin, (end - begin)/PAGE_SIZE); |
574 | set_memory_np(begin, (end - begin)/PAGE_SIZE); | 574 | set_memory_np(begin, (end - begin)/PAGE_SIZE); |
575 | set_memory_nx(begin, (end - begin)/PAGE_SIZE); | 575 | set_memory_nx(begin, (end - begin)/PAGE_SIZE); |
576 | rodata_test(); | ||
577 | } | 576 | } |
578 | #endif | 577 | #endif |
579 | } | 578 | } |
@@ -614,6 +613,8 @@ void mark_rodata_ro(void) | |||
614 | printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n", | 613 | printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n", |
615 | (end - start) >> 10); | 614 | (end - start) >> 10); |
616 | 615 | ||
616 | rodata_test(); | ||
617 | |||
617 | #ifdef CONFIG_CPA_DEBUG | 618 | #ifdef CONFIG_CPA_DEBUG |
618 | printk("Testing CPA: undo %lx-%lx\n", start, end); | 619 | printk("Testing CPA: undo %lx-%lx\n", start, end); |
619 | set_memory_rw(start, (end-start) >> PAGE_SHIFT); | 620 | set_memory_rw(start, (end-start) >> PAGE_SHIFT); |