mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: Jack Byer <ojbyer@usa.net>,
	alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] ali5451: fix timeout handling in snd_ali_{codecs,timer}_ready()
Date: Thu, 20 Aug 2009 08:33:21 +0200	[thread overview]
Message-ID: <s5hbpmbvvta.wl%tiwai@suse.de> (raw)
In-Reply-To: <200908192209.50994.bzolnier@gmail.com>

At Wed, 19 Aug 2009 22:09:50 +0200,
Bartlomiej Zolnierkiewicz wrote:
> 
> From: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
> Subject: [PATCH] ali5451: fix timeout handling in snd_ali_{codecs,timer}_ready()
> 
> Modify loops in such way that the register value is checked also after
> the timeout condition, just in case the heavy interrupt load etc. caused
> the thread to sleep for the time period exceeding the timeout value.
> 
> While at it remove an extra ALI_STIMER read from snd_ali_stimer_ready().
> 
> Reported-by: Jack Byer <ojbyer@usa.net>
> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
> ---
>  sound/pci/ali5451/ali5451.c |   11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
> 
> Index: b/sound/pci/ali5451/ali5451.c
> ===================================================================
> --- a/sound/pci/ali5451/ali5451.c
> +++ b/sound/pci/ali5451/ali5451.c
> @@ -314,8 +314,11 @@ static int snd_ali_codec_ready(struct sn
>  		res = snd_ali_5451_peek(codec,port);
>  		if (!(res & 0x8000))
>  			return 0;
> +		if (!time_after_eq(end_time, jiffies))
> +			break;
>  		schedule_timeout_uninterruptible(1);
> -	} while (time_after_eq(end_time, jiffies));
> +	} while (1);

Using for (;;) is more generic.  I see your patch keeps the changes
minimal, but I'm afraid that the result, do {} while(1), can be
misleading.

Could you replace with for (;;) ?


thanks,

Takashi

  reply	other threads:[~2009-08-20  6:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-19 20:09 Bartlomiej Zolnierkiewicz
2009-08-20  6:33 ` Takashi Iwai [this message]
2009-08-23 13:27   ` Bartlomiej Zolnierkiewicz
2009-08-23 17:00     ` Takashi Iwai

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=s5hbpmbvvta.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=bzolnier@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ojbyer@usa.net \
    /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

all inboxes | Powered by JetHome®