From owner-cvs-all@FreeBSD.ORG Sat Mar 25 06:14:33 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 9A8B516A400; Sat, 25 Mar 2006 06:14:33 +0000 (UTC) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4265243D45; Sat, 25 Mar 2006 06:14:33 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k2P6EXLt058735; Sat, 25 Mar 2006 06:14:33 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k2P6EX0m058734; Sat, 25 Mar 2006 06:14:33 GMT (envelope-from scottl) Message-Id: <200603250614.k2P6EX0m058734@repoman.freebsd.org> From: Scott Long Date: Sat, 25 Mar 2006 06:14:32 +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/mfi mfi.c mfi_disk.c mfi_ioctl.h mfi_pci.c mfireg.h mfivar.h src/sys/modules/mfi Makefile 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: Sat, 25 Mar 2006 06:14:33 -0000 scottl 2006-03-25 06:14:32 UTC FreeBSD src repository Added files: sys/dev/mfi mfi.c mfi_disk.c mfi_ioctl.h mfi_pci.c mfireg.h mfivar.h sys/modules/mfi Makefile Log: Add a driver for the new LSI MegaRAID SAS controller family. The 'MFI' name is derived from the phrase 'MegaRAID Firmware Interface' used by LSI. This driver provides a block interface to logical disks on the card and a minimal management device. It is MPSAFE, INTR_FAST, and 64-bit capable. Thanks to Dell for providing hardware to test with and IronPort for sponsoring the work. Sponsored by: Dell, Ironport MFC After: 3 days Revision Changes Path 1.1 +1265 -0 src/sys/dev/mfi/mfi.c (new) 1.1 +242 -0 src/sys/dev/mfi/mfi_disk.c (new) 1.1 +47 -0 src/sys/dev/mfi/mfi_ioctl.h (new) 1.1 +243 -0 src/sys/dev/mfi/mfi_pci.c (new) 1.1 +559 -0 src/sys/dev/mfi/mfireg.h (new) 1.1 +316 -0 src/sys/dev/mfi/mfivar.h (new) 1.1 +15 -0 src/sys/modules/mfi/Makefile (new)