Not all toolchains used to know about VIRTIO_CONFIG_S_NEEDS_RESET, so we left it out of the status mask. Now that we include our own version of virtio_config.h and we'll need it for virtio 1.0, add it back. Signed-off-by: Jean-Philippe Brucker <jean-philippe.brucker@xxxxxxx> --- include/kvm/virtio.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/kvm/virtio.h b/include/kvm/virtio.h index ad274acf..8a363632 100644 --- a/include/kvm/virtio.h +++ b/include/kvm/virtio.h @@ -35,6 +35,7 @@ VIRTIO_CONFIG_S_DRIVER | \ VIRTIO_CONFIG_S_DRIVER_OK | \ VIRTIO_CONFIG_S_FEATURES_OK | \ + VIRTIO_CONFIG_S_NEEDS_RESET | \ VIRTIO_CONFIG_S_FAILED) /* Kvmtool status bits */ -- 2.36.1