qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Alexey Kardashevskiy <aik@ozlabs.ru>
To: David Gibson <david@gibson.dropbear.id.au>,
	bharata@linux.vnet.ibm.com, pbonzini@redhat.com
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] pseries: Allow TCG h_enter to work with hotplugged memory
Date: Thu, 21 Jan 2016 12:48:46 +1100	[thread overview]
Message-ID: <56A038FE.4060700@ozlabs.ru> (raw)
In-Reply-To: <1453340463-7654-1-git-send-email-david@gibson.dropbear.id.au>

On 01/21/2016 12:41 PM, David Gibson wrote:
> The implementation of the H_ENTER hypercall for PAPR guests needs to
> enforce correct access attributes on the inserted HPTE.  This means
> determining if the HPTE's real address is a regular RAM address (which
> requires attributes for coherent access) or an IO address (which requires
> attributes for cache-inhibited access).
>
> At the moment this check is implemented with (raddr < machine->ram_size),
> but that only handles addresses in the base RAM area, not any hotplugged
> RAM.
>
> This patch corrects the problem with a new helper.
>
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>


Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>



> ---
>   hw/ppc/spapr_hcall.c | 19 +++++++++++++++++--
>   1 file changed, 17 insertions(+), 2 deletions(-)
>
> diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c
> index cebceea..ea33bc7 100644
> --- a/hw/ppc/spapr_hcall.c
> +++ b/hw/ppc/spapr_hcall.c
> @@ -84,10 +84,25 @@ static inline bool valid_pte_index(CPUPPCState *env, target_ulong pte_index)
>       return true;
>   }
>
> +static bool is_ram_address(sPAPRMachineState *spapr, hwaddr addr)
> +{
> +    MachineState *machine = MACHINE(spapr);
> +    MemoryHotplugState *hpms = &spapr->hotplug_memory;
> +
> +    if (addr < machine->ram_size) {
> +        return true;
> +    }
> +    if ((addr >= hpms->base)
> +        && ((addr - hpms->base) < memory_region_size(&hpms->mr))) {
> +        return true;
> +    }
> +
> +    return false;
> +}
> +
>   static target_ulong h_enter(PowerPCCPU *cpu, sPAPRMachineState *spapr,
>                               target_ulong opcode, target_ulong *args)
>   {
> -    MachineState *machine = MACHINE(spapr);
>       CPUPPCState *env = &cpu->env;
>       target_ulong flags = args[0];
>       target_ulong pte_index = args[1];
> @@ -119,7 +134,7 @@ static target_ulong h_enter(PowerPCCPU *cpu, sPAPRMachineState *spapr,
>
>       raddr = (ptel & HPTE64_R_RPN) & ~((1ULL << page_shift) - 1);
>
> -    if (raddr < machine->ram_size) {
> +    if (is_ram_address(spapr, raddr)) {
>           /* Regular RAM - should have WIMG=0010 */
>           if ((ptel & HPTE64_R_WIMG) != HPTE64_R_M) {
>               return H_PARAMETER;
>


-- 
Alexey

  reply	other threads:[~2016-01-21  1:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-21  1:41 [Qemu-devel] [PATCH] pseries: Allow TCG h_enter to work with hotplugged memory David Gibson
2016-01-21  1:48 ` Alexey Kardashevskiy [this message]
2016-01-21  3:50   ` David Gibson
2016-01-21 10:19     ` Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=56A038FE.4060700@ozlabs.ru \
    --to=aik@ozlabs.ru \
    --cc=bharata@linux.vnet.ibm.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).