From owner-freebsd-net@FreeBSD.ORG Mon Oct 10 20:35:14 2011 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 96C741065670; Mon, 10 Oct 2011 20:35:14 +0000 (UTC) (envelope-from seanbru@yahoo-inc.com) Received: from mrout1-b.corp.bf1.yahoo.com (mrout1-b.corp.bf1.yahoo.com [98.139.253.104]) by mx1.freebsd.org (Postfix) with ESMTP id 488AA8FC1C; Mon, 10 Oct 2011 20:35:14 +0000 (UTC) Received: from [127.0.0.1] (rideseveral.corp.yahoo.com [10.73.160.231]) by mrout1-b.corp.bf1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id p9AKZ54M085035; Mon, 10 Oct 2011 13:35:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yahoo-inc.com; s=cobra; t=1318278906; bh=d1fdjXI6wBM8RRNN3SwuTrHZEaysLR4V3AkgUY/sdYY=; h=Subject:From:To:Cc:In-Reply-To:References:Content-Type:Date: Message-ID:Mime-Version:Content-Transfer-Encoding; b=wmx/4HJJqupYEU3A2RiQ72Eggm104oW7h2LlzqsVXJQw/6Ur1aRNmCgzkYMNMiy9N vxETHfg5MInKbbXskqpvMu6SAVuWbt8rPg8j3L7ohWXxtHuyCekO26/aUDN1va+nQO urEniRneQVN+cv0tzeYBy9WC8uVrPQjr2t3y7zpE= From: Sean Bruno To: "pyunyh@gmail.com" In-Reply-To: <20111010190609.GB1781@michelle.cdnetworks.com> References: <1317343996.2777.33.camel@hitfishpass-lx.corp.yahoo.com> <1317346748.2777.36.camel@hitfishpass-lx.corp.yahoo.com> <5D267A3F22FD854F8F48B3D2B523819385F35B4738@IRVEXCHCCR01.corp.ad.broadcom.com> <1317683178.15510.25.camel@hitfishpass-lx.corp.yahoo.com> <20111007191154.GB11808@michelle.cdnetworks.com> <1318018310.27029.10.camel@hitfishpass-lx.corp.yahoo.com> <20111007205254.GC11808@michelle.cdnetworks.com> <1318264942.1236.6.camel@hitfishpass-lx.corp.yahoo.com> <20111010174749.GA1781@michelle.cdnetworks.com> <1318271046.1236.11.camel@hitfishpass-lx.corp.yahoo.com> <20111010190609.GB1781@michelle.cdnetworks.com> Content-Type: text/plain; charset="UTF-8" Date: Mon, 10 Oct 2011 13:35:05 -0700 Message-ID: <1318278905.1236.18.camel@hitfishpass-lx.corp.yahoo.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.3 (2.32.3-1.fc14) Content-Transfer-Encoding: 7bit Cc: "freebsd-net@freebsd.org" , David Christensen , "davidch@freebsd.org" , Pyun YongHyeon Subject: Re: bce(4) with IPMI 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: Mon, 10 Oct 2011 20:35:14 -0000 On Mon, 2011-10-10 at 12:06 -0700, YongHyeon PYUN wrote: > Did you capture this message generated after disabling IPMI/DRAC in > BIOS? I thought you had to use Broadcom's separate program to > disable management firmware. > > Does the last patch solve the problem? > It's still not clear to me. The last patch allows accessing PHY > status when there is a management firmware regardless of its > running state. The latest patchset you sent me does indeed allow IPMI to function. So, awesome! I attempted to disable IPMI via the Dell BIOS tool (DRAC) and I couldn't see any driver detection of this status. So, when I add this: > if ((ifp->if_flags & IFF_UP) == 0 && > (sc->bce_flags & BCE_MFW_PRESENT_FLAG) == 0){ > printf("%s: BCE detected MFW not present\n", __func__); I don't see any change in behavior with IPMI enabled or disabled via the Dell "DRAC" ROM Menu. Sean