Re: [kvm-unit-tests PATCH v5 09/29] powerpc: Fix interrupt stack alignment

2023-12-18 Thread Thomas Huth
On 16/12/2023 14.42, Nicholas Piggin wrote: ppc64 requires the stack to be 16-byte aligned but the interrupt stack frame has 8-byte aligned size. Add padding to fix. Signed-off-by: Nicholas Piggin --- lib/powerpc/setup.c| 3 +++ lib/ppc64/asm/ptrace.h | 1 + 2 files changed, 4

[kvm-unit-tests PATCH v5 09/29] powerpc: Fix interrupt stack alignment

2023-12-16 Thread Nicholas Piggin
ppc64 requires the stack to be 16-byte aligned but the interrupt stack frame has 8-byte aligned size. Add padding to fix. Signed-off-by: Nicholas Piggin --- lib/powerpc/setup.c| 3 +++ lib/ppc64/asm/ptrace.h | 1 + 2 files changed, 4 insertions(+) diff --git a/lib/powerpc/setup.c