mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* v15-rc1 regression: No sound via usb-audio
@ 2017-11-27  8:23 Jörg Otte
  2017-11-27  9:59 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Jörg Otte @ 2017-11-27  8:23 UTC (permalink / raw)
  To: Takashi Iwai, torvalds, Linux Kernel Mailing List

With v15-rc1 "alsamixer" has no volume control for usb sound boxes.
The sound boxes have been working well for years so this a regression.

Reverting commit:
8428a8e: "ALSA: usb-audio: Fix potential zero-division at parsing FU"

fixes the problem for me completely.


Thanks, Jörg

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: v15-rc1 regression: No sound via usb-audio
  2017-11-27  8:23 v15-rc1 regression: No sound via usb-audio Jörg Otte
@ 2017-11-27  9:59 ` Takashi Iwai
  0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2017-11-27  9:59 UTC (permalink / raw)
  To: Jörg Otte; +Cc: torvalds, Linux Kernel Mailing List

On Mon, 27 Nov 2017 09:23:11 +0100,
Jörg Otte wrote:
> 
> With v15-rc1 "alsamixer" has no volume control for usb sound boxes.
> The sound boxes have been working well for years so this a regression.
> 
> Reverting commit:
> 8428a8e: "ALSA: usb-audio: Fix potential zero-division at parsing FU"
> 
> fixes the problem for me completely.

Argh, reading back the changes again, the patch looks really bogus.
Sorry for the mess.

Linus, could you simply revert the one?  I can include it in the next
pull request, but it's likely easier / faster to do it in your side.


thanks,

Takashi

-- 8< --
From: Takashi Iwai <tiwai@suse.de>
Subject: [PATCH] Revert "ALSA: usb-audio: Fix potential zero-division at
 parsing FU"

The commit 8428a8ebde2d ("ALSA: usb-audio: Fix potential zero-division
at parsing FU") is utterly bogus and breaks the case with csize=1
instead of fixing anything.  Just take it back again.

Reported-by: Jörg Otte <jrg.otte@gmail.com>
Fixes: 8428a8ebde2d ("ALSA: usb-audio: Fix potential zero-division at parsing FU"
Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
 sound/usb/mixer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/usb/mixer.c b/sound/usb/mixer.c
index 0537c6322990..61b348383de8 100644
--- a/sound/usb/mixer.c
+++ b/sound/usb/mixer.c
@@ -1476,9 +1476,9 @@ static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
 			return -EINVAL;
 		}
 		csize = hdr->bControlSize;
-		if (csize <= 1) {
+		if (!csize) {
 			usb_audio_dbg(state->chip,
-				      "unit %u: invalid bControlSize <= 1\n",
+				      "unit %u: invalid bControlSize == 0\n",
 				      unitid);
 			return -EINVAL;
 		}
-- 
2.15.0

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-11-27  9:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-27  8:23 v15-rc1 regression: No sound via usb-audio Jörg Otte
2017-11-27  9:59 ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®