From: Rene Herman <rene.herman@gmail.com>
To: Krzysztof Helt <krzysztof.h1@gmail.com>
Cc: Takashi Iwai <tiwai@suse.de>,
ALSA devel <alsa-devel@alsa-project.org>,
Trent Piepho <xyzzy@speakeasy.org>
Subject: Re: [PATCH] ad1838/cs4231 -- fix MCE timeout upon initial load
Date: Tue, 18 Sep 2007 10:17:43 +0200 [thread overview]
Message-ID: <46EF89A7.9020906@gmail.com> (raw)
In-Reply-To: <20070918100246.6cd37e1b.krzysztof.h1@gmail.com>
On 09/18/2007 10:02 AM, Krzysztof Helt wrote:
>> + timeout = jiffies + msecs_to_jiffies(250);
>> + do {
>> spin_unlock_irqrestore(&chip->reg_lock, flags);
>> - if (time_after(jiffies, end_time)) {
>> - snd_printk(KERN_ERR "mce_down - auto calibration time out (2)\n");
>> - return;
>> - }
>> msleep(1);
>> spin_lock_irqsave(&chip->reg_lock, flags);
>> - }
>> -
>> - snd_printdd("(3) jiffies = %lu\n", jiffies);
>> -
>> - end_time = jiffies + msecs_to_jiffies(100);
>> - while (inb(AD1848P(chip, REGSEL)) & AD1848_INIT) {
>> - spin_unlock_irqrestore(&chip->reg_lock, flags);
>> - if (time_after(jiffies, end_time)) {
>> - snd_printk(KERN_ERR "mce_down - auto calibration time out (3)\n");
>> - return;
>> - }
>> - msleep(1);
>> - spin_lock_irqsave(&chip->reg_lock, flags);
>> - }
>> - spin_unlock_irqrestore(&chip->reg_lock, flags);
>> + regsel = snd_ad1848_in(chip, AD1848_TEST_INIT);
>> + } while ((regsel & AD1848_CALIB_IN_PROGRESS) && time_before(jiffies, timeout));
>
> Break this long line. You may calculate "regsel & AD1848_CALIB_IN_PROGRESS"
> inside the loop and use it in the condition outside the loop too.
Or just break out directly with a goto:
regsel = snd_ad1848_in();
if (!(regsel & AD1848_CALIB_IN_PROGRESS))
goto out;
while (time_before(jiffies, timeout));
snd_printk(KERN_ERR "mce_down - auto calibration time out (2)\n")
out:
spin_unlock_irqrestore()
snd_printd()
return;
}
Have grown to like those best generally -= falling off a timeout-loop means
you've timed out, and if not, you jump over the error handling for that.
But I'm quite sure we'll be able to get religious over that. We're four
people patching the same little function over and over again, so we're
pretty daft anyway :-)
Rene.
prev parent reply other threads:[~2007-09-18 8:18 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-10 18:29 [PATCH] ad1838/cs4231 -- fix MCE timeout upon initial load Rene Herman
2007-09-10 21:40 ` Krzysztof Helt
2007-09-10 21:37 ` Takashi Iwai
2007-09-10 21:43 ` Rene Herman
2007-09-10 21:45 ` Rene Herman
2007-09-11 8:56 ` Krzysztof Helt
2007-09-11 20:42 ` Rene Herman
2007-09-17 21:04 ` Trent Piepho
2007-09-17 21:47 ` Krzysztof Helt
2007-09-18 1:18 ` Trent Piepho
2007-09-18 7:20 ` Krzysztof Helt
2007-09-19 1:27 ` Trent Piepho
2007-09-19 2:48 ` Rene Herman
2007-09-18 0:17 ` Rene Herman
2007-09-18 1:57 ` Rene Herman
2007-09-18 4:24 ` Rene Herman
2007-09-18 11:03 ` Rene Herman
2007-09-18 11:54 ` Takashi Iwai
2007-09-18 13:38 ` [ PATCH 1/4] alsa-kernel: schedule_timeout() fixes Rene Herman
2007-09-18 16:39 ` Takashi Iwai
2007-09-18 13:49 ` [PATCH 2/4] alsa-kernel: schedule_timeout() fix for kernel/drivers/input/touchscreen/ucb1400_ts.c Rene Herman
2007-09-18 13:58 ` Takashi Iwai
2007-09-18 13:58 ` Rene Herman
2007-09-18 13:57 ` [PATCH] ad1838/cs4231 -- fix MCE timeout upon initial load Rene Herman
2007-09-18 14:27 ` [PATCH 3/4] alsa-kernel: schedule_timeout() fix for core/seq/seq_instr.c Rene Herman
2007-09-18 16:38 ` [PATCH] ad1838/cs4231 -- fix MCE timeout upon initial load Takashi Iwai
2007-09-18 14:34 ` [PATCH 4/4] alsa-driver: schedule_timeout() fixes Rene Herman
2007-09-18 16:44 ` Takashi Iwai
2007-09-18 17:05 ` Rene Herman
2007-09-18 17:09 ` Rene Herman
2007-09-18 17:22 ` Takashi Iwai
2007-09-18 2:32 ` [PATCH] ad1838/cs4231 -- fix MCE timeout upon initial load Trent Piepho
2007-09-18 6:50 ` Rene Herman
2007-09-18 7:33 ` Krzysztof Helt
2007-09-18 8:02 ` Krzysztof Helt
2007-09-18 8:17 ` Rene Herman [this message]
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=46EF89A7.9020906@gmail.com \
--to=rene.herman@gmail.com \
--cc=alsa-devel@alsa-project.org \
--cc=krzysztof.h1@gmail.com \
--cc=tiwai@suse.de \
--cc=xyzzy@speakeasy.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.