Date: Mon, 10 Nov 2008 20:06:24 +0900 From: Pyun YongHyeon <pyunyh@gmail.com> To: itavy@itavy.com Cc: freebsd-drivers@freebsd.org Subject: Re: Driver for Atheros L1 FastEthernet Message-ID: <20081110110624.GL22162@cdnetworks.co.kr> In-Reply-To: <1815.86.55.4.142.1226314260.squirrel@www.itavy.com> References: <1520.86.55.4.142.1226311495.squirrel@www.itavy.com> <20081110103602.GK22162@cdnetworks.co.kr> <1815.86.55.4.142.1226314260.squirrel@www.itavy.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, Nov 10, 2008 at 04:51:00AM -0600, itavy@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20081110110624.GL22162>