OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-dev message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [virtio-dev] Re: [PATCH v2 2/9] ALSA: virtio: add virtio sound driver


Hi Guennadi,

Sorry for the late reply and thanks for your comments, they helped me a
lot! Please see my answers inline.


On 25.01.2021 15:54, Guennadi Liakhovetski wrote:

...[snip]...

>
>> + * 1. Redistributions of source code must retain the above copyright
>> + *    notice, this list of conditions and the following disclaimer.
>> + * 2. Redistributions in binary form must reproduce the above copyright
>> + *    notice, this list of conditions and the following disclaimer in
>> the
>> + *    documentation and/or other materials provided with the
>> distribution.
>> + * 3. Neither the name of OpenSynergy GmbH nor the names of its
>> contributors
>> + *    may be used to endorse or promote products derived from this
>> software
>> + *    without specific prior written permission.
>> + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
>> + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
>> + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
>> + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL IBM OR
>
> IBM? Also no idea whether this warranty disclaimer is appropriate here. I
> thought we were transitioning to those SPDX identifiers to eliminate all
> these headers.

It was a copy-paste mistake, I will edit these lines.


...[snip]...

>> +
>> +/**
>> + * virtsnd_disable_vqs() - Disable all virtqueues.
>> + * @snd: VirtIO sound device.
>> + *
>> + * Also free all allocated events and control messages.
>> + *
>> + * Context: Any context.
>> + */
>> +static void virtsnd_disable_vqs(struct virtio_snd *snd)
>> +{
>> +     struct virtio_device *vdev = snd->vdev;
>> +     unsigned int i;
>> +     unsigned long flags;
>> +
>> +     for (i = 0; i < VIRTIO_SND_VQ_MAX; ++i) {
>> +             struct virtio_snd_queue *queue = &snd->queues[i];
>> +
>> +             spin_lock_irqsave(&queue->lock, flags);
>> +             /* Prohibit the use of the queue */
>> +             if (queue->vqueue)
>> +                     virtqueue_disable_cb(queue->vqueue);
>> +             queue->vqueue = NULL;
>> +             spin_unlock_irqrestore(&queue->lock, flags);
>> +     }
>> +
>> +     if (snd->event_msgs)
>
> Check not needed, kfree(NULL) is ok.

Yes, you are right here. I didn't notice that devm_kfree() now works
fine with NULL argument too.


>> +             devm_kfree(&vdev->dev, snd->event_msgs);
>
> I think there are very few cases when managed resources have to be
> explicitly freed. If explicit freeing is always required, then there's no
> need to have them managed. If there's a clear case for managed resources,
> usually you don't need to free them explicitly. Here.event_msgs are
> allocated in virtsnd_find_vqs() above, which is only called during
> probing. And this function is only called during release. So, I'd assume,
> that you don't need to free memory explicitly here.

Here, the reason for explicitly freeing managed resources is in the
current device reset handling logic. At the moment, executing the reset
worker results in a call to virtsnd_disable_vqs. After which the device
is recreated. And since in this case the driver is not detached from the
device, the managed resources are not automatically freed. On the other
hand, managed resources allow not to worry about deallocation if the
probing function returns an error.


>> +
>> +     snd->event_msgs = NULL;
>
> snd is about to be freed, so do you really need this?

No :)


>> +}
>> +
>> +/**
>> + * virtsnd_reset_fn() - Kernel worker's function to reset the device.
>> + * @work: Reset device work.
>> + *
>> + * Context: Process context.
>> + */
>> +static void virtsnd_reset_fn(struct work_struct *work)
>> +{
>> +     struct virtio_snd *snd =
>> +             container_of(work, struct virtio_snd, reset_work);
>> +     struct virtio_device *vdev = snd->vdev;
>> +     struct device *dev = &vdev->dev;
>> +     int rc;
>> +
>> +     dev_info(dev, "sound device needs reset\n");
>> +
>> +     /*
>> +      * It seems that the only way to properly reset the device is to
>> remove
>> +      * and re-create the ALSA sound card device.
>> +      *
>> +      * Also resetting the device involves a number of steps with
>> setting the
>> +      * status bits described in the virtio specification. And the
>> easiest
>> +      * way to get everything right is to use the virtio bus interface.
>> +      */
>> +     rc = dev->bus->remove(dev);
>> +     if (rc)
>> +             dev_warn(dev, "bus->remove() failed: %d", rc);
>> +
>> +     rc = dev->bus->probe(dev);
>> +     if (rc)
>> +             dev_err(dev, "bus->probe() failed: %d", rc);
>
> This looks very suspicious to me. Wondering what ALSA maintainers will say
> to this.

I'm also wondering what the virtio people have to say. This part is a
purely virtio specific thing. And since none of the existing virtio
drivers processes the request to reset the device, it is not clear what
is the best way to proceed here. For this reason, the most
straightforward and simple solution was chosen.


...[snip]...

>
> Thanks
> Guennadi
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
> For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org
>
>
--
Anton Yakovlev
Senior Software Engineer

OpenSynergy GmbH
Rotherstr. 20, 10245 Berlin

www.opensynergy.com



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]