All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mickey Stein <yekkim@pacbell.net>
To: Cal Peake <cp@absolutedigital.net>
Cc: Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linus Torvalds <torvalds@osdl.org>
Subject: Re: Linux 2.6.13-rc4
Date: Fri, 29 Jul 2005 18:32:56 -0700	[thread overview]
Message-ID: <42EAD8C8.7030701@pacbell.net> (raw)
In-Reply-To: <Pine.LNX.4.61.0507291456550.2566@lancer.cnet.absolutedigital.net>

Cal Peake wrote:

>On Fri, 29 Jul 2005, Mickey Stein wrote:
>
>  
>
>>This is regarding *-rc4 and *-rc4-git1:  I slapped together my favorite config
>>and gave it a test run. It had a bit of a problem and ground to a halt after
>>spewing these into the log.
>>
>>If I can find the time tomorrow morning, I'll leave parport_pc commented out
>>of modprobe.conf and see if something else pops loose. I don't use the
>>parallel port, but I try to keep a fairly robust config for noticing bugs.
>>    
>>
>
>Hi Mick,
>
>Can you please try the patch below from Linus (or -git2 tomorrow) and 
>confirm that it fixes it for you?
>
>thx,
>-cp
>
>--- a/include/asm-i386/bitops.h
>+++ b/include/asm-i386/bitops.h
>@@ -335,14 +335,13 @@ static inline unsigned long __ffs(unsign
> static inline int find_first_bit(const unsigned long *addr, unsigned size)
> {
> 	int x = 0;
>-	do {
>-		if (*addr)
>-			return __ffs(*addr) + x;
>-		addr++;
>-		if (x >= size)
>-			break;
>+
>+	while (x < size) {
>+		unsigned long val = *addr++;
>+		if (val)
>+			return __ffs(val) + x;
> 		x += (sizeof(*addr)<<3);
>-	} while (1);
>+	}
> 	return x;
> }
> 
>  
>
Hi Cal,

I'll give that a go in about 30 minutes and report back, hopefully on 
*rc4-* ;) . I'm not sure I'll be around in the morning so will apply 
this to today's and see.

Thanks,

Mickey

  reply	other threads:[~2005-07-30  1:49 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-07-29 12:09 Linux 2.6.13-rc4 Mickey Stein
2005-07-29 19:01 ` Cal Peake
2005-07-30  1:32   ` Mickey Stein [this message]
2005-07-30  1:53   ` Mickey Stein
  -- strict thread matches above, loose matches on Subject: below --
2005-07-29 16:55 Randy Dunlap
2005-07-29 17:00 ` Jesper Juhl
2005-07-28 23:34 Linus Torvalds
2005-07-29 16:48 ` Jesper Juhl
2005-07-29 23:41   ` Andrew Morton

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=42EAD8C8.7030701@pacbell.net \
    --to=yekkim@pacbell.net \
    --cc=cp@absolutedigital.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@osdl.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.