From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=48244 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PssmE-0004Tm-Nz for qemu-devel@nongnu.org; Fri, 25 Feb 2011 03:11:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PssmD-0006eX-Fk for qemu-devel@nongnu.org; Fri, 25 Feb 2011 03:11:50 -0500 Received: from mx1.redhat.com ([209.132.183.28]:36115) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PssmD-0006dv-6s for qemu-devel@nongnu.org; Fri, 25 Feb 2011 03:11:49 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p1P8BlMs013511 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 25 Feb 2011 03:11:48 -0500 From: Jason Wang Date: Fri, 25 Feb 2011 16:11:27 +0800 Message-ID: <20110225081126.6224.57164.stgit@dhcp-91-7.nay.redhat.com.englab.nay.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [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: qemu-devel@nongnu.org, mst@redhat.com Signed-off-by: Jason Wang --- 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 */ } },