From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>,
qemu-devel@nongnu.org
Cc: "Igor Skalkin" <Igor.Skalkin@opensynergy.com>,
"Anton Yakovlev" <Anton.Yakovlev@opensynergy.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"ichael S. Tsirkin" <mst@redhat.com>,
"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Eduardo Habkost" <eduardo@habkost.net>,
"Marc-Andr é Lureau" <marcandre.lureau@redhat.com>,
"Volker R ü melin" <vr_qemu@t-online.de>, "Kő vá gó ,
Zoltá n" <DirtY.iCE.hu@gmail.com>,
"Alex Benn é e" <alex.bennee@linaro.org>
Subject: Re: [PATCH v8 10/12] virtio-sound: implement audio output (TX)
Date: Mon, 4 Sep 2023 13:39:56 +0200 [thread overview]
Message-ID: <f2828683-ad02-9558-7e88-bbfe343da97a@linaro.org> (raw)
In-Reply-To: <0gj4g.pagm7im4jud8@linaro.org>
On 4/9/23 12:34, Manos Pitsidianakis wrote:
> On Mon, 04 Sep 2023 13:26, Philippe Mathieu-Daudé <philmd@linaro.org>
> wrote:
>>> /*
>>> - * Handles VIRTIO_SND_R_PCM_RELEASE. Releases the buffer resources
>>> allocated to
>>> - * a stream.
>>> + * Returns the number of I/O messages that are being processed.
>>> + *
>>> + * @stream: VirtIOSoundPCMStream
>>> + */
>>> +static size_t
>>> virtio_snd_pcm_get_pending_io_msgs(VirtIOSoundPCMStream *stream)
>>> +{
>>> + VirtIOSoundPCMBlock *block;
>>> + VirtIOSoundPCMBlock *next;
>>> + size_t size = 0;
>>> +
>>> + WITH_QEMU_LOCK_GUARD(&stream->queue_mutex) {
>>> + QSIMPLEQ_FOREACH_SAFE(block, &stream->queue, entry, next) {
>>> + size += 1;
>>
>> Can you add a comment explaining this magic size?
>
> It's not magic, it's simply how many messages there are as explained in
> the function doc comment. This was previously bytes hence `size`. I will
> change the variable name to `count`.
Ah OK. 'msg_processed'?
>>> +static void virtio_snd_handle_tx(VirtIODevice *vdev, VirtQueue *vq)
>>> +{
>>> + VirtIOSound *s = VIRTIO_SND(vdev);
>>> + VirtIOSoundPCMStream *stream = NULL;
>>> + VirtQueueElement *elem;
>>> + size_t sz;
>>> + virtio_snd_pcm_xfer hdr;
>>> + virtio_snd_pcm_status resp = { 0 };
>>
>> virtio_snd_pcm_status has multiple fields, so better zero-initialize
>> all of them with '{ }'.
>
> I don't understand why, virtio_snd_pcm_status has two int fields hence {
> 0 } zero-initializes all of them.
Hmm I'm too busy right now to check the C standard. Looking at QEMU
code base, most of the time we use nothing or N * 0 to initialize N
fields:
$ git grep '{ }' | wc -l
536
$ git grep -E '{ ?0, 0 ?}' | wc -l
50
$ git grep '{ }' | wc -l
536
Anyway, not a blocker.
>>> +/*
>>> + * AUD_* output callback.
>>> + *
>>> + * @data: VirtIOSoundPCMStream stream
>>> + * @available: number of bytes that can be written with AUD_write()
>>> + */
>>> +static void virtio_snd_pcm_out_cb(void *data, int available)
>>> +{
>>> + VirtIOSoundPCMStream *stream = data;
>>> + VirtIOSoundPCMBlock *block;
>>> + VirtIOSoundPCMBlock *next;
>>> + size_t size;
>>> +
>>> + WITH_QEMU_LOCK_GUARD(&stream->queue_mutex) {
>>> + QSIMPLEQ_FOREACH_SAFE(block, &stream->queue, entry, next) {
>>> + for (;;) {
>>> + size = MIN(block->size, available);
>>> + size = AUD_write(stream->voice.out,
>>> + block->data + block->offset,
>>> + size);
>>
>> If AUD_write() returns 0, is this an infinite loop?
>
> Hm since we have available > 0 bytes this wouldn't theoretically happen,
> but I see there are code paths that return 0 on bugs/failures, I will
> add the check.
Thanks.
>>> + block->size -= size;
>>> + block->offset += size;
>>> + if (!block->size) {
>>> + virtqueue_push(block->vq,
>>> + block->elem,
>>> + sizeof(block->elem));
>>> + virtio_notify(VIRTIO_DEVICE(stream->s),
>>> + block->vq);
>>> + QSIMPLEQ_REMOVE_HEAD(&stream->queue, entry);
>>> + g_free(block);
>>> + available -= size;
>>> + break;
>>> + }
>>> +
>>> + available -= size;
>>> + if (!available) {
>>> + break;
>>> + }
>>> + }
>>> + if (!available) {
>>> + break;
>>> + }
>>> + }
>>> + }
>>> +}
>>> +
>>> +/*
>>> + * Flush all buffer data from this stream's queue into the driver's
>>> virtual
>>> + * queue.
>>> + *
>>> + * @stream: VirtIOSoundPCMStream *stream
>>> + */
>>> +static void virtio_snd_pcm_flush(VirtIOSoundPCMStream *stream)
>>> +{
>>> + VirtIOSoundPCMBlock *block;
>>> + VirtIOSoundPCMBlock *next;
>>> +
>>> + WITH_QEMU_LOCK_GUARD(&stream->queue_mutex) {
>>> + QSIMPLEQ_FOREACH_SAFE(block, &stream->queue, entry, next) {
>>> + AUD_write(stream->voice.out, block->data +
>>> block->offset, block->size);
>>
>> Is it OK to ignore AUD_write() returning < block->size?
>> If so, can you add a comment please?
>
> This is a flush event with a timeout so it should complete asap. As
> mentioned in another reply it might be better to copy the data to a
> buffer in order not to lose any audio bytes.
Maybe this could do:
/*
* This is a flush event with a timeout which should complete ASAP.
* TODO: Copy the data to a buffer in order not to lose any audio
* bytes. (Meanwhile we just discard any write failure).
*/
Regards,
Phil.
next prev parent reply other threads:[~2023-09-04 11:41 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-28 19:54 [PATCH v8 00/12] Add VIRTIO sound card Emmanouil Pitsidianakis
2023-08-28 19:54 ` [PATCH v8 01/12] Add virtio-sound device stub Emmanouil Pitsidianakis
2023-08-28 19:54 ` [PATCH v8 02/12] Add virtio-sound-pci device Emmanouil Pitsidianakis
2023-09-04 6:32 ` Volker Rümelin
2023-09-04 10:26 ` Manos Pitsidianakis
2023-09-04 21:08 ` Volker Rümelin
2023-09-06 9:05 ` Mark Cave-Ayland
2023-08-28 19:55 ` [PATCH v8 03/12] virtio-sound: handle control messages and streams Emmanouil Pitsidianakis
2023-09-04 10:08 ` Philippe Mathieu-Daudé
2023-09-04 10:18 ` Manos Pitsidianakis
2023-09-04 10:42 ` Philippe Mathieu-Daudé
2023-09-04 10:46 ` Philippe Mathieu-Daudé
2023-09-04 11:00 ` Manos Pitsidianakis
2023-09-04 11:30 ` Philippe Mathieu-Daudé
2023-09-04 11:46 ` Manos Pitsidianakis
2023-09-04 12:17 ` Philippe Mathieu-Daudé
2023-09-06 9:29 ` Mark Cave-Ayland
2023-08-28 19:55 ` [PATCH v8 04/12] virtio-sound: set PCM stream parameters Emmanouil Pitsidianakis
2023-08-29 19:27 ` Alex Bennée
2023-08-28 19:55 ` [PATCH v8 05/12] virtio-sound: handle VIRTIO_SND_R_PCM_INFO request Emmanouil Pitsidianakis
2023-08-29 19:31 ` Alex Bennée
2023-09-04 10:13 ` Philippe Mathieu-Daudé
2023-09-04 10:24 ` Manos Pitsidianakis
2023-08-28 19:55 ` [PATCH v8 06/12] virtio-sound: handle VIRTIO_SND_R_PCM_{START,STOP} Emmanouil Pitsidianakis
2023-08-29 19:32 ` Alex Bennée
2023-08-28 19:55 ` [PATCH v8 07/12] virtio-sound: handle VIRTIO_SND_R_PCM_SET_PARAMS Emmanouil Pitsidianakis
2023-08-29 19:33 ` Alex Bennée
2023-08-28 19:55 ` [PATCH v8 08/12] virtio-sound: handle VIRTIO_SND_R_PCM_PREPARE Emmanouil Pitsidianakis
2023-08-29 19:33 ` Alex Bennée
2023-08-28 19:55 ` [PATCH v8 09/12] virtio-sound: handle VIRTIO_SND_R_PCM_RELEASE Emmanouil Pitsidianakis
2023-08-29 19:34 ` Alex Bennée
2023-08-28 19:55 ` [PATCH v8 10/12] virtio-sound: implement audio output (TX) Emmanouil Pitsidianakis
2023-08-30 13:39 ` Alex Bennée
2023-09-04 10:26 ` Philippe Mathieu-Daudé
2023-09-04 10:34 ` Manos Pitsidianakis
2023-09-04 11:39 ` Philippe Mathieu-Daudé [this message]
2023-09-04 21:34 ` Volker Rümelin
2023-09-05 7:10 ` Volker Rümelin
2023-08-28 19:55 ` [PATCH v8 11/12] virtio-sound: implement audio capture (RX) Emmanouil Pitsidianakis
2023-08-30 13:40 ` Alex Bennée
2023-09-08 6:49 ` Volker Rümelin
2023-09-09 8:56 ` Volker Rümelin
2023-08-28 19:55 ` [PATCH v8 12/12] docs/system: add basic virtio-snd documentation Emmanouil Pitsidianakis
2023-08-30 17:49 ` Alex Bennée
2023-08-30 13:40 ` [PATCH v8 00/12] Add VIRTIO sound card Alex Bennée
2023-09-04 7:20 ` Volker Rümelin
2023-09-04 10:01 ` Manos Pitsidianakis
2023-09-04 12:11 ` Alex Bennée
2023-09-05 6:03 ` Volker Rümelin
2023-09-05 6:56 ` Volker Rümelin
2023-09-06 8:39 ` Matias Ezequiel Vara Larsen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f2828683-ad02-9558-7e88-bbfe343da97a@linaro.org \
--to=philmd@linaro.org \
--cc=Anton.Yakovlev@opensynergy.com \
--cc=DirtY.iCE.hu@gmail.com \
--cc=Igor.Skalkin@opensynergy.com \
--cc=alex.bennee@linaro.org \
--cc=berrange@redhat.com \
--cc=eduardo@habkost.net \
--cc=kraxel@redhat.com \
--cc=manos.pitsidianakis@linaro.org \
--cc=marcandre.lureau@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=vr_qemu@t-online.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).