Up to [cvs.NetBSD.org] / src / sys / kern
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: rpaulo-netinet-merge-pcb
Revision 1.111.2.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:57:16 2006 UTC (6 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.111: +285 -262
lines
Diff to previous 1.111 (colored) next main 1.112 (colored)
sync with head
Revision 1.111 / (download) - annotate - [select for diffs], Thu Jan 26 15:07:25 2006 UTC (7 years, 3 months ago) by christos
Branch: MAIN
Branch point for: simonb-timecounters,
rpaulo-netinet-merge-pcb
Changes since 1.110: +3 -3
lines
Diff to previous 1.110 (colored)
PR/32631: Yves-Emmanuel JUTARD: Fix DIAGNOSTIC panic in the pool code. At the time pool_get() calls pool_catchup(), pp has been free'd but it is still in the "entered" state. The chain pool_catchup() -> pool_allocator_alloc() -> pool_reclaim() on pp fails because pp is still in the "entered" state. Call pr_leave() before calling calling pool_catchup() to avoid this. Thanks for the excellent analysis!