From owner-freebsd-drivers@FreeBSD.ORG Mon Nov 10 11:17:06 2008 Return-Path: Delivered-To: freebsd-drivers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 672281065687 for ; Mon, 10 Nov 2008 11:17:06 +0000 (UTC) (envelope-from itavy@itavy.com) Received: from gateway03.websitewelcome.com (gateway03.websitewelcome.com [69.93.223.26]) by mx1.freebsd.org (Postfix) with SMTP id 070C78FC0A for ; Mon, 10 Nov 2008 11:17:05 +0000 (UTC) (envelope-from itavy@itavy.com) Received: (qmail 19492 invoked from network); 10 Nov 2008 11:33:16 -0000 Received: from gator482.hostgator.com (67.18.18.122) by gateway03.websitewelcome.com with SMTP; 10 Nov 2008 11:33:16 -0000 Received: from localhost ([127.0.0.1]:42519 helo=www.itavy.com) by gator482.hostgator.com with esmtpa (Exim 4.69) (envelope-from ) id 1KzUlS-0002pF-BH; Mon, 10 Nov 2008 05:17:02 -0600 Received: from 86.55.4.142 ([86.55.4.142]) (SquirrelMail authenticated user itavy@itavy.com) by www.itavy.com with HTTP; Mon, 10 Nov 2008 05:17:02 -0600 (CST) Message-ID: <1973.86.55.4.142.1226315822.squirrel@www.itavy.com> In-Reply-To: <20081110110624.GL22162@cdnetworks.co.kr> 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> <20081110110624.GL22162@cdnetworks.co.kr> Date: Mon, 10 Nov 2008 05:17:02 -0600 (CST) From: itavy@itavy.com To: pyunyh@gmail.com User-Agent: SquirrelMail/1.4.13 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator482.hostgator.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - itavy.com Cc: freebsd-drivers@freebsd.org Subject: Re: Driver for Atheros L1 FastEthernet X-BeenThere: freebsd-drivers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Writing device drivers for FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Nov 2008 11:17:06 -0000 i have updated to RELENG_7 before i have compiled the driver wich is working now:) thank you, Best regards, Octavian Ionescu > 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 >