Merge "init: Move stack canary initialization after setup_arch"
This commit is contained in:
commit
eddeaeab94
1 changed files with 4 additions and 5 deletions
|
@ -505,11 +505,6 @@ asmlinkage __visible void __init start_kernel(void)
|
||||||
smp_setup_processor_id();
|
smp_setup_processor_id();
|
||||||
debug_objects_early_init();
|
debug_objects_early_init();
|
||||||
|
|
||||||
/*
|
|
||||||
* Set up the the initial canary ASAP:
|
|
||||||
*/
|
|
||||||
boot_init_stack_canary();
|
|
||||||
|
|
||||||
cgroup_init_early();
|
cgroup_init_early();
|
||||||
|
|
||||||
local_irq_disable();
|
local_irq_disable();
|
||||||
|
@ -523,6 +518,10 @@ asmlinkage __visible void __init start_kernel(void)
|
||||||
page_address_init();
|
page_address_init();
|
||||||
pr_notice("%s", linux_banner);
|
pr_notice("%s", linux_banner);
|
||||||
setup_arch(&command_line);
|
setup_arch(&command_line);
|
||||||
|
/*
|
||||||
|
* Set up the the initial canary ASAP:
|
||||||
|
*/
|
||||||
|
boot_init_stack_canary();
|
||||||
mm_init_cpumask(&init_mm);
|
mm_init_cpumask(&init_mm);
|
||||||
setup_command_line(command_line);
|
setup_command_line(command_line);
|
||||||
setup_nr_cpu_ids();
|
setup_nr_cpu_ids();
|
||||||
|
|
Loading…
Add table
Reference in a new issue