| Summary: | I don't understand one of the kernel boot error messages | ||
|---|---|---|---|
| Product: | Base System | Reporter: | SMurphy <SMurphy> |
| Component: | kern | Assignee: | Yar Tikhiy <yar> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | 4.3-RELEASE | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
SMurphy
2001-05-18 17:50:00 UTC
Please try increasing MAXDEP (file /usr/src/sys/isa/pnpparse.c at about line 39). Unfortunately, the kernel message is rather misleading because the number "8" in it is the MAXDEP value, not the actual number of dependencies in your PnP configuration. -- Yar Yar,
Thank you for the advice, it did fix the problem. What would you
recommend for a value? I doubled it (to 16). Will that cause any
problems. Will it cause inefficiency?
Thanks for your time,
-Shawn
On 3 Jun 2001, at 12:07, Yar Tikhiy wrote:
> Please try increasing MAXDEP (file /usr/src/sys/isa/pnpparse.c at
> about line 39). Unfortunately, the kernel message is rather misleading
> because the number "8" in it is the MAXDEP value, not the actual
> number of dependencies in your PnP configuration. -- Yar
>
No, it won't. The code is executed only at the boot time, when
the kernel is configuring PnP devices.
As for the parameter value, the kernel warning should have shown
you the right number, but it did not due to a bug. I'll fix the
corresponding printf() so it shows the neccessary information. For
now, if 16 works for you, keep that value.
On Mon, Jun 04, 2001 at 10:39:20PM -0500, Shawn Murphy wrote:
>
> Thank you for the advice, it did fix the problem. What would you
> recommend for a value? I doubled it (to 16). Will that cause any
> problems. Will it cause inefficiency?
>
> Thanks for your time,
> -Shawn
>
> On 3 Jun 2001, at 12:07, Yar Tikhiy wrote:
>
> > Please try increasing MAXDEP (file /usr/src/sys/isa/pnpparse.c at
> > about line 39). Unfortunately, the kernel message is rather misleading
> > because the number "8" in it is the MAXDEP value, not the actual
> > number of dependencies in your PnP configuration. -- Yar
--
Yar
State Changed From-To: open->analyzed Over to yar who said there was a change he wanted to make in response to this PR. Responsible Changed From-To: freebsd-bugs->yar State Changed From-To: analyzed->closed I've took a closer look at the PnP code... The current state of affairs is that the number of dependent configs cannot be predicted without parsing all the PnP data, so it was me who was wrong when I said that the diagnostic printf() was wrong. |