[PULL 0/7] Audio 20210617 patches

Gerd Hoffmann posted 7 patches 2 years, 10 months ago
Test checkpatch failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210617124107.2386073-1-kraxel@redhat.com
Maintainers: Gerd Hoffmann <kraxel@redhat.com>
audio/audio_int.h            |  2 ++
audio/alsaaudio.c            | 10 +++----
audio/audio.c                | 15 ++++++++---
audio/coreaudio.c            | 48 +++++++++------------------------
audio/jackaudio.c            |  3 +--
audio/paaudio.c              | 10 ++-----
hw/audio/sb16.c              | 14 ++++++++++
tests/qtest/fuzz-sb16-test.c | 52 ++++++++++++++++++++++++++++++++++++
MAINTAINERS                  |  1 +
tests/qtest/meson.build      |  1 +
10 files changed, 102 insertions(+), 54 deletions(-)
create mode 100644 tests/qtest/fuzz-sb16-test.c
[PULL 0/7] Audio 20210617 patches
Posted by Gerd Hoffmann 2 years, 10 months ago
The following changes since commit 38848ce565849e5b867a5e08022b3c755039c11a:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20210616' into staging (2021-06-16 17:02:30 +0100)

are available in the Git repository at:

  git://git.kraxel.org/qemu tags/audio-20210617-pull-request

for you to fetch changes up to 986bdbc6a29c4d7ef125299c5013783e30dc2cae:

  coreaudio: Fix output stream format settings (2021-06-17 12:00:26 +0200)

----------------------------------------------------------------
audio: bugfix collection.

----------------------------------------------------------------

Akihiko Odaki (2):
  audio: Fix format specifications of debug logs
  coreaudio: Fix output stream format settings

Philippe Mathieu-Daudé (1):
  hw/audio/sb16: Avoid assertion by restricting I/O sampling rate range

Volker Rümelin (4):
  alsaaudio: remove #ifdef DEBUG to avoid bit rot
  paaudio: remove unused stream flags
  audio: move code to audio/audio.c
  jackaudio: avoid that the client name contains the word (NULL)

 audio/audio_int.h            |  2 ++
 audio/alsaaudio.c            | 10 +++----
 audio/audio.c                | 15 ++++++++---
 audio/coreaudio.c            | 48 +++++++++------------------------
 audio/jackaudio.c            |  3 +--
 audio/paaudio.c              | 10 ++-----
 hw/audio/sb16.c              | 14 ++++++++++
 tests/qtest/fuzz-sb16-test.c | 52 ++++++++++++++++++++++++++++++++++++
 MAINTAINERS                  |  1 +
 tests/qtest/meson.build      |  1 +
 10 files changed, 102 insertions(+), 54 deletions(-)
 create mode 100644 tests/qtest/fuzz-sb16-test.c

-- 
2.31.1



Re: [PULL 0/7] Audio 20210617 patches
Posted by no-reply@patchew.org 2 years, 10 months ago
Patchew URL: https://patchew.org/QEMU/20210617124107.2386073-1-kraxel@redhat.com/



Hi,

This series seems to have some coding style problems. See output below for
more information:

Type: series
Message-id: 20210617124107.2386073-1-kraxel@redhat.com
Subject: [PULL 0/7] Audio 20210617 patches

=== TEST SCRIPT BEGIN ===
#!/bin/bash
git rev-parse base > /dev/null || exit 0
git config --local diff.renamelimit 0
git config --local diff.renames True
git config --local diff.algorithm histogram
./scripts/checkpatch.pl --mailback base..
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
 - [tag update]      patchew/20210617121628.20116-1-peter.maydell@linaro.org -> patchew/20210617121628.20116-1-peter.maydell@linaro.org
 * [new tag]         patchew/20210617124107.2386073-1-kraxel@redhat.com -> patchew/20210617124107.2386073-1-kraxel@redhat.com
Switched to a new branch 'test'
a6c9846 coreaudio: Fix output stream format settings
32f3f1e audio: Fix format specifications of debug logs
b51279d hw/audio/sb16: Avoid assertion by restricting I/O sampling rate range
e864a29 jackaudio: avoid that the client name contains the word (NULL)
c4a86a7 audio: move code to audio/audio.c
2800db0 paaudio: remove unused stream flags
0b3fd3c alsaaudio: remove #ifdef DEBUG to avoid bit rot

=== OUTPUT BEGIN ===
1/7 Checking commit 0b3fd3ca5f98 (alsaaudio: remove #ifdef DEBUG to avoid bit rot)
2/7 Checking commit 2800db079dd3 (paaudio: remove unused stream flags)
3/7 Checking commit c4a86a755701 (audio: move code to audio/audio.c)
4/7 Checking commit e864a29cb0c2 (jackaudio: avoid that the client name contains the word (NULL))
5/7 Checking commit b51279d277e6 (hw/audio/sb16: Avoid assertion by restricting I/O sampling rate range)
6/7 Checking commit 32f3f1e7b9c4 (audio: Fix format specifications of debug logs)
ERROR: space prohibited between function name and open parenthesis '('
#25: FILE: audio/audio.c:708:
+        dolog ("%s is full %zu\n", sw->name, live);

ERROR: space prohibited between function name and open parenthesis '('
#43: FILE: audio/audio.c:1025:
+    dolog ("%s: get_free live %zu dead %zu ret %" PRId64 "\n",

total: 2 errors, 0 warnings, 24 lines checked

Patch 6/7 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

7/7 Checking commit a6c98463e79b (coreaudio: Fix output stream format settings)
=== OUTPUT END ===

Test command exited with code: 1


The full log is available at
http://patchew.org/logs/20210617124107.2386073-1-kraxel@redhat.com/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com
Re: [PULL 0/7] Audio 20210617 patches
Posted by Peter Maydell 2 years, 10 months ago
On Thu, 17 Jun 2021 at 13:55, Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> The following changes since commit 38848ce565849e5b867a5e08022b3c755039c11a:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20210616' into staging (2021-06-16 17:02:30 +0100)
>
> are available in the Git repository at:
>
>   git://git.kraxel.org/qemu tags/audio-20210617-pull-request
>
> for you to fetch changes up to 986bdbc6a29c4d7ef125299c5013783e30dc2cae:
>
>   coreaudio: Fix output stream format settings (2021-06-17 12:00:26 +0200)
>
> ----------------------------------------------------------------
> audio: bugfix collection.
>
> ----------------------------------------------------------------
>
> Akihiko Odaki (2):
>   audio: Fix format specifications of debug logs
>   coreaudio: Fix output stream format settings
>
> Philippe Mathieu-Daudé (1):
>   hw/audio/sb16: Avoid assertion by restricting I/O sampling rate range
>
> Volker Rümelin (4):
>   alsaaudio: remove #ifdef DEBUG to avoid bit rot
>   paaudio: remove unused stream flags
>   audio: move code to audio/audio.c
>   jackaudio: avoid that the client name contains the word (NULL)
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.1
for any user-visible changes.

-- PMM