Re: [PATCH] target/ppc: Check effective address validity

2022-01-03 Thread Cédric Le Goater
On 12/31/21 08:31, Cédric Le Goater wrote: For Radix translation, the EA range is 64-bits. when EA(2:11) are nonzero, a segment interrupt should occur. Signed-off-by: Cédric Le Goater Applied in ppc-next. Thanks, C.

Re: [PATCH] target/ppc: Check effective address validity

2022-01-03 Thread Frederic Barrat
On 31/12/2021 08:31, Cédric Le Goater wrote: For Radix translation, the EA range is 64-bits. when EA(2:11) are nonzero, a segment interrupt should occur. Signed-off-by: Cédric Le Goater --- Looks ok to me. Reviewed-by: Frederic Barrat Fred target/ppc/mmu-radix64.h | 1 + target/

[PATCH] target/ppc: Check effective address validity

2021-12-30 Thread Cédric Le Goater
For Radix translation, the EA range is 64-bits. when EA(2:11) are nonzero, a segment interrupt should occur. Signed-off-by: Cédric Le Goater --- target/ppc/mmu-radix64.h | 1 + target/ppc/mmu-radix64.c | 5 + 2 files changed, 6 insertions(+) diff --git a/target/ppc/mmu-radix64.h b/target/pp