]> git.baikalelectronics.ru Git - kernel.git/commit
x86/xen: Make the boot CPU idle task reliable
authorMiroslav Benes <mbenes@suse.cz>
Thu, 26 Mar 2020 09:26:02 +0000 (10:26 +0100)
committerJuergen Gross <jgross@suse.com>
Mon, 30 Mar 2020 15:32:04 +0000 (17:32 +0200)
commitddb2d4bc5e6464c39950edcc41a178cfa5027e2d
tree5c8500376ebbb9fe73979e6d1a49d04c2652482a
parent917851226fcc841eb04ad29e0ec61aa31e855778
x86/xen: Make the boot CPU idle task reliable

The unwinder reports the boot CPU idle task's stack on XEN PV as
unreliable, which affects at least live patching. There are two reasons
for this. First, the task does not follow the x86 convention that its
stack starts at the offset right below saved pt_regs. It allows the
unwinder to easily detect the end of the stack and verify it. Second,
startup_xen() function does not store the return address before jumping
to xen_start_kernel() which confuses the unwinder.

Amend both issues by moving the starting point of initial stack in
startup_xen() and storing the return address before the jump, which is
exactly what call instruction does.

Signed-off-by: Miroslav Benes <mbenes@suse.cz>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
arch/x86/xen/xen-head.S