Driver for Atheros L1 FastEthernet

Pyun YongHyeon pyunyh at gmail.com
Mon Nov 10 03:08:27 PST 2008


On Mon, Nov 10, 2008 at 04:51:00AM -0600, itavy at itavy.com wrote:
 > thank you for the fast respone :)
 > 
 > i have compiled but now i have another error wehn i try to load it:
 > 
 > link_elf: symbol m_collapse undefined

Hmm, I guess you're not using latest stable/7.
Please find m_collaspe() in if_ale.c(line number 1686) and change
it from the following.
from:
	m = m_collapse(*m_head, M_DONTWAIT, ALE_MAXTXSEGS);

to:
	m = m_defrag(*m_head, M_DONTWAIT);

And build ale(4) again.
-- 
Regards,
Pyun YongHyeon


More information about the freebsd-drivers mailing list