From owner-cvs-all@FreeBSD.ORG Fri Nov 16 10:25:37 2007 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03BC516A419; Fri, 16 Nov 2007 10:25:37 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E391D13C4B8; Fri, 16 Nov 2007 10:25:36 +0000 (UTC) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id lAGAPaMJ008934; Fri, 16 Nov 2007 10:25:36 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id lAGAPab4008933; Fri, 16 Nov 2007 10:25:36 GMT (envelope-from yongari) Message-Id: <200711161025.lAGAPab4008933@repoman.freebsd.org> From: Pyun YongHyeon Date: Fri, 16 Nov 2007 10:25:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/mii amphy.c nsphy.c rlphy.c tdkphy.c ukphy_subr.c src/sys/dev/dc dcphy.c src/sys/dev/txp if_txp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Nov 2007 10:25:37 -0000 yongari 2007-11-16 10:25:36 UTC FreeBSD src repository Modified files: sys/dev/mii amphy.c nsphy.c rlphy.c tdkphy.c ukphy_subr.c sys/dev/dc dcphy.c sys/dev/txp if_txp.c Log: IEEE 802.3 Annex 28B.3 explicitly specifies the following relative priorities of the technologies supported by 802.3 Selector Field value. 1000BASE-T full duplex 1000BASE-T 100BASE-T2 full duplex 100BASE-TX full duplex 100BASE-T2 100BASE-T4 100BASE-TX 10BASE-T full duplex 10BAST-T However PHY drivers didn't honor the order such that 100BASE-T4 had higher priority than 100BASE-TX full duplex. Fix that long standing bugs such that have PHY drivers choose the highest common denominator ability. Fix a bug in dcphy which inadvertently aceepts 100BASE-T4. PR: 92599 Revision Changes Path 1.33 +4 -4 src/sys/dev/dc/dcphy.c 1.23 +3 -3 src/sys/dev/mii/amphy.c 1.29 +3 -3 src/sys/dev/mii/nsphy.c 1.32 +3 -3 src/sys/dev/mii/rlphy.c 1.23 +3 -3 src/sys/dev/mii/tdkphy.c 1.10 +2 -2 src/sys/dev/mii/ukphy_subr.c 1.47 +3 -3 src/sys/dev/txp/if_txp.c