提交 5edddaab 编写于 作者: D David S. Miller

sparc64: Fix bootup regression due to perf init ordering.

Commit 004417a6
("perf, arch: Cleanup perf-pmu init vs lockup-detector")
move the perf events init to be an early_initcall.

But this won't work properly unless the dependencies for
this code initialize beforehand.

Fix it by making cpu_type_probe and pcr_arch_init be
an early_initcall as well.
Reported-by: NSam Ravnborg <sam@ravnborg.org>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 0c21e3aa
......@@ -375,5 +375,5 @@ static int __init cpu_type_probe(void)
return 0;
}
arch_initcall(cpu_type_probe);
early_initcall(cpu_type_probe);
#endif
......@@ -168,4 +168,4 @@ int __init pcr_arch_init(void)
return err;
}
arch_initcall(pcr_arch_init);
early_initcall(pcr_arch_init);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册