Displaying 2 results from an estimated 2 matches for "acpi_early_init".
2007 Feb 05
3
Kernel panic kickstarting to CentOS 4
...ne kernel panics when
booted from the install CD. The error message I get is:
Kernel panic - not syncing: include/linux/smp_lock.h:25
	spin_unlock(kernel/sched.c:c035) not locked
The boot messages before this point are mainly to do with acpi
including: 
acpi_ps_parse_anl
acpi_?s_one_complete
...
acpi_early_init
start_kernel 
Kernel panic ....
At a guess, I tried starting the installer with the options: 
	linux text acpi=off noprobe
I am not really clear on what part of the boot process is failing so I
tried a number of random boot options including apm=off, noapic, apic,
nomce. Nothing I tried change th...
2018 Nov 06
0
[PATCH v15 23/26] sched: early boot clock
...e __visible void __init start_kernel(void)
>  	softirq_init();
>  	timekeeping_init();
>  	time_init();
> -	sched_clock_init();
>  	printk_safe_init();
>  	perf_event_init();
>  	profile_init();
> @@ -697,6 +696,7 @@ asmlinkage __visible void __init start_kernel(void)
>  	acpi_early_init();
>  	if (late_time_init)
>  		late_time_init();
> +	sched_clock_init();
>  	calibrate_delay();
>  	pid_idr_init();
>  	anon_vma_init();
> diff --git a/kernel/sched/clock.c b/kernel/sched/clock.c
> index 0e9dbb2d9aea..422cd63f8f17 100644
> --- a/kernel/sched/clock.c
>...