From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56429 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pst4H-0003mo-DJ for qemu-devel@nongnu.org; Fri, 25 Feb 2011 03:30:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pst4D-0003IW-O5 for qemu-devel@nongnu.org; Fri, 25 Feb 2011 03:30:29 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42904) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pst4D-0003Hv-DM for qemu-devel@nongnu.org; Fri, 25 Feb 2011 03:30:25 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p1P8UN75018652 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 25 Feb 2011 03:30:23 -0500 Date: Fri, 25 Feb 2011 10:30:13 +0200 From: "Michael S. Tsirkin" Message-ID: <20110225083013.GC17290@redhat.com> References: <20110225081126.6224.57164.stgit@dhcp-91-7.nay.redhat.com.englab.nay.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110225081126.6224.57164.stgit@dhcp-91-7.nay.redhat.com.englab.nay.redhat.com> Subject: [Qemu-devel] Re: [PATCH] net: Add the missing option declaration of "vhostforce" List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jason Wang Cc: qemu-devel@nongnu.org On Fri, Feb 25, 2011 at 04:11:27PM +0800, Jason Wang wrote: > Signed-off-by: Jason Wang Acked-by: Michael S. Tsirkin > --- > net.c | 6 +++++- > 1 files changed, 5 insertions(+), 1 deletions(-) > > diff --git a/net.c b/net.c > index 9ba5be2..21d4443 100644 > --- a/net.c > +++ b/net.c > @@ -1025,7 +1025,11 @@ static const struct { > .name = "vhostfd", > .type = QEMU_OPT_STRING, > .help = "file descriptor of an already opened vhost net device", > - }, > + }, { > + .name = "vhostforce", > + .type = QEMU_OPT_BOOL, > + .help = "force vhost on for non-MSIX virtio guests", > + }, > #endif /* _WIN32 */ > { /* end of list */ } > },