From owner-freebsd-current@FreeBSD.ORG Mon Feb 26 15:08:36 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF10A16A400 for ; Mon, 26 Feb 2007 15:08:36 +0000 (UTC) (envelope-from piso@newluxor.wired.org) Received: from mail.oltrelinux.com (krisma.oltrelinux.com [194.242.226.43]) by mx1.freebsd.org (Postfix) with ESMTP id 7FA5913C4A3 for ; Mon, 26 Feb 2007 15:08:36 +0000 (UTC) (envelope-from piso@newluxor.wired.org) Received: from newluxor.wired.org (ip-91-186.sn1.eutelia.it [62.94.91.186]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.oltrelinux.com (Postfix) with ESMTP id 3317111AEB3 for ; Mon, 26 Feb 2007 16:08:32 +0100 (CET) Received: (from piso@localhost) by newluxor.wired.org (8.13.8/8.13.8/Submit) id l1QF8Kfn002505 for freebsd-current@freebsd.org; Mon, 26 Feb 2007 16:08:20 +0100 (CET) (envelope-from piso) Date: Mon, 26 Feb 2007 16:08:14 +0100 From: Paolo Pisati To: FreeBSD_Current Message-ID: <20070226150814.GA2458@tin.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at krisma.oltrelinux.com Subject: kldstat output: kernel no more X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Feb 2007 15:08:36 -0000 On a recent CURRENT, try kldstat: [piso@newluxor /usr/home/piso]$ kldstat Id Refs Address Size Name 2 1 0xffffffffaede1000 3877 linprocfs.ko 3 2 0xffffffffaede5000 186dd linux.ko 6 1 0xffffffffaeec6000 75a rtc.ko 7 1 0xffffffffaee58000 b20c ipfw.ko 8 1 0xffffffffaee64000 76b8 libalias.ko 9 1 0xffffffffaeecb000 49f8 i915.ko 10 1 0xffffffffaeed0000 da61 drm.ko 11 1 0xffffffffaf106000 17027 smbfs.ko 12 2 0xffffffffaf11e000 1cda libiconv.ko 13 2 0xffffffffaf120000 c25 libmchain.ko 14 1 0xffffffffaf1f3000 2a35 snd_ich.ko 15 1 0xffffffffaf1f6000 2a235 sound.ko [piso@newluxor /usr/home/piso]$ no kernel in the output, and that breaks module detection. In example, everytime i do: ifconfig bfe0 inet ... the bfe support is compiled into the kernel, but ifconfig cannot find it (cause there's no kernel), so it tries to kldload it again, resulting in: Feb 26 11:46:55 newluxor kernel: Module cardbus/re failed to register: 17 Feb 26 11:46:55 newluxor kernel: module_register: module re/miibus already exist s! Feb 26 11:46:55 newluxor kernel: Module re/miibus failed to register: 17 Feb 26 11:46:55 newluxor kernel: module_register: module pci/re already exists! Feb 26 11:46:55 newluxor kernel: Module pci/re failed to register: 17 Feb 26 11:46:55 newluxor kernel: module_register: module cardbus/re already exists! bye, P.