vhost_sock: convert to vhost_vq_work_queue
authorMike Christie <michael.christie@oracle.com>
Mon, 26 Jun 2023 23:22:58 +0000 (18:22 -0500)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 3 Jul 2023 16:15:13 +0000 (12:15 -0400)
Convert from vhost_work_queue to vhost_vq_work_queue, so we can drop
vhost_work_queue.

Signed-off-by: Mike Christie <michael.christie@oracle.com>
Message-Id: <20230626232307.97930-9-michael.christie@oracle.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/vhost/vsock.c

index 6578db7..817d377 100644 (file)
@@ -285,7 +285,7 @@ vhost_transport_send_pkt(struct sk_buff *skb)
                atomic_inc(&vsock->queued_replies);
 
        virtio_vsock_skb_queue_tail(&vsock->send_pkt_queue, skb);
-       vhost_work_queue(&vsock->dev, &vsock->send_pkt_work);
+       vhost_vq_work_queue(&vsock->vqs[VSOCK_VQ_RX], &vsock->send_pkt_work);
 
        rcu_read_unlock();
        return len;
@@ -583,7 +583,7 @@ static int vhost_vsock_start(struct vhost_vsock *vsock)
        /* Some packets may have been queued before the device was started,
         * let's kick the send worker to send them.
         */
-       vhost_work_queue(&vsock->dev, &vsock->send_pkt_work);
+       vhost_vq_work_queue(&vsock->vqs[VSOCK_VQ_RX], &vsock->send_pkt_work);
 
        mutex_unlock(&vsock->dev.mutex);
        return 0;