Bosko Milekic wrote:
>   This is not entirely true.  You can allocate an mbuf chain without
>   holding Giant if the caches are well populated - and they should be
>   in the common/general case.  You can in fact modify the allocator to
>   just not do a kmem_malloc() if called with M_DONTWAIT, but I don't
>   think you'd want to do this at this point.

In fact, one of the first changes I make in a kernel when I go
to do a networking product of any kind is to allocate the mbufs
in machdep.c out of physical RAM, and then pre-link them onto a
free-list, instead of using the standard (comparatively very
slow) mbuf allocator.


>   The gist of the argument boils down to the fact that network buffer
>   allocations have different requirements than general all-purpose
>   allocations (by design, the last time I checked), and that is why
>   an mbuf/cluster allocator exists.

Everything allocated at interrupt has pretty much the same
requirements.  The only real difference in mbuf's is that the
allocation failure cases are generally better handled than all
other allocation failure cases within the kernel (or people
would not have been beating up Jeff about a month ago for the
kmem_map space issue).

-- Terry

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to