From owner-freebsd-threads@FreeBSD.ORG Mon Sep 7 00:00:06 2009 Return-Path: Delivered-To: freebsd-threads@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14AEE1065672 for ; Mon, 7 Sep 2009 00:00:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DB7BD8FC18 for ; Mon, 7 Sep 2009 00:00:05 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n870052m096801 for ; Mon, 7 Sep 2009 00:00:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n87005wa096800; Mon, 7 Sep 2009 00:00:05 GMT (envelope-from gnats) Resent-Date: Mon, 7 Sep 2009 00:00:05 GMT Resent-Message-Id: <200909070000.n87005wa096800@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-threads@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Mikulas Patocka Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF4781065670 for ; Sun, 6 Sep 2009 23:56:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id DEC1F8FC1D for ; Sun, 6 Sep 2009 23:56:45 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n86Nujnu005674 for ; Sun, 6 Sep 2009 23:56:45 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n86Nujih005656; Sun, 6 Sep 2009 23:56:45 GMT (envelope-from nobody) Message-Id: <200909062356.n86Nujih005656@www.freebsd.org> Date: Sun, 6 Sep 2009 23:56:45 GMT From: Mikulas Patocka To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: threads/138603: localtime handles pthread errors badly X-BeenThere: freebsd-threads@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Threading on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Sep 2009 00:00:06 -0000 >Number: 138603 >Category: threads >Synopsis: localtime handles pthread errors badly >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-threads >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Sep 07 00:00:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mikulas Patocka >Release: 8.0-BETA3 >Organization: >Environment: not FreeBSD, I just use some of its libraries >Description: localtime function calls _pthread_key_create and treats negative value as an error. In reality, _pthread_key_create return positive number on error and zero on non-error. _pthread_key_create doesn't set errno. >How-To-Repeat: Found during source review. Could be triggered by filling-up the threadspecific key table and calling localtime(). >Fix: A patch is attached. Patch attached with submission follows: --- libc.bak/stdtime/localtime.c 2009-08-03 10:13:06.000000000 +0200 +++ libc/stdtime/localtime.c 2009-09-07 01:48:32.000000000 +0200 @@ -23,6 +23,7 @@ #include #include #include +#include #include "private.h" #include "un-namespace.h" @@ -1418,8 +1419,10 @@ if (localtime_key < 0) { _pthread_mutex_lock(&localtime_mutex); if (localtime_key < 0) { - if (_pthread_key_create(&localtime_key, free) < 0) { + int r; + if ((r = _pthread_key_create(&localtime_key, free))) { _pthread_mutex_unlock(&localtime_mutex); + errno = r; return(NULL); } } @@ -1517,8 +1520,10 @@ if (gmtime_key < 0) { _pthread_mutex_lock(&gmtime_mutex); if (gmtime_key < 0) { - if (_pthread_key_create(&gmtime_key, free) < 0) { + int r; + if ((r = _pthread_key_create(&gmtime_key, free))) { _pthread_mutex_unlock(&gmtime_mutex); + errno = r; return(NULL); } } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-threads@FreeBSD.ORG Mon Sep 7 11:07:10 2009 Return-Path: Delivered-To: freebsd-threads@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0F594106566B for ; Mon, 7 Sep 2009 11:07:10 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F12B68FC0A for ; Mon, 7 Sep 2009 11:07:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n87B79Qw010409 for ; Mon, 7 Sep 2009 11:07:09 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n87B79mi010405 for freebsd-threads@FreeBSD.org; Mon, 7 Sep 2009 11:07:09 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 7 Sep 2009 11:07:09 GMT Message-Id: <200909071107.n87B79mi010405@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-threads@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-threads@FreeBSD.org X-BeenThere: freebsd-threads@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Threading on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Sep 2009 11:07:10 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o threa/138603 threads [libc] [patch] localtime(3) handles pthread errors bad o threa/136345 threads Recursive read rwlocks in thread A cause deadlock with o threa/135673 threads databases/mysql50-server - MySQL query lock-ups on 7.2 o threa/135462 threads [PATCH] _thread_cleanupspecific() doesn't handle delet o threa/133734 threads 32 bit libthr failing pthread_create() o threa/128922 threads threads hang with xorg running o threa/127225 threads bug in lib/libthr/thread/thr_init.c o threa/122923 threads 'nice' does not prevent background process from steali o threa/121336 threads lang/neko threading ok on UP, broken on SMP (FreeBSD 7 o threa/118715 threads kse problem o threa/116668 threads can no longer use jdk15 with libthr on -stable SMP o threa/116181 threads /dev/io-related io access permissions are not propagat o threa/115211 threads pthread_atfork misbehaves in initial thread o threa/110636 threads [request] gdb(1): using gdb with multi thread applicat o threa/110306 threads apache 2.0 segmentation violation when calling gethost o threa/103975 threads Implicit loading/unloading of libpthread.so may crash o threa/101323 threads [patch] fork(2) in threaded programs broken. s threa/100815 threads FBSD 5.5 broke nanosleep in libc_r s threa/94467 threads send(), sendto() and sendmsg() are not correct in libc s threa/84483 threads problems with devel/nspr and -lc_r on 4.x o threa/83914 threads [libc] popen() doesn't work in static threaded program o threa/80992 threads abort() sometimes not caught by gdb depending on threa o threa/80435 threads panic on high loads o threa/79887 threads [patch] freopen() isn't thread-safe o threa/79683 threads svctcp_create() fails if multiple threads call at the s threa/76694 threads fork cause hang in dup()/close() function in child (-l s threa/76690 threads fork hang in child for -lc_r o threa/75374 threads pthread_kill() ignores SA_SIGINFO flag o threa/75273 threads FBSD 5.3 libpthread (KSE) bug o threa/72953 threads fork() unblocks blocked signals w/o PTHREAD_SCOPE_SYST o threa/70975 threads [sysvipc] unexpected and unreliable behaviour when usi s threa/69020 threads pthreads library leaks _gc_mutex s threa/49087 threads Signals lost in programs linked with libc_r s threa/48856 threads Setting SIGCHLD to SIG_IGN still leaves zombies under s threa/40671 threads pthread_cancel doesn't remove thread from condition qu s threa/39922 threads [threads] [patch] Threaded applications executed with s threa/37676 threads libc_r: msgsnd(), msgrcv(), pread(), pwrite() need wra s threa/34536 threads accept() blocks other threads s threa/32295 threads [libc_r] [patch] pthread(3) dont dequeue signals s threa/30464 threads pthread mutex attributes -- pshared s threa/24632 threads libc_r delicate deviation from libc in handling SIGCHL s threa/24472 threads libc_r does not honor SO_SNDTIMEO/SO_RCVTIMEO socket o 42 problems total. From owner-freebsd-threads@FreeBSD.ORG Tue Sep 8 01:52:12 2009 Return-Path: Delivered-To: freebsd-threads@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 651BC106566B; Tue, 8 Sep 2009 01:52:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3CED98FC1D; Tue, 8 Sep 2009 01:52:12 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n881qC4T013630; Tue, 8 Sep 2009 01:52:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n881qCTH013626; Tue, 8 Sep 2009 01:52:12 GMT (envelope-from edwin) Date: Tue, 8 Sep 2009 01:52:12 GMT Message-Id: <200909080152.n881qCTH013626@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-threads@FreeBSD.org, edwin@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: threads/138603: [libc] [patch] localtime(3) handles pthread errors badly X-BeenThere: freebsd-threads@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Threading on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Sep 2009 01:52:12 -0000 Synopsis: [libc] [patch] localtime(3) handles pthread errors badly Responsible-Changed-From-To: freebsd-threads->edwin Responsible-Changed-By: edwin Responsible-Changed-When: Tue Sep 8 01:51:47 UTC 2009 Responsible-Changed-Why: Unless somebody objects, I will take care of this. Thanks to Kostik for the forwarding of it. http://www.freebsd.org/cgi/query-pr.cgi?pr=138603 From owner-freebsd-threads@FreeBSD.ORG Thu Sep 10 06:30:06 2009 Return-Path: Delivered-To: freebsd-threads@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E4AE106568B for ; Thu, 10 Sep 2009 06:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DEFEF8FC12 for ; Thu, 10 Sep 2009 06:30:05 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n8A6U5L1087582 for ; Thu, 10 Sep 2009 06:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n8A6U5bD087581; Thu, 10 Sep 2009 06:30:05 GMT (envelope-from gnats) Resent-Date: Thu, 10 Sep 2009 06:30:05 GMT Resent-Message-Id: <200909100630.n8A6U5bD087581@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-threads@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, toidin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE014106566B for ; Thu, 10 Sep 2009 06:23:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id CCC508FC0A for ; Thu, 10 Sep 2009 06:23:25 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n8A6NOBh090096 for ; Thu, 10 Sep 2009 06:23:24 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id n8A6NO1U090095; Thu, 10 Sep 2009 06:23:24 GMT (envelope-from nobody) Message-Id: <200909100623.n8A6NO1U090095@www.freebsd.org> Date: Thu, 10 Sep 2009 06:23:24 GMT From: toidin To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: threads/138694: FreeBSD 6.3 release does not recognize Broadcom BCM5722 card on IBM X3550 M2 X-BeenThere: freebsd-threads@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Threading on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2009 06:30:06 -0000 >Number: 138694 >Category: threads >Synopsis: FreeBSD 6.3 release does not recognize Broadcom BCM5722 card on IBM X3550 M2 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-threads >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Sep 10 06:30:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: toidin >Release: FreeBSD 6.3 & 6.3 Releases >Organization: IQplus Prima >Environment: System FreeBSD can not load the device, so the OS can't start so displ to login. edu:/usr/obj/usr/src/sys/SMP i386 >Description: I just loaded FreeBSD 6.3-RELEASE and 6.4-RELEASE on an IBM X 3550 M2 server, it did not recognize the onboard network adapter. I opened the case of the computer and read the top of the network card chip, it has the following numbers: Broadcom BCM5709C This server does have Two PCI-Express (x16) Gen 2 slots—one half-length, full-height and one low-profile; each slot convertible to PCI-X with riser option. Vendor id = '14e41639' vendor = 'Broadcom Corporation' device = 'NetXtreme BCM5709C Gigabit Ethernet II' class = network subclass = ethernet >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-threads@FreeBSD.ORG Thu Sep 10 12:48:31 2009 Return-Path: Delivered-To: freebsd-threads@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1B451065672; Thu, 10 Sep 2009 12:48:31 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 739958FC22; Thu, 10 Sep 2009 12:48:31 +0000 (UTC) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 2672546B52; Thu, 10 Sep 2009 08:48:31 -0400 (EDT) Received: from jhbbsd.hudson-trading.com (unknown [209.249.190.8]) by bigwig.baldwin.cx (Postfix) with ESMTPA id 2FBAB8A020; Thu, 10 Sep 2009 08:48:30 -0400 (EDT) From: John Baldwin To: freebsd-threads@freebsd.org Date: Thu, 10 Sep 2009 08:48:17 -0400 User-Agent: KMail/1.9.7 References: <200909100623.n8A6NO1U090095@www.freebsd.org> In-Reply-To: <200909100623.n8A6NO1U090095@www.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200909100848.18347.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (bigwig.baldwin.cx); Thu, 10 Sep 2009 08:48:30 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.95.1 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=4.2 tests=AWL,BAYES_00,RDNS_NONE autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bigwig.baldwin.cx Cc: toidin , freebsd-gnats-submit@freebsd.org Subject: Re: threads/138694: FreeBSD 6.3 release does not recognize Broadcom BCM5722 card on IBM X3550 M2 X-BeenThere: freebsd-threads@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Threading on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2009 12:48:31 -0000 On Thursday 10 September 2009 2:23:24 am toidin wrote: >=20 > >Number: 138694 > >Category: threads > >Synopsis: FreeBSD 6.3 release does not recognize Broadcom BCM5722= =20 card on IBM X3550 M2 > >Confidential: no > >Severity: serious > >Priority: high > >Responsible: freebsd-threads > >State: open > >Quarter: =20 > >Keywords: =20 > >Date-Required: > >Class: doc-bug > >Submitter-Id: current-users > >Arrival-Date: Thu Sep 10 06:30:05 UTC 2009 > >Closed-Date: > >Last-Modified: > >Originator: toidin > >Release: FreeBSD 6.3 & 6.3 Releases > >Organization: > IQplus Prima > >Environment: > System FreeBSD can not load the device, so the OS can't start so displ to= =20 login. edu:/usr/obj/usr/src/sys/SMP i386 > >Description: > I just loaded FreeBSD 6.3-RELEASE and 6.4-RELEASE on an IBM X 3550 M2=20 server, it did not recognize the onboard network adapter. I opened the case= =20 of the computer and read the top of the network card chip, it has the=20 following numbers: >=20 > Broadcom BCM5709C >=20 > This server does have Two PCI-Express (x16) Gen 2 slots=97one half-length= ,=20 full-height and one low-profile; each slot convertible to PCI-X with riser= =20 option. 5709C !=3D 5722 (which is supported in 6.4). I believe someone recently po= sted=20 some patches to hackers@ recently to add support for the 5709C for 7 and 8. =2D-=20 John Baldwin From owner-freebsd-threads@FreeBSD.ORG Thu Sep 10 12:50:03 2009 Return-Path: Delivered-To: freebsd-threads@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20D071065670 for ; Thu, 10 Sep 2009 12:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0FFAB8FC26 for ; Thu, 10 Sep 2009 12:50:03 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n8ACo2Xb008908 for ; Thu, 10 Sep 2009 12:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n8ACo2Cv008907; Thu, 10 Sep 2009 12:50:02 GMT (envelope-from gnats) Date: Thu, 10 Sep 2009 12:50:02 GMT Message-Id: <200909101250.n8ACo2Cv008907@freefall.freebsd.org> To: freebsd-threads@FreeBSD.org From: John Baldwin Cc: Subject: Re: threads/138694: FreeBSD 6.3 release does not recognize Broadcom BCM5722 card on IBM X3550 M2 X-BeenThere: freebsd-threads@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Baldwin List-Id: Threading on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2009 12:50:03 -0000 The following reply was made to PR threads/138694; it has been noted by GNATS. From: John Baldwin To: freebsd-threads@freebsd.org Cc: toidin , freebsd-gnats-submit@freebsd.org Subject: Re: threads/138694: FreeBSD 6.3 release does not recognize Broadcom BCM5722 card on IBM X3550 M2 Date: Thu, 10 Sep 2009 08:48:17 -0400 On Thursday 10 September 2009 2:23:24 am toidin wrote: >=20 > >Number: 138694 > >Category: threads > >Synopsis: FreeBSD 6.3 release does not recognize Broadcom BCM5722= =20 card on IBM X3550 M2 > >Confidential: no > >Severity: serious > >Priority: high > >Responsible: freebsd-threads > >State: open > >Quarter: =20 > >Keywords: =20 > >Date-Required: > >Class: doc-bug > >Submitter-Id: current-users > >Arrival-Date: Thu Sep 10 06:30:05 UTC 2009 > >Closed-Date: > >Last-Modified: > >Originator: toidin > >Release: FreeBSD 6.3 & 6.3 Releases > >Organization: > IQplus Prima > >Environment: > System FreeBSD can not load the device, so the OS can't start so displ to= =20 login. edu:/usr/obj/usr/src/sys/SMP i386 > >Description: > I just loaded FreeBSD 6.3-RELEASE and 6.4-RELEASE on an IBM X 3550 M2=20 server, it did not recognize the onboard network adapter. I opened the case= =20 of the computer and read the top of the network card chip, it has the=20 following numbers: >=20 > Broadcom BCM5709C >=20 > This server does have Two PCI-Express (x16) Gen 2 slots=97one half-length= ,=20 full-height and one low-profile; each slot convertible to PCI-X with riser= =20 option. 5709C !=3D 5722 (which is supported in 6.4). I believe someone recently po= sted=20 some patches to hackers@ recently to add support for the 5709C for 7 and 8. =2D-=20 John Baldwin From owner-freebsd-threads@FreeBSD.ORG Thu Sep 10 12:53:59 2009 Return-Path: Delivered-To: freebsd-threads@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 973571065676; Thu, 10 Sep 2009 12:53:59 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6E85B8FC13; Thu, 10 Sep 2009 12:53:59 +0000 (UTC) Received: from freefall.freebsd.org (jhb@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n8ACrwim018115; Thu, 10 Sep 2009 12:53:58 GMT (envelope-from jhb@freefall.freebsd.org) Received: (from jhb@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n8ACrwji018111; Thu, 10 Sep 2009 12:53:58 GMT (envelope-from jhb) Date: Thu, 10 Sep 2009 12:53:58 GMT Message-Id: <200909101253.n8ACrwji018111@freefall.freebsd.org> To: jhb@FreeBSD.org, freebsd-threads@FreeBSD.org, freebsd-bugs@FreeBSD.org From: jhb@FreeBSD.org Cc: Subject: Re: kern/138694: [bge] FreeBSD 6.3 release does not recognize Broadcom BCM5709C card on IBM X3550 M2 X-BeenThere: freebsd-threads@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Threading on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Sep 2009 12:53:59 -0000 Old Synopsis: FreeBSD 6.3 release does not recognize Broadcom BCM5722 card on IBM X3550 M2 New Synopsis: [bge] FreeBSD 6.3 release does not recognize Broadcom BCM5709C card on IBM X3550 M2 Responsible-Changed-From-To: freebsd-threads->freebsd-bugs Responsible-Changed-By: jhb Responsible-Changed-When: Thu Sep 10 12:51:39 UTC 2009 Responsible-Changed-Why: Fixing category, etc. http://www.freebsd.org/cgi/query-pr.cgi?pr=138694