On Tue, 4 Jun 2019 at 04:16, Greg Kurz <gr...@kaod.org> wrote: > > On Wed, 29 May 2019 15:09:52 +0800 > elohi...@gmail.com wrote: > > > From: Xie Yongji <xieyon...@baidu.com> > > > > We should migrate the "start_on_kick" flag so that we > > would not miss starting device on kicking at startup > > after migration. > > > > Hmm... IIUC "start_on_kick" means "virtio 1.0 transitional device that has > not been started yet", ie: > > !vdev->started && > (virtio_host_has_feature(vdev, VIRTIO_F_VERSION_1) && > !virtio_vdev_has_feature(vdev, VIRTIO_F_VERSION_1)) > > If so, not sure why you need this extra field in the first place, but > you probably don't need to migrate it. Just recalculate in a post load > callback. >
Good idea! Will recalculate this in virtio_load() in v2. Thank you. Thanks, Yongji