From owner-cvs-src@FreeBSD.ORG Wed Jun 18 18:49:05 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 5D52E37B401; Wed, 18 Jun 2003 18:49:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAE2B43F93; Wed, 18 Jun 2003 18:49:04 -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 h5J1n40U014348; Wed, 18 Jun 2003 18:49:04 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h5J1n4jl014347; Wed, 18 Jun 2003 18:49:04 -0700 (PDT) Message-Id: <200306190149.h5J1n4jl014347@repoman.freebsd.org> From: Scott Long Date: Wed, 18 Jun 2003 18:49:04 -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/aac aac_disk.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: Thu, 19 Jun 2003 01:49:05 -0000 scottl 2003/06/18 18:49:04 PDT FreeBSD src repository Modified files: sys/dev/aac aac_disk.c Log: Fixing some glaring problems with aac_disk_dump(). - Mark that it cannot handle greater than 4GB of RAM at this time. Fixing that will come later. Fail any attempts to dump above thati limit. - If a call to aac_disk_dump() needs to be split into multiple i/o's, increment the virtual offset after each i/o instead of just dumping the same offset over and over again. - Bail out if bus_dmamap_load() returns an error. Error recovery is likely not possible. Revision Changes Path 1.32 +18 -2 src/sys/dev/aac/aac_disk.c