OSDN Git Service

ALSA: pcsp: Make hrtimer forwarding more robust
authorThomas Gleixner <tglx@linutronix.de>
Thu, 23 Sep 2021 16:04:25 +0000 (18:04 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 28 Sep 2021 08:58:08 +0000 (10:58 +0200)
commitf2ff7147c6834f244b8ce636b12e71a3bd044629
treee0421d7ea97aa81ba4e579675c1d1f67ccdde447
parent09d23174402da0f10e98da2c61bb5ac8e7d79fdd
ALSA: pcsp: Make hrtimer forwarding more robust

The hrtimer callback pcsp_do_timer() prepares rearming of the timer with
hrtimer_forward(). hrtimer_forward() is intended to provide a mechanism to
forward the expiry time of the hrtimer by a multiple of the period argument
so that the expiry time greater than the time provided in the 'now'
argument.

pcsp_do_timer() invokes hrtimer_forward() with the current timer expiry
time as 'now' argument. That's providing a periodic timer expiry, but is
not really robust when the timer callback is delayed so that the resulting
new expiry time is already in the past which causes the callback to be
invoked immediately again. If the timer is delayed then the back to back
invocation is not really making it better than skipping the missed
periods. Sound is distorted in any case.

Use hrtimer_forward_now() which ensures that the next expiry is in the
future. This prevents hogging the CPU in the timer expiry code and allows
later on to remove hrtimer_forward() from the public interfaces.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: alsa-devel@alsa-project.org
Cc: Takashi Iwai <tiwai@suse.com>
Cc: Jaroslav Kysela <perex@perex.cz>
Link: https://lore.kernel.org/r/20210923153339.623208460@linutronix.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/drivers/pcsp/pcsp_lib.c