From owner-cvs-all@FreeBSD.ORG Sat Feb 28 11:14:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F8EC16A4CE; Sat, 28 Feb 2004 11:14:42 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4102243D2F; Sat, 28 Feb 2004 11:14:42 -0800 (PST) (envelope-from scottl@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 i1SJEgGe004164; Sat, 28 Feb 2004 11:14:42 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1SJEgur004163; Sat, 28 Feb 2004 11:14:42 -0800 (PST) (envelope-from scottl) Message-Id: <200402281914.i1SJEgur004163@repoman.freebsd.org> From: Scott Long Date: Sat, 28 Feb 2004 11:14:42 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ips ips.c ips.h ips_commands.c ips_disk.c ips_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Sat, 28 Feb 2004 19:14:42 -0000 scottl 2004/02/28 11:14:42 PST FreeBSD src repository Modified files: sys/dev/ips ips.c ips.h ips_commands.c ips_disk.c ips_pci.c Log: Switch from using mutexes to using semaphores to protect against early completion of synchronous commands. Also switch to a per-array bioq as it appears to improve performance. Submitted by: mbr, imp.ch (bioq change) Revision Changes Path 1.11 +25 -17 src/sys/dev/ips/ips.c 1.6 +6 -2 src/sys/dev/ips/ips.h 1.9 +23 -30 src/sys/dev/ips/ips_commands.c 1.6 +8 -2 src/sys/dev/ips/ips_disk.c 1.8 +3 -1 src/sys/dev/ips/ips_pci.c