qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Pavel Fedin <p.fedin@samsung.com>, qemu-devel@nongnu.org
Cc: "'Michael S. Tsirkin'" <mst@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] memory: emulate ioeventfd
Date: Fri, 20 Nov 2015 16:59:34 +0100	[thread overview]
Message-ID: <564F4366.90402@redhat.com> (raw)
In-Reply-To: <006e01d12377$0b9c2d40$22d487c0$@samsung.com>



On 20/11/2015 10:37, Pavel Fedin wrote:
> The ioeventfd mechanism is used by vhost, dataplane, and virtio-pci to
> turn guest MMIO/PIO writes into eventfd file descriptor events.  This
> allows arbitrary threads to be notified when the guest writes to a
> specific MMIO/PIO address.
> 
> qtest and TCG do not support ioeventfd because memory writes are not
> checked against registered ioeventfds in QEMU.  This patch implements
> this in memory_region_dispatch_write() so qtest can use ioeventfd.
> 
> Also this patch fixes vhost aborting on some misconfigured old kernels
> like 3.18.0 on ARM. It is possible to explicitly enable CONFIG_EVENTFD
> in expert settings, while MMIO binding support in KVM will still be
> missing.
> 
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> Signed-off-by: Pavel Fedin <p.fedin@samsung.com>
> ---
> RFC => PATCH:
> - Add !kvm_eventfds_enabled() conditions to bypass eventfd injection when not needed
> - Renamed "ioeventfd" to "eventfd", just to make words shorter
> - Add a one-shot warning about missing MMIO bindings in KVM
> ---
>  kvm-all.c |  6 ++++--
>  memory.c  | 42 ++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 46 insertions(+), 2 deletions(-)
> 
> diff --git a/kvm-all.c b/kvm-all.c
> index ddb007a..70f5cec 100644
> --- a/kvm-all.c
> +++ b/kvm-all.c
> @@ -1633,8 +1633,10 @@ static int kvm_init(MachineState *ms)
>  
>      kvm_state = s;
>  
> -    s->memory_listener.listener.eventfd_add = kvm_mem_ioeventfd_add;
> -    s->memory_listener.listener.eventfd_del = kvm_mem_ioeventfd_del;
> +    if (kvm_eventfds_allowed) {
> +        s->memory_listener.listener.eventfd_add = kvm_mem_ioeventfd_add;
> +        s->memory_listener.listener.eventfd_del = kvm_mem_ioeventfd_del;
> +    }
>      s->memory_listener.listener.coalesced_mmio_add = kvm_coalesce_mmio_region;
>      s->memory_listener.listener.coalesced_mmio_del = kvm_uncoalesce_mmio_region;
>  
> diff --git a/memory.c b/memory.c
> index e193658..4d138fb 100644
> --- a/memory.c
> +++ b/memory.c
> @@ -18,12 +18,14 @@
>  #include "exec/ioport.h"
>  #include "qapi/visitor.h"
>  #include "qemu/bitops.h"
> +#include "qemu/error-report.h"
>  #include "qom/object.h"
>  #include "trace.h"
>  #include <assert.h>
>  
>  #include "exec/memory-internal.h"
>  #include "exec/ram_addr.h"
> +#include "sysemu/kvm.h"
>  #include "sysemu/sysemu.h"
>  
>  //#define DEBUG_UNASSIGNED
> @@ -1141,6 +1143,32 @@ MemTxResult memory_region_dispatch_read(MemoryRegion *mr,
>      return r;
>  }
>  
> +/* Return true if an eventfd was signalled */
> +static bool memory_region_dispatch_write_eventfds(MemoryRegion *mr,
> +                                                    hwaddr addr,
> +                                                    uint64_t data,
> +                                                    unsigned size,
> +                                                    MemTxAttrs attrs)
> +{
> +    MemoryRegionIoeventfd ioeventfd = {
> +        .addr = addrrange_make(int128_make64(addr), int128_make64(size)),
> +        .data = data,
> +    };
> +    unsigned i;
> +
> +    for (i = 0; i < mr->ioeventfd_nb; i++) {
> +        ioeventfd.match_data = mr->ioeventfds[i].match_data;
> +        ioeventfd.e = mr->ioeventfds[i].e;
> +
> +        if (memory_region_ioeventfd_equal(ioeventfd, mr->ioeventfds[i])) {
> +            event_notifier_set(ioeventfd.e);
> +            return true;
> +        }
> +    }
> +
> +    return false;
> +}
> +
>  MemTxResult memory_region_dispatch_write(MemoryRegion *mr,
>                                           hwaddr addr,
>                                           uint64_t data,
> @@ -1154,6 +1182,11 @@ MemTxResult memory_region_dispatch_write(MemoryRegion *mr,
>  
>      adjust_endianness(mr, &data, size);
>  
> +    if ((!kvm_eventfds_enabled()) &&
> +        memory_region_dispatch_write_eventfds(mr, addr, data, size, attrs)) {
> +        return MEMTX_OK;
> +    }
> +
>      if (mr->ops->write) {
>          return access_with_adjusted_size(addr, &data, size,
>                                           mr->ops->impl.min_access_size,
> @@ -1672,6 +1705,8 @@ void memory_region_clear_global_locking(MemoryRegion *mr)
>      mr->global_locking = false;
>  }
>  
> +static bool userspace_eventfd_warning;
> +
>  void memory_region_add_eventfd(MemoryRegion *mr,
>                                 hwaddr addr,
>                                 unsigned size,
> @@ -1688,6 +1723,13 @@ void memory_region_add_eventfd(MemoryRegion *mr,
>      };
>      unsigned i;
>  
> +    if (kvm_enabled() && (!(kvm_eventfds_enabled() ||
> +                            userspace_eventfd_warning))) {
> +        userspace_eventfd_warning = true;
> +        error_report("Using eventfd without MMIO binding in KVM. "
> +                     "Suboptimal performance expected");
> +    }
> +
>      if (size) {
>          adjust_endianness(mr, &mrfd.data, size);
>      }
> 

Queued for 2.6.

Paolo

      parent reply	other threads:[~2015-11-20 15:59 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-20  9:37 [Qemu-devel] [PATCH] memory: emulate ioeventfd Pavel Fedin
2015-11-20  9:41 ` Michael S. Tsirkin
2015-11-20 15:59 ` Paolo Bonzini [this message]

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=564F4366.90402@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=mst@redhat.com \
    --cc=p.fedin@samsung.com \
    --cc=qemu-devel@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).