|
| From: | Richard Henderson |
| Subject: | Re: [Qemu-devel] [PATCH v3 2/5] target/arm: relax permission checks for HWCAP_CPUID registers |
| Date: | Tue, 26 Jun 2018 22:25:40 -0700 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 |
On 06/25/2018 09:00 AM, Alex Bennée wrote:
> +#ifdef CONFIG_USER_ONLY
> + /* Some AArch64 CPU ID/feature are exported to userspace
> + * by the kernel (see HWCAP_CPUID) */
> + if (r->opc0 == 3 && r->crn == 0 &&
> + (r->crm == 0 ||
> + (r->crm >= 4 && r->crm <= 7))) {
> + mask = PL0_R;
> + break;
> + }
> +#endif
Why not just set mask to PL0U_R | PL1_RW?
This mask doesn't affect the actual permissions, just the check.
Then of course merge with the next patch.
r~
| [Prev in Thread] | Current Thread | [Next in Thread] |