From: Paolo Bonzini <pbonzini@redhat.com>
To: snabb-devel@googlegroups.com, qemu-devel@nongnu.org, mst@redhat.com
Cc: tech@virtualopensystems.com, n.nikolaev@virtualopensystems.com
Subject: Re: [Qemu-devel] [PATCH 2/3] vhost-user: Fix VHOST_SET_MEM_TABLE processing
Date: Fri, 11 Jul 2014 22:56:41 +0200 [thread overview]
Message-ID: <53C04F89.2020202@redhat.com> (raw)
In-Reply-To: <20140708140601.7314.97988.stgit@3820>
Il 08/07/2014 16:06, Nikolay Nikolaev ha scritto:
> @@ -216,6 +216,10 @@ static int vhost_user_call(struct vhost_dev *dev, unsigned long int request,
> case VHOST_SET_MEM_TABLE:
> for (i = 0; i < dev->mem->nregions; ++i) {
> struct vhost_memory_region *reg = dev->mem->regions + i;
> + if (!qemu_is_ram_block(reg->guest_phys_addr)) {
> + /* this is non-RAM region - skip it */
> + continue;
> + }
> fd = qemu_get_ram_fd(reg->guest_phys_addr);
> if (fd > 0) {
> msg.memory.regions[fd_num].userspace_addr = reg->userspace_addr;
This is wrong. qemu_get_ram_fd doesn't accept a guest physical address.
ram_addr_t are opaque values that are assigned in qemu_ram_alloc.
In fact, RAM regions are filtered by
static bool vhost_section(MemoryRegionSection *section)
{
return memory_region_is_ram(section->mr);
}
You can find the ram_addr_t corresponding to the userspace_addr using
qemu_ram_addr_from_host, and then call qemu_get_ram_fd on it.
Paolo
next prev parent reply other threads:[~2014-07-11 20:57 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-08 14:05 [Qemu-devel] [PATCH 0/3] vhost-user fixes Nikolay Nikolaev
2014-07-08 14:05 ` [Qemu-devel] [PATCH 1/3] Add qemu_is_ram_block Nikolay Nikolaev
2014-07-08 14:06 ` [Qemu-devel] [PATCH 2/3] vhost-user: Fix VHOST_SET_MEM_TABLE processing Nikolay Nikolaev
2014-07-11 20:56 ` Paolo Bonzini [this message]
2014-07-08 14:06 ` [Qemu-devel] [PATCH 3/3] qtest: Adapt vhost-user-test to latehs vhost-user changes Nikolay Nikolaev
2014-07-11 18:42 ` [Qemu-devel] [PATCH 0/3] vhost-user fixes Michael S. Tsirkin
2014-07-11 20:57 ` 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=53C04F89.2020202@redhat.com \
--to=pbonzini@redhat.com \
--cc=mst@redhat.com \
--cc=n.nikolaev@virtualopensystems.com \
--cc=qemu-devel@nongnu.org \
--cc=snabb-devel@googlegroups.com \
--cc=tech@virtualopensystems.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 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).