qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Pankaj Gupta <pagupta@redhat.com>
To: qemu-devel@nongnu.org
Cc: jasowang@redhat.com, stefanha@redhat.com, aliguori@amazon.com,
	mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH] net: Remove vhostforce option in addition to	vhost parameter
Date: Wed, 27 May 2015 02:26:43 -0400 (EDT)	[thread overview]
Message-ID: <314829841.4949261.1432708003823.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <1425880835-13230-1-git-send-email-pagupta@redhat.com>


Ping.

Can I get any suggestions on this patch.

Best regards,
Pankaj

> 
> vhostforce was added to enable vhost when
>  guest don't have MSI-X support.
>  Now, we have scenarios like DPDK in Guest which dont use
>  interrupts and still use vhost. Also, performance of guests
>  without MSI-X support is getting less popular.
> 
>  Its OK to remove this extra option and enable vhost
>  on the basis of vhost=ON/OFF.
>  Done basic testing with vhost on/off for latest guests
>  and old guests(non-msix).
> 
> Signed-off-by: Pankaj Gupta <pagupta@redhat.com>
> ---
>  hw/net/vhost_net.c        | 2 +-
>  hw/scsi/vhost-scsi.c      | 2 +-
>  hw/virtio/vhost.c         | 6 ++----
>  include/hw/virtio/vhost.h | 3 +--
>  include/net/vhost_net.h   | 1 -
>  net/tap.c                 | 4 +---
>  net/vhost-user.c          | 1 -
>  7 files changed, 6 insertions(+), 13 deletions(-)
> 
> diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c
> index 4e3a061..7139b9f 100644
> --- a/hw/net/vhost_net.c
> +++ b/hw/net/vhost_net.c
> @@ -159,7 +159,7 @@ struct vhost_net *vhost_net_init(VhostNetOptions
> *options)
>      net->dev.vqs = net->vqs;
>  
>      r = vhost_dev_init(&net->dev, options->opaque,
> -                       options->backend_type, options->force);
> +                       options->backend_type);
>      if (r < 0) {
>          goto fail;
>      }
> diff --git a/hw/scsi/vhost-scsi.c b/hw/scsi/vhost-scsi.c
> index 618b0af..b15390e 100644
> --- a/hw/scsi/vhost-scsi.c
> +++ b/hw/scsi/vhost-scsi.c
> @@ -246,7 +246,7 @@ static void vhost_scsi_realize(DeviceState *dev, Error
> **errp)
>      s->dev.backend_features = 0;
>  
>      ret = vhost_dev_init(&s->dev, (void *)(uintptr_t)vhostfd,
> -                         VHOST_BACKEND_TYPE_KERNEL, true);
> +                         VHOST_BACKEND_TYPE_KERNEL);
>      if (ret < 0) {
>          error_setg(errp, "vhost-scsi: vhost initialization failed: %s",
>                     strerror(-ret));
> diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c
> index 5a12861..ce33e04 100644
> --- a/hw/virtio/vhost.c
> +++ b/hw/virtio/vhost.c
> @@ -811,7 +811,7 @@ static void vhost_virtqueue_cleanup(struct
> vhost_virtqueue *vq)
>  }
>  
>  int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
> -                   VhostBackendType backend_type, bool force)
> +                   VhostBackendType backend_type)
>  {
>      uint64_t features;
>      int i, r;
> @@ -874,7 +874,6 @@ int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
>      hdev->started = false;
>      hdev->memory_changed = false;
>      memory_listener_register(&hdev->memory_listener, &address_space_memory);
> -    hdev->force = force;
>      return 0;
>  fail_vq:
>      while (--i >= 0) {
> @@ -909,8 +908,7 @@ bool vhost_dev_query(struct vhost_dev *hdev, VirtIODevice
> *vdev)
>      VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(vbus);
>  
>      return !k->query_guest_notifiers ||
> -           k->query_guest_notifiers(qbus->parent) ||
> -           hdev->force;
> +           k->query_guest_notifiers(qbus->parent);
>  }
>  
>  /* Stop processing guest IO notifications in qemu.
> diff --git a/include/hw/virtio/vhost.h b/include/hw/virtio/vhost.h
> index d5593d1..27eae3e 100644
> --- a/include/hw/virtio/vhost.h
> +++ b/include/hw/virtio/vhost.h
> @@ -46,7 +46,6 @@ struct vhost_dev {
>      vhost_log_chunk_t *log;
>      unsigned long long log_size;
>      Error *migration_blocker;
> -    bool force;
>      bool memory_changed;
>      hwaddr mem_changed_start_addr;
>      hwaddr mem_changed_end_addr;
> @@ -55,7 +54,7 @@ struct vhost_dev {
>  };
>  
>  int vhost_dev_init(struct vhost_dev *hdev, void *opaque,
> -                   VhostBackendType backend_type, bool force);
> +                   VhostBackendType backend_type);
>  void vhost_dev_cleanup(struct vhost_dev *hdev);
>  bool vhost_dev_query(struct vhost_dev *hdev, VirtIODevice *vdev);
>  int vhost_dev_start(struct vhost_dev *hdev, VirtIODevice *vdev);
> diff --git a/include/net/vhost_net.h b/include/net/vhost_net.h
> index b1c18a3..966a945 100644
> --- a/include/net/vhost_net.h
> +++ b/include/net/vhost_net.h
> @@ -11,7 +11,6 @@ typedef struct VhostNetOptions {
>      VhostBackendType backend_type;
>      NetClientState *net_backend;
>      void *opaque;
> -    bool force;
>  } VhostNetOptions;
>  
>  struct vhost_net *vhost_net_init(VhostNetOptions *options);
> diff --git a/net/tap.c b/net/tap.c
> index 968df46..b9002f7 100644
> --- a/net/tap.c
> +++ b/net/tap.c
> @@ -635,13 +635,11 @@ static int net_init_tap_one(const NetdevTapOptions
> *tap, NetClientState *peer,
>          }
>      }
>  
> -    if (tap->has_vhost ? tap->vhost :
> -        vhostfdname || (tap->has_vhostforce && tap->vhostforce)) {
> +    if (tap->has_vhost ? tap->vhost : vhostfdname) {
>          VhostNetOptions options;
>  
>          options.backend_type = VHOST_BACKEND_TYPE_KERNEL;
>          options.net_backend = &s->nc;
> -        options.force = tap->has_vhostforce && tap->vhostforce;
>  
>          if (tap->has_vhostfd || tap->has_vhostfds) {
>              vhostfd = monitor_fd_param(cur_mon, vhostfdname, &err);
> diff --git a/net/vhost-user.c b/net/vhost-user.c
> index 24e050c..9966de5 100644
> --- a/net/vhost-user.c
> +++ b/net/vhost-user.c
> @@ -51,7 +51,6 @@ static int vhost_user_start(VhostUserState *s)
>      options.backend_type = VHOST_BACKEND_TYPE_USER;
>      options.net_backend = &s->nc;
>      options.opaque = s->chr;
> -    options.force = s->vhostforce;
>  
>      s->vhost_net = vhost_net_init(&options);
>  
> --
> 1.8.3.1
> 
> 
> 

  reply	other threads:[~2015-05-27  6:26 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-09  6:00 [Qemu-devel] [PATCH] net: Remove vhostforce option in addition to vhost parameter Pankaj Gupta
2015-05-27  6:26 ` Pankaj Gupta [this message]
2015-05-27  8:45   ` Jason Wang
2015-05-27 11:57     ` Michael S. Tsirkin
2015-05-28  3:21       ` Jason Wang
2015-05-28  3:36         ` Jason Wang
2015-05-28  6:28           ` Michal Privoznik
2015-05-28  6:43             ` Jason Wang
2015-05-27 12:00   ` Michael S. Tsirkin
2015-05-29  4:59     ` Pankaj Gupta

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=314829841.4949261.1432708003823.JavaMail.zimbra@redhat.com \
    --to=pagupta@redhat.com \
    --cc=aliguori@amazon.com \
    --cc=jasowang@redhat.com \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.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).