]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ALSA: usb-audio: Apply rate limit to warning messages in URB complete callback
authorTakashi Iwai <tiwai@suse.de>
Wed, 16 May 2018 18:07:18 +0000 (20:07 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 16 May 2018 18:07:18 +0000 (20:07 +0200)
retire_capture_urb() may print warning messages when the given URB
doesn't align, and this may flood the system log easily.
Put the rate limit to the message for avoiding it.

Bugzilla: https://bugzilla.suse.com/show_bug.cgi?id=1093485
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/usb/pcm.c

index dc2dfec9effd5bad11fe07abcaed8821b8529814..20bed1c7a31279174e9e134413da642dc2497754 100644 (file)
@@ -1303,7 +1303,7 @@ static void retire_capture_urb(struct snd_usb_substream *subs,
                if (bytes % (runtime->sample_bits >> 3) != 0) {
                        int oldbytes = bytes;
                        bytes = frames * stride;
-                       dev_warn(&subs->dev->dev,
+                       dev_warn_ratelimited(&subs->dev->dev,
                                 "Corrected urb data len. %d->%d\n",
                                                        oldbytes, bytes);
                }