From owner-freebsd-drivers@FreeBSD.ORG Mon Nov 10 11:08:27 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 DA877106567D for ; Mon, 10 Nov 2008 11:08:27 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.229]) by mx1.freebsd.org (Postfix) with ESMTP id 9C8DE8FC1C for ; Mon, 10 Nov 2008 11:08:27 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: by rv-out-0506.google.com with SMTP id g9so627059rvb.2 for ; Mon, 10 Nov 2008 03:08:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:received:date:from :to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=RMfl+AMVhGs/IDYoemLUTm+tsAbnUko9b0Ne1vsQqpY=; b=di7NjKLcje9Fu4j5kTDwWFzdsooJZ1Wh/u09T/QlMEZTCkk3FoS292wARFNDtd+j3F nNp3CuO5L1nyFximX9I1edJHw9zwqEulVuwVIcdVDCDNArPVDuMesWU9IbDrqBUoACpG ZIVNPzCmFkP2HjofSrUp1pOK4FJI8ve6cPy/k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:reply-to:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=M7ExXEJH6wtnp0S8wKWHBfxbDWTKH1vlFYuDIYkKRD52w3d7549FPNhHFuj10HLDRZ 5t9QDeR54lDaQSeMM0YHQGXMX+F1mwH4ceRv68qrRCVzREqsemEccTx9Z5kbmipfHBox X+eHJIYqyuTH29eCYnoRQ3kWCP5Rwip2d6n4o= Received: by 10.140.201.1 with SMTP id y1mr3509995rvf.127.1226315307391; Mon, 10 Nov 2008 03:08:27 -0800 (PST) Received: from michelle.cdnetworks.co.kr ([211.53.35.84]) by mx.google.com with ESMTPS id f21sm20513203rvb.5.2008.11.10.03.08.24 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 10 Nov 2008 03:08:26 -0800 (PST) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id mAAB6Ow3024179 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 10 Nov 2008 20:06:24 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id mAAB6OhB024178; Mon, 10 Nov 2008 20:06:24 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Mon, 10 Nov 2008 20:06:24 +0900 From: Pyun YongHyeon To: itavy@itavy.com Message-ID: <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> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1815.86.55.4.142.1226314260.squirrel@www.itavy.com> User-Agent: Mutt/1.4.2.1i 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 Reply-To: pyunyh@gmail.com 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:08:27 -0000 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