From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32981) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xeju4-0005jn-HP for qemu-devel@nongnu.org; Thu, 16 Oct 2014 08:11:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xejtw-0000kp-9i for qemu-devel@nongnu.org; Thu, 16 Oct 2014 08:11:36 -0400 Received: from smtp02.citrix.com ([66.165.176.63]:3164) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xejtw-0000kH-3g for qemu-devel@nongnu.org; Thu, 16 Oct 2014 08:11:28 -0400 From: Paul Durrant Date: Thu, 16 Oct 2014 13:11:19 +0100 Message-ID: <1413461481-22684-1-git-send-email-paul.durrant@citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH v4 0/2] Use ioreq-server API List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, xen-devel@lists.xenproject.org This patch series is v4 of what was originally the single patch "Xen: Use the ioreq-server API when available". v2 of the series moved the code that added the PCI bus listener to patch #1 and the remainder of the changes to patch #2. Patch #2 was then re-worked to constrain the #ifdefing to xen_common.h, as requested by Stefano. v3 of the series modifies patch #1 to add the listener interface into the core qdev, rather than the PCI bus code. This change only requires trivial modification to patch #2, to only act on realize/ unrealize of PCI devices. Patch #2 was also modified at Stefano's request to remove an extra identity check of memory sections against the ram region. v4 of the series replaces the use of a vmstate pre_save callback with extra code in the existing runstate change notification callback. It also tidies up some things in xen-hvm.c pointed out by Stefano and adds his ack to patch #2.