All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Liu Sheng <liusheng@linux.vnet.ibm.com>
Cc: kvm@vger.kernel.org, mtosatti@redhat.com,
	xiaoguangrong@linux.vnet.ibm.com, qemu-devel@nongnu.org,
	aliguori@us.ibm.com
Subject: Re: [PATCH 3/3] support readonly memory feature in qemu
Date: Sun, 09 Sep 2012 18:42:29 +0300	[thread overview]
Message-ID: <504CB8E5.8040509@redhat.com> (raw)
In-Reply-To: <1347006389-543-4-git-send-email-liusheng@linux.vnet.ibm.com>

On 09/07/2012 11:26 AM, Liu Sheng wrote:
> as readonly memory is support in kvm, this patch supports this feature
> in qemu, mainly pluging the memory region with KVM_MEM_READONLY flag
> to kvm.
> 
> @@ -1607,10 +1623,19 @@ int kvm_cpu_exec(CPUArchState *env)
>              break;
>          case KVM_EXIT_MMIO:
>              DPRINTF("handle_mmio\n");
> -            cpu_physical_memory_rw(run->mmio.phys_addr,
> -                                   run->mmio.data,
> -                                   run->mmio.len,
> -                                   run->mmio.is_write);
> +            if (run->mmio.write_readonly_mem) {
> +                fprintf(stderr, "Guest is writing readonly memory, "
> +                    "phys_addr: %llx, len:%x, data[0]:%c, skip it.\n",
> +                    run->mmio.phys_addr,
> +                    run->mmio.len,
> +                    run->mmio.data[0]);
> +            } else {
> +                cpu_physical_memory_rw(run->mmio.phys_addr,
> +                                       run->mmio.data,
> +                                       run->mmio.len,
> +                                       run->mmio.is_write);
> +            }
> +
>              ret = 0;

I don't think this is needed.  A cpu_physical_memory_rw() to a ROM ought
to be ignored (and btw, it may not be a ROM - it could be a ROM/Device,
in which case it ought not to be ignored).


-- 
error compiling committee.c: too many arguments to function

WARNING: multiple messages have this Message-ID (diff)
From: Avi Kivity <avi@redhat.com>
To: Liu Sheng <liusheng@linux.vnet.ibm.com>
Cc: aliguori@us.ibm.com, mtosatti@redhat.com, qemu-devel@nongnu.org,
	kvm@vger.kernel.org, xiaoguangrong@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH 3/3] support readonly memory feature in qemu
Date: Sun, 09 Sep 2012 18:42:29 +0300	[thread overview]
Message-ID: <504CB8E5.8040509@redhat.com> (raw)
In-Reply-To: <1347006389-543-4-git-send-email-liusheng@linux.vnet.ibm.com>

On 09/07/2012 11:26 AM, Liu Sheng wrote:
> as readonly memory is support in kvm, this patch supports this feature
> in qemu, mainly pluging the memory region with KVM_MEM_READONLY flag
> to kvm.
> 
> @@ -1607,10 +1623,19 @@ int kvm_cpu_exec(CPUArchState *env)
>              break;
>          case KVM_EXIT_MMIO:
>              DPRINTF("handle_mmio\n");
> -            cpu_physical_memory_rw(run->mmio.phys_addr,
> -                                   run->mmio.data,
> -                                   run->mmio.len,
> -                                   run->mmio.is_write);
> +            if (run->mmio.write_readonly_mem) {
> +                fprintf(stderr, "Guest is writing readonly memory, "
> +                    "phys_addr: %llx, len:%x, data[0]:%c, skip it.\n",
> +                    run->mmio.phys_addr,
> +                    run->mmio.len,
> +                    run->mmio.data[0]);
> +            } else {
> +                cpu_physical_memory_rw(run->mmio.phys_addr,
> +                                       run->mmio.data,
> +                                       run->mmio.len,
> +                                       run->mmio.is_write);
> +            }
> +
>              ret = 0;

I don't think this is needed.  A cpu_physical_memory_rw() to a ROM ought
to be ignored (and btw, it may not be a ROM - it could be a ROM/Device,
in which case it ought not to be ignored).


-- 
error compiling committee.c: too many arguments to function

  parent reply	other threads:[~2012-09-09 15:42 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-07  8:26 [PATCH 0/3] support kvm readonly memory slot in qemu Liu Sheng
2012-09-07  8:26 ` [Qemu-devel] " Liu Sheng
2012-09-07  8:26 ` [PATCH 1/3] set the readonly property of rom memory region in pc Liu Sheng
2012-09-07  8:26   ` [Qemu-devel] " Liu Sheng
2012-09-07  8:26 ` [PATCH 2/3] update kvm related the head file from kernel Liu Sheng
2012-09-07  8:26   ` [Qemu-devel] " Liu Sheng
2012-09-07  8:49   ` Jan Kiszka
2012-09-07  8:49     ` [Qemu-devel] " Jan Kiszka
2012-09-07  9:39     ` Xiao Guangrong
2012-09-07  9:39       ` [Qemu-devel] " Xiao Guangrong
2012-09-07 10:17       ` Jan Kiszka
2012-09-07 10:17         ` [Qemu-devel] " Jan Kiszka
2012-09-07  8:26 ` [PATCH 3/3] support readonly memory feature in qemu Liu Sheng
2012-09-07  8:26   ` [Qemu-devel] " Liu Sheng
2012-09-07  8:50   ` Jan Kiszka
2012-09-07  8:50     ` [Qemu-devel] " Jan Kiszka
2012-09-09 15:45     ` Avi Kivity
2012-09-09 15:45       ` [Qemu-devel] " Avi Kivity
2012-09-10  9:25       ` Jan Kiszka
2012-09-10  9:25         ` [Qemu-devel] " Jan Kiszka
2012-09-11  3:02         ` Kevin O'Connor
2012-09-11  3:02           ` [Qemu-devel] " Kevin O'Connor
2012-09-11 15:31           ` Jan Kiszka
2012-09-11 15:31             ` [Qemu-devel] " Jan Kiszka
2012-09-11 16:15             ` Anthony Liguori
2012-09-11 16:15               ` [Qemu-devel] " Anthony Liguori
2012-09-11 16:33               ` Jan Kiszka
2012-09-11 16:33                 ` [Qemu-devel] " Jan Kiszka
2012-09-12  0:01               ` Kevin O'Connor
2012-09-12  0:01                 ` [Qemu-devel] " Kevin O'Connor
2012-09-09 15:42   ` Avi Kivity [this message]
2012-09-09 15:42     ` Avi Kivity

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=504CB8E5.8040509@redhat.com \
    --to=avi@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=liusheng@linux.vnet.ibm.com \
    --cc=mtosatti@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=xiaoguangrong@linux.vnet.ibm.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.