From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Michael S. Tsirkin" Subject: Re: [PATCHv6 05/12] qemu/pci: MSI-X support functions Date: Fri, 26 Jun 2009 17:26:35 +0300 Message-ID: <20090626142635.GD5939@redhat.com> References: <20090621164954.GF10164@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii To: Paul Brook , Avi Kivity , qemu-devel@nongnu.org, Carsten Otte , kvm@vger.kernel.org, Rusty Russell , vi Return-path: Received: from mx2.redhat.com ([66.187.237.31]:58982 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753889AbZFZO3R (ORCPT ); Fri, 26 Jun 2009 10:29:17 -0400 Content-Disposition: inline In-Reply-To: <20090621164954.GF10164@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On Sun, Jun 21, 2009 at 07:49:54PM +0300, Michael S. Tsirkin wrote: > + dev->msix_mmio_index = cpu_register_io_memory(0, msix_mmio_read, > + msix_mmio_write, dev); The signature for cpu_register_io_memory changed meanwhile so this now needs to be: + dev->msix_mmio_index = cpu_register_io_memory(msix_mmio_read, + msix_mmio_write, dev); Anthony, I guess you figured this out, or do you want me to respin the series with this minor fix? -- MST