>>> So: >>> - change the test when setting up a PACA to consider the actual value of >>> the MSR rather than the CPU feature. >>> >>> - move the PACA setup to before the cpu feature parsing. >> >> Hmm. Problem is that equally we want PACA to be sane before we call too >> far into the rest of the kernel ("generic dt parsing code"). > > But currently we call into that code with no paca at all. Or rather, > with r13 pointing somewhere random that will be interpreted as being a > paca. > > This took a while for Daniel to debug because depending on how you boot > r13 contains a different junk value. That junk value may not point to > memory at all, or if it does the memory it points to may or may not send > you down the wrong path, depending on which exact bit you're looking at > in some random location. > > So this is really not about kcov from my POV, that's just how we > discovered it.
Ah, yes. I agree with mpe, and reading back over my commit message I think I did a pretty poor job of explaining it. How about this for a commit message: --- powerpc: setup_64: set up PACA before parsing device tree Currently, we set up the PACA after parsing the device tree for CPU features. Before that, r13 contains random data, which means there is random data in r13 while we're running the generic dt parsing code. This random data varies depending on whether we boot through a vmlinux or a zImage: for the vmlinux case it's usually around zero, but for zImages we see random values like 912a72603d420015. This is poor practice, and can also lead to difficult-to-debug crashes. For example, when kcov is enabled, the kcov instrumentation attempts to read preempt_count out of the current task, which goes via the PACA. This then crashes in the zImage case. To resolve this: - move the PACA setup to before the cpu feature parsing. - because we no longer have access to cpu feature flags in PACA setup, change the HV feature test in the PACA setup path to consider the actual value of the MSR rather than the CPU feature. Translations get switched on once we leave early_setup, so I think we'd already catch any other cases where the PACA or task aren't set up. Boot tested on a P9 guest and host. Fixes: fb0b0a73b223 ("powerpc: Enable kcov") Cc: Andrew Donnellan <a...@linux.ibm.com> Cc: sta...@vger.kernel.org Reviewed-by: Andrew Donnellan <a...@linux.ibm.com> Suggested-by: Michael Ellerman <m...@ellerman.id.au> Signed-off-by: Daniel Axtens <d...@axtens.net> --- Regards, Daniel > > cheers