MFC r207761 partially:

Add a fastpath to allocate from packet zone when using m_getjcl.
 This will add support for packet zone for at least igb and ixgbe.
This commit is contained in:
Fabien Thomas 2010-05-14 13:48:11 +00:00
parent f8e0b31f59
commit 7835cb170d

View File

@ -523,6 +523,9 @@ m_getjcl(int how, short type, int flags, int size)
struct mbuf *m, *n;
uma_zone_t zone;
if (size == MCLBYTES)
return m_getcl(how, type, flags);
args.flags = flags;
args.type = type;