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:
parent
504dc87bf4
commit
ee715c5ff4
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user