From owner-cvs-src@FreeBSD.ORG Sat May 10 23:36:50 2003 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 B606E37B401; Sat, 10 May 2003 23:36:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D6D343FBF; Sat, 10 May 2003 23:36:50 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4B6ao0U047042; Sat, 10 May 2003 23:36:50 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4B6aoCt047041; Sat, 10 May 2003 23:36:50 -0700 (PDT) Message-Id: <200305110636.h4B6aoCt047041@repoman.freebsd.org> From: Scott Long Date: Sat, 10 May 2003 23:36:50 -0700 (PDT) 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_disk.h ips_ioctl.c ips_ioctl.h ips_pci.c src/sys/modules/ips Makefile 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: Sun, 11 May 2003 06:36:51 -0000 scottl 2003/05/10 23:36:50 PDT FreeBSD src repository Added files: sys/dev/ips ips.c ips.h ips_commands.c ips_disk.c ips_disk.h ips_ioctl.c ips_ioctl.h ips_pci.c sys/modules/ips Makefile Log: Add the 'ips' driver for the IBM (now Adaptec) ServeRAID controller series. This driver was generously developed and released by David Jeffreys and Adaptec. I've updated it to work with 5.x and fixed a few bugs. MFC After: 1 week Revision Changes Path 1.1 +697 -0 src/sys/dev/ips/ips.c (new) 1.1 +403 -0 src/sys/dev/ips/ips.h (new) 1.1 +636 -0 src/sys/dev/ips/ips_commands.c (new) 1.1 +162 -0 src/sys/dev/ips/ips_disk.c (new) 1.1 +66 -0 src/sys/dev/ips/ips_disk.h (new) 1.1 +157 -0 src/sys/dev/ips/ips_ioctl.c (new) 1.1 +61 -0 src/sys/dev/ips/ips_ioctl.h (new) 1.1 +182 -0 src/sys/dev/ips/ips_pci.c (new) 1.1 +8 -0 src/sys/modules/ips/Makefile (new)