Make ti(4) build with 'options TI_PRIVATE_JUMBOS'.

This was broken in r175872.

We have a UMA backed jumbo allocator and that is much better
implementation than having a local jumbo buffer allocator in
driver. This local allocator would be removed in near future but
fixing build before removal wouldn't be a bad idea.
This commit is contained in:
Pyun YongHyeon 2011-11-04 18:39:39 +00:00
parent 504dc87bf4
commit ee715c5ff4

View File

@ -1328,7 +1328,7 @@ ti_newbuf_jumbo(struct ti_softc *sc, int i, struct mbuf *m)
/* Attach the buffer to the mbuf. */
m_new->m_data = (void *) buf;
m_new->m_len = m_new->m_pkthdr.len = TI_JUMBO_FRAMELEN;
MEXTADD(m_new, buf, TI_JUMBO_FRAMELEN, ti_jfree,
MEXTADD(m_new, buf, TI_JUMBO_FRAMELEN, ti_jfree, buf,
(struct ti_softc *)sc, 0, EXT_NET_DRV);
} else {
m_new = m;