| Submitter | Michael S. Tsirkin |
|---|---|
| Date | Sept. 27, 2010, 4:32 p.m. |
| Message ID | <20100927163252.GA7071@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/65880/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/virtio.c b/hw/virtio.c index 4475bb3..d7b5853 100644 --- a/hw/virtio.c +++ b/hw/virtio.c @@ -443,6 +443,8 @@ void virtio_reset(void *opaque) VirtIODevice *vdev = opaque; int i; + virtio_set_status(vdev, 0); + if (vdev->reset) vdev->reset(vdev);
As status is set to 0 on reset, invoke the relevant callback. This makes for a cleaner code in devices as they don't need to duplicate the code in their reset routine, as well as excercises this path a little more. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> --- hw/virtio.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)