From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55236) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XHxTj-0007Nb-IX for qemu-devel@nongnu.org; Thu, 14 Aug 2014 12:02:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XHxTb-00080o-VU for qemu-devel@nongnu.org; Thu, 14 Aug 2014 12:02:15 -0400 Received: from mx1.redhat.com ([209.132.183.28]:32458) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XHxTb-00080d-Nd for qemu-devel@nongnu.org; Thu, 14 Aug 2014 12:02:07 -0400 Date: Thu, 14 Aug 2014 18:02:14 +0200 From: "Michael S. Tsirkin" Message-ID: <1408032125-10596-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] qom-test: blacklist xenigd List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Tiejun Chen , =?us-ascii?B?PT9VVEYtOD9xP0FuZHJlYXM9MjBGPUMzPUE0cmJlcj89?= , Anthony Liguori Patch xen:hw:i386:pc_piix: introduce new machine for IGD passthrough adds a new machine type. Blacklist it since it forces xen accel. Cc: Tiejun Chen Signed-off-by: Michael S. Tsirkin --- tests/qom-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qom-test.c b/tests/qom-test.c index 4246382..10799e2 100644 --- a/tests/qom-test.c +++ b/tests/qom-test.c @@ -16,7 +16,7 @@ #include "qapi/qmp/types.h" static const char *blacklist_x86[] = { - "xenfv", "xenpv", NULL + "xenfv", "xenpv", "xenigd", NULL }; static const struct { -- MST