From owner-freebsd-net@FreeBSD.ORG Fri May 2 02:05:01 2008 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C49B6106564A for ; Fri, 2 May 2008 02:05:01 +0000 (UTC) (envelope-from davidch@broadcom.com) Received: from mms2.broadcom.com (mms2.broadcom.com [216.31.210.18]) by mx1.freebsd.org (Postfix) with ESMTP id 947EF8FC19 for ; Fri, 2 May 2008 02:05:01 +0000 (UTC) (envelope-from davidch@broadcom.com) Received: from [10.11.16.99] by mms2.broadcom.com with ESMTP (Broadcom SMTP Relay (Email Firewall v6.3.2)); Thu, 01 May 2008 19:04:49 -0700 X-Server-Uuid: D3C04415-6FA8-4F2C-93C1-920E106A2031 Received: by mail-irva-10.broadcom.com (Postfix, from userid 47) id 5BAC52B1; Thu, 1 May 2008 19:04:49 -0700 (PDT) Received: from mail-irva-8.broadcom.com (mail-irva-8 [10.11.18.52]) by mail-irva-10.broadcom.com (Postfix) with ESMTP id 474E52B0 for ; Thu, 1 May 2008 19:04:49 -0700 (PDT) Received: from mail-irva-13.broadcom.com (mail-irva-13.broadcom.com [10.11.16.103]) by mail-irva-8.broadcom.com (MOS 3.7.5a-GA) with ESMTP id GVO11934; Thu, 1 May 2008 19:04:48 -0700 (PDT) Received: from NT-IRVA-0751.brcm.ad.broadcom.com (nt-irva-0751 [10.8.194.65]) by mail-irva-13.broadcom.com (Postfix) with ESMTP id 2735E74CFE for ; Thu, 1 May 2008 19:04:48 -0700 (PDT) Received: from IRVEXCHHUB01.corp.ad.broadcom.com ([10.9.200.131]) by NT-IRVA-0751.brcm.ad.broadcom.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 1 May 2008 19:04:48 -0700 Received: from IRVEXCHCCR01.corp.ad.broadcom.com ([10.9.200.129]) by IRVEXCHHUB01.corp.ad.broadcom.com ([10.9.200.131]) with mapi; Thu, 1 May 2008 19:04:47 -0700 From: "David Christensen" To: "freebsd-net@freebsd.org" Date: Thu, 1 May 2008 19:04:56 -0700 Thread-Topic: Not All Symbols Present in a Loadable Kernel Module Thread-Index: Acir+Oryg9fN3dzBQ8auKV2CI6ktVA== Message-ID: <5D267A3F22FD854F8F48B3D2B523819324F09D65FA@IRVEXCHCCR01.corp.ad.broadcom.com> Accept-Language: en-US Content-Language: en-US acceptlanguage: en-US MIME-Version: 1.0 X-OriginalArrivalTime: 02 May 2008 02:04:48.0086 (UTC) FILETIME=[E61B7F60:01C8ABF8] X-WSS-ID: 6404A94B3D02969485-01-01 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Not All Symbols Present in a Loadable Kernel Module X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 May 2008 02:05:01 -0000 I'm trying to build the "bce" driver as a kernel module under RELENG_7 but = I'm finding that not all of the functions in the driver are exported as symbols= . This makes it difficult to "call" a function from ddb because I get the error "S= ymbol not found". I'm building and loading the driver from /usr/src/sys/modules/= bce. What am I doing wrong? How can I get all functions in the driver exported = as symbols usable by the debugger? Dave