[prev in list] [next in list] [prev in thread] [next in thread] 

List:       linux-kernel
Subject:    Re: fyi: pre2.3.13-7,8 boot failures
From:       Pete Clements <clem () clem ! digital ! net>
Date:       1999-08-07 20:11:11
[Download RAW message or body]


Patch fixes the problem. 
(Got two "Trying to free nonexistent resource <03f8-03ff>" messages.)

Thanks.

  > 
  > 
  > Oops, there's a silly bug in __request_region() that bites you if you have
  > resource clashes. We don't correctly clean up, so we return a half-assed
  > "successful" allocation for some cases we definitely should not..
  > 
  > It then crashes in __release_region() because the bad success we returned
  > had not actually been initialized as a successful resource.
  > 
  > Does this simple patch fix it for you?
  > 
  > 		Linus
  > 
  > ----
  > --- linux-pre8/kernel/resource.c	Thu Aug  5 18:24:21 1999
  > +++ linux/kernel/resource.c	Sat Aug  7 11:08:54 1999
  > @@ -145,7 +145,7 @@
  >  
  >  		write_lock(&resource_lock);
  >  
  > -		while (!(parent->flags & IORESOURCE_BUSY)) {
  > +		for (;;) {
  >  			struct resource *conflict;
  >  
  >  			conflict = __request_resource(parent, res);
  > @@ -153,7 +153,8 @@
  >  				break;
  >  			if (conflict != parent) {
  >  				parent = conflict;
  > -				continue;
  > +				if (!(conflict->flags & IORESOURCE_BUSY))
  > +					continue;
  >  			}
  >  
  >  			/* Uhhuh, that didn't work out.. */
  > 


-- 
Pete Clements 
clem@clem.digital.net

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic