Re: [PATCH 1/7] target/ppc: Enforce that the root page directory size must be at least 5

2020-03-30 Thread David Gibson
On Mon, Mar 30, 2020 at 11:49:40AM +0200, Cédric Le Goater wrote: > From: Suraj Jitindar Singh > > According to the ISA the root page directory size of a radix tree for > either process- or partition-scoped translation must be >= 5. > > Thus add this to the list of conditions checked when

Re: [PATCH 1/7] target/ppc: Enforce that the root page directory size must be at least 5

2020-03-30 Thread Greg Kurz
On Mon, 30 Mar 2020 11:49:40 +0200 Cédric Le Goater wrote: > From: Suraj Jitindar Singh > > According to the ISA the root page directory size of a radix tree for > either process- or partition-scoped translation must be >= 5. > > Thus add this to the list of conditions checked when validating

[PATCH 1/7] target/ppc: Enforce that the root page directory size must be at least 5

2020-03-30 Thread Cédric Le Goater
From: Suraj Jitindar Singh According to the ISA the root page directory size of a radix tree for either process- or partition-scoped translation must be >= 5. Thus add this to the list of conditions checked when validating the partition table entry in validate_pate(); Signed-off-by: Suraj