From owner-cvs-src@FreeBSD.ORG Sun Jan 25 20:51:19 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57A4116A4CE; Sun, 25 Jan 2004 20:51:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1B7643D46; Sun, 25 Jan 2004 20:51:16 -0800 (PST) (envelope-from simokawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i0Q4pG0B090205; Sun, 25 Jan 2004 20:51:16 -0800 (PST) (envelope-from simokawa@repoman.freebsd.org) Received: (from simokawa@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i0Q4pGPn090201; Sun, 25 Jan 2004 20:51:16 -0800 (PST) (envelope-from simokawa) Message-Id: <200401260451.i0Q4pGPn090201@repoman.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 25 Jan 2004 20:51:16 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/firewire firewire.c firewirereg.h fwdev.c fwmem.c fwohci.c fwohci_pci.c fwohcireg.h fwohcivar.h if_fwe.c sbp.c sbp_targ.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2004 04:51:19 -0000 simokawa 2004/01/25 20:51:16 PST FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/firewire firewire.c firewirereg.h fwdev.c fwmem.c fwohci.c fwohci_pci.c fwohcireg.h fwohcivar.h if_fwe.c sbp.c sbp_targ.c Log: Sync with -current * firewire - Remove pending list. - Ignore timeout for the FWXF_START state. - Define M_FWMEM for debugging. - Comment out DELAY() in fw_asybusy(). - Improve debugging messages. - Fix register mis-alignment introduced in rev1.12. - Add missing free() in exception handlers. - Add tcode_str[] and improve debug message. * sbp - Freeze simq while bus reset. - If max_speed is negative, use the maximum speed which the ohci chip supports. The default max_speed is -1. * sbp_targ.c - Add speed in struct sbp_targ_login. - Remove unnecessary htonl(). * if_fwe - If tx_speed is negative, use the maximum speed which the ohci chip supports. The default tx_speed is 2. * all - Remove __P(). Revision Changes Path 1.3.2.28 +52 -59 src/sys/dev/firewire/firewire.c 1.1.2.19 +46 -47 src/sys/dev/firewire/firewirereg.h 1.2.4.15 +2 -2 src/sys/dev/firewire/fwdev.c 1.1.2.13 +4 -2 src/sys/dev/firewire/fwmem.c 1.1.2.26 +42 -36 src/sys/dev/firewire/fwohci.c 1.3.2.19 +9 -3 src/sys/dev/firewire/fwohci_pci.c 1.2.2.11 +34 -33 src/sys/dev/firewire/fwohcireg.h 1.1.2.9 +7 -7 src/sys/dev/firewire/fwohcivar.h 1.1.2.17 +10 -7 src/sys/dev/firewire/if_fwe.c 1.5.2.26 +31 -19 src/sys/dev/firewire/sbp.c 1.2.2.3 +8 -7 src/sys/dev/firewire/sbp_targ.c