From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:52647) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UZiW5-0001JZ-OF for qemu-devel@nongnu.org; Tue, 07 May 2013 10:05:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UZiW2-0001fO-2p for qemu-devel@nongnu.org; Tue, 07 May 2013 10:05:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10461) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UZiW1-0001f5-RC for qemu-devel@nongnu.org; Tue, 07 May 2013 10:05:14 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r47E5DOY007102 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 7 May 2013 10:05:13 -0400 Date: Tue, 7 May 2013 17:05:09 +0300 From: "Michael S. Tsirkin" Message-ID: <20130507140509.GA22422@redhat.com> References: <1367933676-21854-1-git-send-email-kraxel@redhat.com> <1367933676-21854-2-git-send-email-kraxel@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1367933676-21854-2-git-send-email-kraxel@redhat.com> Subject: Re: [Qemu-devel] [PATCH 1/6] pci: add VMSTATE_MSIX List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: qemu-devel@nongnu.org On Tue, May 07, 2013 at 03:34:31PM +0200, Gerd Hoffmann wrote: > Using a trick cut+pasted from vmstate_scsi_device > to wind up msix_save and msix_load. Any reason this is not signed-off by you? > --- > hw/pci/msix.c | 33 +++++++++++++++++++++++++++++++++ > include/hw/pci/msix.h | 11 +++++++++++ > 2 files changed, 44 insertions(+) > > diff --git a/hw/pci/msix.c b/hw/pci/msix.c > index e231a0d..6da75ec 100644 > --- a/hw/pci/msix.c > +++ b/hw/pci/msix.c > @@ -569,3 +569,36 @@ void msix_unset_vector_notifiers(PCIDevice *dev) > dev->msix_vector_release_notifier = NULL; > dev->msix_vector_poll_notifier = NULL; > } > + > +static void put_msix_state(QEMUFile *f, void *pv, size_t size) > +{ > + msix_save(pv, f); > +} > + > +static int get_msix_state(QEMUFile *f, void *pv, size_t size) > +{ > + msix_load(pv, f); > + return 0; > +} > + > +static VMStateInfo vmstate_info_msix = { > + .name = "msix state", > + .get = get_msix_state, > + .put = put_msix_state, > +}; > + > +const VMStateDescription vmstate_msix = { > + .name = "msix", > + .fields = (VMStateField[]) { > + { > + .name = "msix", > + .version_id = 0, > + .field_exists = NULL, > + .size = 0, /* ouch */ > + .info = &vmstate_info_msix, > + .flags = VMS_SINGLE, > + .offset = 0, > + }, > + VMSTATE_END_OF_LIST() > + } > +}; > diff --git a/include/hw/pci/msix.h b/include/hw/pci/msix.h > index e648410..954d82b 100644 > --- a/include/hw/pci/msix.h > +++ b/include/hw/pci/msix.h > @@ -43,4 +43,15 @@ int msix_set_vector_notifiers(PCIDevice *dev, > MSIVectorReleaseNotifier release_notifier, > MSIVectorPollNotifier poll_notifier); > void msix_unset_vector_notifiers(PCIDevice *dev); > + > +extern const VMStateDescription vmstate_msix; > + > +#define VMSTATE_MSIX(_field, _state) { \ > + .name = (stringify(_field)), \ > + .size = sizeof(PCIDevice), \ > + .vmsd = &vmstate_msix, \ > + .flags = VMS_STRUCT, \ > + .offset = vmstate_offset_value(_state, _field, PCIDevice), \ > +} > + > #endif > -- > 1.7.9.7 >