Re: [PATCH v2] target/ppc: fix Hash64 MMU update of PTE bit R

2021-11-26 Thread Leandro Lupori
On 26/11/2021 06:18, Cédric Le Goater wrote: Hello, Curiously, I didn't get the v2 email. I've received an e-mail from postmaster, saying that delivery to recipients @kaod.org have been delayed, but I don't know why.

Re: [PATCH v2] target/ppc: fix Hash64 MMU update of PTE bit R

2021-11-26 Thread Cédric Le Goater
Hello, Curiously, I didn't get the v2 email. On 11/26/21 02:13, David Gibson wrote: On Thu, Nov 25, 2021 at 03:33:22PM -0300, Leandro Lupori wrote: When updating the R bit of a PTE, the Hash64 MMU was using a wrong byte offset, causing the first byte of the adjacent PTE to be corrupted. This c

Re: [PATCH v2] target/ppc: fix Hash64 MMU update of PTE bit R

2021-11-25 Thread David Gibson
On Thu, Nov 25, 2021 at 03:33:22PM -0300, Leandro Lupori wrote: > When updating the R bit of a PTE, the Hash64 MMU was using a wrong byte > offset, causing the first byte of the adjacent PTE to be corrupted. > This caused a panic when booting FreeBSD, using the Hash MMU. > > Fixes: a2dd4e83e76b ("

Re: [PATCH v2] target/ppc: fix Hash64 MMU update of PTE bit R

2021-11-25 Thread Daniel Henrique Barboza
On 11/25/21 15:33, Leandro Lupori wrote: When updating the R bit of a PTE, the Hash64 MMU was using a wrong byte offset, causing the first byte of the adjacent PTE to be corrupted. This caused a panic when booting FreeBSD, using the Hash MMU. Fixes: a2dd4e83e76b ("ppc/hash64: Rework R and C b

[PATCH v2] target/ppc: fix Hash64 MMU update of PTE bit R

2021-11-25 Thread Leandro Lupori
When updating the R bit of a PTE, the Hash64 MMU was using a wrong byte offset, causing the first byte of the adjacent PTE to be corrupted. This caused a panic when booting FreeBSD, using the Hash MMU. Fixes: a2dd4e83e76b ("ppc/hash64: Rework R and C bit updates") Signed-off-by: Leandro Lupori --