From owner-freebsd-stable@FreeBSD.ORG Mon Sep 15 23:26:41 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9C6116A4B3 for ; Mon, 15 Sep 2003 23:26:41 -0700 (PDT) Received: from falcon.midgard.homeip.net (h76n3fls24o1048.bredband.comhem.se [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id 8A9A043FDD for ; Mon, 15 Sep 2003 23:26:39 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: (qmail 25403 invoked by uid 1001); 16 Sep 2003 06:26:37 -0000 Date: Tue, 16 Sep 2003 08:26:37 +0200 From: Erik Trulsson To: Gianmarco Giovannelli Message-ID: <20030916062637.GA25332@falcon.midgard.homeip.net> Mail-Followup-To: Gianmarco Giovannelli , stable@freebsd.org, esperti@gufi.org References: <6.0.0.22.2.20030916073154.03af28a8@194.184.65.4> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6.0.0.22.2.20030916073154.03af28a8@194.184.65.4> User-Agent: Mutt/1.5.4i cc: stable@freebsd.org cc: esperti@gufi.org Subject: Re: strange problem with: ed driver / 4.9-PRE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Sep 2003 06:26:41 -0000 On Tue, Sep 16, 2003 at 08:03:55AM +0200, Gianmarco Giovannelli wrote: > Hi, > in the kernel I have these lines: > > [...] > device miibus # MII bus support > device rl > device ed > > options IPFIREWALL #firewall > options IPFIREWALL_VERBOSE #enable logging to syslogd(8) > options IPFIREWALL_VERBOSE_LIMIT=0 #limit verbosity > options IPDIVERT #divert sockets > options DUMMYNET > options IPFW2 > [...] > > When the box starts it complains: > > Sep 15 15:54:21 test2 /kernel: acd0: CDROM at > ata1-master PIO3 > Sep 15 15:54:21 test2 /kernel: Mounting root from ufs:/dev/ad0s1a > Sep 15 15:54:21 test2 /kernel: module_register: module miibus/ukphy already > exists! > Sep 15 15:54:21 test2 /kernel: linker_file_sysinit "miibus.ko" failed to > register! 17 > Sep 15 15:54:21 test2 /kernel: module_register: module pci/ed already > exists! > Sep 15 15:54:21 test2 /kernel: linker_file_sysinit "if_ed.ko" failed to > register! 17 > > ----------------------------- > > test2:/home/gmarco> kldstat > Id Refs Address Size Name > 1 5 0xc0100000 1b4bb4 kernel > 2 1 0xc08f8000 6000 procfs.ko > 4 2 0xc0912000 e000 miibus.ko > 5 1 0xc0924000 a000 if_ed.ko > 6 1 0xc0993000 3000 daemon_saver.ko > [snip more info] > > Any idea on what is happening ? What is happening is that the system is attempting to load support for 'ed' (and by extension also 'miibus') as a module, but since you already have it in the kernel this loading fails and the system complains. This is harmless, but annoying. -- Erik Trulsson ertr1013@student.uu.se