From owner-cvs-src@FreeBSD.ORG Thu Dec 14 18:41:29 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA20C16A4C8; Thu, 14 Dec 2006 18:41:29 +0000 (UTC) (envelope-from ambrisko@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58CB8444F1; Thu, 14 Dec 2006 18:27:41 +0000 (GMT) (envelope-from ambrisko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id kBEIT8i4073224; Thu, 14 Dec 2006 18:29:08 GMT (envelope-from ambrisko@repoman.freebsd.org) Received: (from ambrisko@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kBEIT8dW073223; Thu, 14 Dec 2006 18:29:08 GMT (envelope-from ambrisko) Message-Id: <200612141829.kBEIT8dW073223@repoman.freebsd.org> From: Doug Ambrisko Date: Thu, 14 Dec 2006 18:29:08 +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_ioctl.h mfireg.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 14 Dec 2006 18:41:29 -0000 ambrisko 2006-12-14 18:29:08 UTC FreeBSD src repository Modified files: sys/dev/mfi mfi.c mfi_ioctl.h mfireg.h Log: Some relatively minor changes and bug fixes: 1) s/mi/mfi/ in FreeBSD ioctl path 2) add in "\n" on various failure messages 3) cap the length of time to abort an AEN command 4) fix passing sense data back to user to make Dell's Linux firmware upgrade tool happy. 5) bump the MFI_POLL_TIMEOUT_SECS from 10s to 50s since the firmware flash command can take ~40s to return. This is some clean-up and enables RAID firmware to updated via Dell's tool. Note Dell's tool requires the updates to the Linux emulator that has been done in -current with TLS etc. I need to discuss with scottl how to better submit mfi commands to the firmware via the ioctl path so we don't do it in polled mode. Revision Changes Path 1.24 +44 -56 src/sys/dev/mfi/mfi.c 1.4 +8 -8 src/sys/dev/mfi/mfi_ioctl.h 1.7 +2 -1 src/sys/dev/mfi/mfireg.h