Searched hist:134092 (Results 1 - 2 of 2) sorted by relevance

/freebsd-9.3-release/sys/arm/conf/
H A DNSLU.hintsdiff 191858 Wed May 06 18:27:54 MDT 2009 cognet Use the good hints for the NSLU, it should fix the network adapter.

PR: arm/134092
Submitted by: gavin
/freebsd-9.3-release/sys/kern/
H A Dkern_module.cdiff 134092 Fri Aug 20 19:47:48 MDT 2004 truckman Don't bother calling the module event handlers from module_shutdown()
in the shutdown_final state if the RB_NOSYNC flag is set.

The specific motivation in this case is that a system panic in an
interrupt context results in a call to module_shutdown(), which
calls g_modevent(), which calls g_malloc(..., M_WAITOK), which
results in a second panic. While g_modevent() could be fixed to
not call malloc() for MOD_SHUTDOWN events (which it doesn't handle
in any case), it is probably also a good idea to entirely skip the
execution of the module shutdown handlers after a panic.

This may be a MFC candidate for RELENG_5.

Completed in 48 milliseconds