From owner-cvs-src@FreeBSD.ORG Tue Mar 13 06:46:09 2007 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 BE6EB16A40A; Tue, 13 Mar 2007 06:46:09 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 6F19413C457; Tue, 13 Mar 2007 06:46:09 +0000 (UTC) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l2D6k9wN050357; Tue, 13 Mar 2007 06:46:09 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l2D6k9hv050356; Tue, 13 Mar 2007 06:46:09 GMT (envelope-from mjacob) Message-Id: <200703130646.l2D6k9hv050356@repoman.freebsd.org> From: Matt Jacob Date: Tue, 13 Mar 2007 06:46: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/isp isp_freebsd.h isp_pci.c isp_sbus.c 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: Tue, 13 Mar 2007 06:46:09 -0000 mjacob 2007-03-13 06:46:08 UTC FreeBSD src repository Modified files: sys/dev/isp isp_freebsd.h isp_pci.c isp_sbus.c Log: Move bus_space_tag and bus_space_handle register access tokens into the common isp_osinfo structure instead of being in bus specific structures. This allows us to implement a SYNC_REG MEMORYBARRIER call (using bus_space_barrier) and also reduce the amount of bus specific wrapper structure usages in isp_pci && isp_sbus. MFC after: 3 days Revision Changes Path 1.102 +9 -0 src/sys/dev/isp/isp_freebsd.h 1.140 +64 -78 src/sys/dev/isp/isp_pci.c 1.30 +6 -8 src/sys/dev/isp/isp_sbus.c