From owner-freebsd-hackers@FreeBSD.ORG Tue Feb 1 04:23:43 2011 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3481B106566B for ; Tue, 1 Feb 2011 04:23:43 +0000 (UTC) (envelope-from rysto32@gmail.com) Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id 91A948FC13 for ; Tue, 1 Feb 2011 04:23:42 +0000 (UTC) Received: by eyf6 with SMTP id 6so3062185eyf.13 for ; Mon, 31 Jan 2011 20:23:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=gGbYCeqc2mYWIv6LRJ4cCNiQPq72YmKN8T3gMI5dPWo=; b=feAy/9nqlG6Qjt7/H5GEIuHckBvh1mr84tBN9aa0Wbk1Xe0NP0C2wbTx1NBmr8Nw1s Ec1VWMEdtP+IVALc+fjKDJ7YDJM1lXgjtCh5Ca1RnUnBc4ax9wd0iq5RU4xNipdLFC4k eiih+A7gCBflWIDiaPMAnMVguocagDUahHVts= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=qsQVE/kYRAl6QTBFoMZ7EO6DppVJIbRt7kMHyM5CFs9IUZEUUsf4Na4RhN0TkzQhUR mXHcjsXA2tQySJtZB7HmYSeZlZoHCf0ix6qRpwa25J/y+ughliNK7IWpDAu7XYdK6GJF heneury+9lclnZ7bl9jv5jlA/A2KWKq3h0Ims= MIME-Version: 1.0 Received: by 10.213.22.133 with SMTP id n5mr9663677ebb.39.1296534221251; Mon, 31 Jan 2011 20:23:41 -0800 (PST) Received: by 10.213.113.198 with HTTP; Mon, 31 Jan 2011 20:23:41 -0800 (PST) In-Reply-To: <4D4773C8.9040203@freebsd.org> References: <4D4773C8.9040203@freebsd.org> Date: Mon, 31 Jan 2011 23:23:41 -0500 Message-ID: From: Ryan Stone To: Lawrence Stewart Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD Hackers , Ali Mashtizadeh , Neel Natu Subject: Re: Exporting kernel symbols X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Feb 2011 04:23:43 -0000 Make sure that your module uses MODULE_DEPEND to note its dependency on altq. If altq is loaded as a module the kernel linker will only be able to resolve symbols from altq if your module uses MODULE_DEPEND properly.