From patchwork Thu Jul 23 19:06:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Williamson X-Patchwork-Id: 499499 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 30BA01409B7 for ; Fri, 24 Jul 2015 05:07:26 +1000 (AEST) Received: from localhost ([::1]:42507 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZILq0-0005Lq-1g for incoming@patchwork.ozlabs.org; Thu, 23 Jul 2015 15:07:24 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37485) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZILpW-0004SK-5J for qemu-devel@nongnu.org; Thu, 23 Jul 2015 15:06:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZILpQ-00057f-MC for qemu-devel@nongnu.org; Thu, 23 Jul 2015 15:06:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40922) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZILpQ-00057M-Hp for qemu-devel@nongnu.org; Thu, 23 Jul 2015 15:06:48 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 48E9CAB2 for ; Thu, 23 Jul 2015 19:06:48 +0000 (UTC) Received: from gimli.home (ovpn-113-117.phx2.redhat.com [10.3.113.117]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t6NJ6l3D009493; Thu, 23 Jul 2015 15:06:47 -0400 From: Alex Williamson To: qemu-devel@nongnu.org Date: Thu, 23 Jul 2015 13:06:47 -0600 Message-ID: <20150723190640.28669.50698.stgit@gimli.home> In-Reply-To: <20150723190414.28669.75130.stgit@gimli.home> References: <20150723190414.28669.75130.stgit@gimli.home> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: alex.williamson@redhat.com Subject: [Qemu-devel] [PULL 2/2] vfio/pci: Fix bootindex X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org bootindex was incorrectly changed to a device Property during the platform code split, resulting in it no longer working. Remove it. Signed-off-by: Alex Williamson Cc: qemu-stable@nongnu.org # v2.3+ --- hw/vfio/pci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/vfio/pci.c b/hw/vfio/pci.c index 0af762a..4023d8e 100644 --- a/hw/vfio/pci.c +++ b/hw/vfio/pci.c @@ -3749,7 +3749,6 @@ static Property vfio_pci_dev_properties[] = { VFIO_FEATURE_ENABLE_VGA_BIT, false), DEFINE_PROP_BIT("x-req", VFIOPCIDevice, features, VFIO_FEATURE_ENABLE_REQ_BIT, true), - DEFINE_PROP_INT32("bootindex", VFIOPCIDevice, bootindex, -1), DEFINE_PROP_BOOL("x-mmap", VFIOPCIDevice, vbasedev.allow_mmap, true), /* * TODO - support passed fds... is this necessary?