qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] NVMe: Initial commit


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH] NVMe: Initial commit
Date: Thu, 11 Apr 2013 15:01:03 +0100

On 10 April 2013 21:16, Keith Busch <address@hidden> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]