[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <7f459ca6-0564-7206-adb2-6abc01c95a6d@redhat.com>
Date: Tue, 26 Apr 2022 11:46:08 +0800
From: Jason Wang <jasowang@...hat.com>
To: Halil Pasic <pasic@...ux.ibm.com>,
Cornelia Huck <cohuck@...hat.com>
Cc: "Michael S. Tsirkin" <mst@...hat.com>,
linux-kernel@...r.kernel.org,
virtualization@...ts.linux-foundation.org, sgarzare@...hat.com,
eperezma@...hat.com, lulu@...hat.com, tglx@...utronix.de,
peterz@...radead.org, paulmck@...nel.org, maz@...nel.org
Subject: Re: [PATCH V3 6/9] virtio-ccw: implement synchronize_cbs()
在 2022/4/26 10:50, Halil Pasic 写道:
>>>> +static void virtio_ccw_synchronize_cbs(struct virtio_device *vdev)
>>>> +{
>>>> + struct virtio_ccw_device *vcdev = to_vc_device(vdev);
>>>> + struct airq_info *info = vcdev->airq_info;
>>>> +
>>>> + /*
>>>> + * Synchronize with the vring_interrupt() called by
>>>> + * virtio_ccw_int_handler().
>>>> + */
>>>> + spin_lock(&vcdev->irq_lock);
>>>> + spin_unlock(&vcdev->irq_lock);
>>>> +
>>>> + if (info) {
>>>> + /*
>>>> + * Synchronize with the vring_interrupt() with airq indicator
>>>> + */
>>>> + write_lock(&info->lock);
>>>> + write_unlock(&info->lock);
>>>> + }
>> I think we can make this an either/or operation (devices will either use
>> classic interrupts or adapter interrupts)?
> Right, for virtqueue notifications. I second Connie's motion!
Will do this.
Thanks
>
Powered by blists - more mailing lists