On 10 April 2013 21:16, Keith Busch <keith.bu...@intel.com> wrote: > Initial commit for emulated nvme pci storage device. Implements the > minimum from the specification to work with existing drivers.
The commit message could be a little more informative for those who have no idea what an nvme is... > +static const VMStateDescription nvme_vmstate = { > + .name = "nvme", > + .version_id = 1, > + .minimum_version_id = 1, > + .minimum_version_id_old = 1, > + .fields = (VMStateField[]) { > + VMSTATE_PCI_DEVICE(parent_obj, NvmeCtrl), > + VMSTATE_END_OF_LIST() > + } > +}; I'm pretty sure this device must have more state that needs to be migrated than this. thanks -- PMM