virtio: use virtio_reset_device() when possible
authorJason Wang <jasowang@redhat.com>
Fri, 27 May 2022 06:01:13 +0000 (14:01 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Tue, 31 May 2022 16:45:09 +0000 (12:45 -0400)
This allows us to do common extension without duplicating code.

Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: "Paul E. McKenney" <paulmck@kernel.org>
Cc: Marc Zyngier <maz@kernel.org>
Cc: Halil Pasic <pasic@linux.ibm.com>
Cc: Cornelia Huck <cohuck@redhat.com>
Cc: Vineeth Vijayan <vneethv@linux.ibm.com>
Cc: Peter Oberparleiter <oberpar@linux.ibm.com>
Cc: linux-s390@vger.kernel.org
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Message-Id: <20220527060120.20964-3-jasowang@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Reviewed-by: Eugenio Pérez <eperezma@redhat.com>
drivers/virtio/virtio.c

index 938e975029d43d72abe6bd9985f2ab52af9ea1e6..aa1eb5132767481717bbe2aed0c605d075604610 100644 (file)
@@ -430,7 +430,7 @@ int register_virtio_device(struct virtio_device *dev)
 
        /* We always start by resetting the device, in case a previous
         * driver messed it up.  This also tests that code path a little. */
-       dev->config->reset(dev);
+       virtio_reset_device(dev);
 
        /* Acknowledge that we've seen the device. */
        virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
@@ -496,7 +496,7 @@ int virtio_device_restore(struct virtio_device *dev)
 
        /* We always start by resetting the device, in case a previous
         * driver messed it up. */
-       dev->config->reset(dev);
+       virtio_reset_device(dev);
 
        /* Acknowledge that we've seen the device. */
        virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);