Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5edddaab authored by David S. Miller's avatar David S. Miller
Browse files

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: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0c21e3aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -375,5 +375,5 @@ static int __init cpu_type_probe(void)
	return 0;
}

arch_initcall(cpu_type_probe);
early_initcall(cpu_type_probe);
#endif
+1 −1
Original line number Diff line number Diff line
@@ -168,4 +168,4 @@ int __init pcr_arch_init(void)
	return err;
}

arch_initcall(pcr_arch_init);
early_initcall(pcr_arch_init);