Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Dec 2002 07:40:06 -0800 (PST)
From:      Mamoru Iwaki <iwaki@bc.niigata-u.ac.jp>
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: kern/46368: MAXDEP in isa/pnpparse.c is too small
Message-ID:  <200212201540.gBKFe633019633@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/46368; it has been noted by GNATS.

From: Mamoru Iwaki <iwaki@bc.niigata-u.ac.jp>
To: freebsd-gnats-submit@FreeBSD.org, iwaki@bc.niigata-u.ac.jp
Cc:  
Subject: Re: kern/46368: MAXDEP in isa/pnpparse.c is too small
Date: Sat, 21 Dec 2002 00:32:32 +0900 (JST)

 I found another solution in the following change for 5-current.  
 Applying this change to sys/isa/pnpparse.c, the message has disappeared.  
 I hope this change should be merged into the 4-stable.  
 
 - *	$FreeBSD: /home/ncvs/src/sys/isa/pnpparse.c,v 1.5 2000/03/31 19:35:41 dfr Exp $
 + *	$FreeBSD: /home/ncvs/src/sys/isa/pnpparse.c,v 1.6 2000/04/04 07:48:04 dfr Exp $
 
  				}
 -				if (ncfgs >= MAXDEP) {
 +				if (ncfgs > MAXDEP) {
  					device_printf(parent, "too many dependant configs (%d)\n", MAXDEP);
 
 ---
 -----
 Mamoru IWAKI   (iwaki@bc.niigata-u.ac.jp)
 Graduate School of Science and Technology, Niigata University

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200212201540.gBKFe633019633>