In article <000501c00a34$dfd43f20$71cbc918@jehovah>,
Bosko Milekic <[EMAIL PROTECTED]> wrote:
>
> Hrmmm, there may be a logic problem here. Try this (apply it manually,
> as I am not able to produce a diff at this time):
>
> change:
>
> if ((__mcnt == NULL) && (m_alloc_ref(1) == 0))
> panic("mbuf subsystem: out of ref counts!");
>
> to:
>
> if (__mcnt == NULL) {
> if (m_alloc_ref(1) != 0)
> __mcnt = mext_refcnt_free;
> else
> panic("mbuf subsystem: out of ref counts!");
> }
>
> It could be that the m_alloc_ref(1) doesn't fail, but that __mcnt
> is still NULL, it's missing that __mcnt = mext_refcnt_free assignment.
> This is most probably a BUG, so please commit the fix...
That fixed it. Thanks for the quick reply!
I have committed the fix just now.
John
--
John Polstra [EMAIL PROTECTED]
John D. Polstra & Co., Inc. Seattle, Washington USA
"Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message