From owner-cvs-src@FreeBSD.ORG Sun Jun 13 09:09:41 2004 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 C8A7416A4D0; Sun, 13 Jun 2004 09:09:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1D0843D41; Sun, 13 Jun 2004 09:09:41 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i5D98i3I082484; Sun, 13 Jun 2004 09:08:44 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5D98ir9082483; Sun, 13 Jun 2004 09:08:44 GMT (envelope-from scottl) Message-Id: <200406130908.i5D98ir9082483@repoman.freebsd.org> From: Scott Long Date: Sun, 13 Jun 2004 09:08:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/esp ncr53c9x.c ncr53c9xvar.h 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, 13 Jun 2004 09:09:42 -0000 scottl 2004-06-13 09:08:44 UTC FreeBSD src repository Modified files: sys/dev/esp ncr53c9x.c ncr53c9xvar.h Log: Get rid of UMA zones and instead allocate all ecb's up front and track them in a TAILQ. Re-arrange some of the ecb elements so that they can stay stable through alloc/free cycles while the rest get bzero'd. - Use the tag_id from the ecb rather than fro the ccb. The latter is only for target mode. - Honor the ccb flags for tag_action when deciding whether to do a tagged or untagged transaction. - Re-arrange autosense completion so that it works correctly in failure cases. - Turn on the PI_TAG_ABLE flag so that CAM will send us tagged transactions. This enables tagged queueing in the driver. Revision Changes Path 1.4 +35 -22 src/sys/dev/esp/ncr53c9x.c 1.3 +13 -3 src/sys/dev/esp/ncr53c9xvar.h