qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Eric Blake <eblake@redhat.com>
To: marcandre.lureau@redhat.com, qemu-devel@nongnu.org
Cc: yuanhan.liu@linux.intel.com, victork@redhat.com, mst@redhat.com,
	jonshin@cisco.com, mukawa@igel.co.jp
Subject: Re: [Qemu-devel] [PATCH v2 01/23] misc: indentation
Date: Fri, 24 Jun 2016 08:19:03 -0600	[thread overview]
Message-ID: <576D4157.5000605@redhat.com> (raw)
In-Reply-To: <20160624135110.17260-2-marcandre.lureau@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 932 bytes --]

On 06/24/2016 07:50 AM, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
>  hw/net/vhost_net.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Eric Blake <eblake@redhat.com>

> 
> diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c
> index 50f4dcd..3f1fecc 100644
> --- a/hw/net/vhost_net.c
> +++ b/hw/net/vhost_net.c
> @@ -313,7 +313,7 @@ int vhost_net_start(VirtIODevice *dev, NetClientState *ncs,
>           * properly.
>           */
>          if (net->nc->info->type == NET_CLIENT_OPTIONS_KIND_VHOST_USER) {
> -                dev->use_guest_notifier_mask = false;
> +            dev->use_guest_notifier_mask = false;
>          }
>       }
>  
> 

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]

  reply	other threads:[~2016-06-24 14:19 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-24 13:50 [Qemu-devel] [PATCH v2 00/23] vhost-user reconnect fixes marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 01/23] misc: indentation marcandre.lureau
2016-06-24 14:19   ` Eric Blake [this message]
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 02/23] vhost-user: minor simplification marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 03/23] vhost: don't assume opaque is a fd, use backend cleanup marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 04/23] vhost: make vhost_log_put() idempotent marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 05/23] vhost: call vhost_log_put() on cleanup marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 06/23] vhost: add vhost device only after all success marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 07/23] vhost: make vhost_dev_cleanup() idempotent marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 08/23] vhost-net: always call vhost_dev_cleanup() on failure marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 09/23] vhost: fix calling vhost_dev_cleanup() after vhost_dev_init() marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 10/23] vhost: change some assert() for error_report() or silent fail marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 11/23] vhost: use error_report() instead of fprintf(stderr, ...) marcandre.lureau
2016-06-24 13:50 ` [Qemu-devel] [PATCH v2 12/23] vhost-user: check qemu_chr_fe_set_msgfds() return value marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 13/23] vhost-user: check vhost_user_{read, write}() " marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 14/23] qemu-char: check socket is actually connected marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 15/23] vhost-user: keep vhost_net after a disconnection marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 16/23] Revert "vhost-net: do not crash if backend is not present" marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 17/23] get_vhost_net() should be != null after vhost_user_init marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 18/23] vhost-net: success if backend has no ops->vhost_migration_done marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 19/23] vhost: add assert() to check runtime behaviour marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 20/23] char: add chr_wait_connected callback marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 21/23] char: add and use tcp_chr_wait_connected marcandre.lureau
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 22/23] vhost-user: wait until backend init is completed marcandre.lureau
2016-06-30  6:38   ` Yuanhan Liu
2016-06-30  9:22     ` Marc-André Lureau
2016-06-30 13:02       ` Yuanhan Liu
2016-06-24 13:51 ` [Qemu-devel] [PATCH v2 23/23] tests: add /vhost-user/connect-fail test marcandre.lureau

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=576D4157.5000605@redhat.com \
    --to=eblake@redhat.com \
    --cc=jonshin@cisco.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=mst@redhat.com \
    --cc=mukawa@igel.co.jp \
    --cc=qemu-devel@nongnu.org \
    --cc=victork@redhat.com \
    --cc=yuanhan.liu@linux.intel.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).