I just had one of my servers crash with this panic from kern_timeout.c. The
relevant code seems to be:
/* Fill in the next free callout structure. */
new = SLIST_FIRST(&callfree);
if (new == NULL)
/* XXX Attempt to malloc first */
panic("timeout table full");
SLIST_REMOVE_HEAD(&callfree, c_links.sle);
I'm just curious, what might consume too many timeout structures? And can I
cause it to default to more of them?
DS
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-stable" in the body of the message