From owner-p4-projects@FreeBSD.ORG Fri Apr 14 06:27:19 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id E81F616A402; Fri, 14 Apr 2006 06:27:18 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C487C16A400 for ; Fri, 14 Apr 2006 06:27:18 +0000 (UTC) (envelope-from jmg@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DDFE43D49 for ; Fri, 14 Apr 2006 06:27:18 +0000 (GMT) (envelope-from jmg@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 k3E6RIgl057504 for ; Fri, 14 Apr 2006 06:27:18 GMT (envelope-from jmg@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k3E6RINa057501 for perforce@freebsd.org; Fri, 14 Apr 2006 06:27:18 GMT (envelope-from jmg@freebsd.org) Date: Fri, 14 Apr 2006 06:27:18 GMT Message-Id: <200604140627.k3E6RINa057501@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jmg@freebsd.org using -f From: John-Mark Gurney To: Perforce Change Reviews Cc: Subject: PERFORCE change 95231 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Apr 2006 06:27:19 -0000 http://perforce.freebsd.org/chv.cgi?CH=95231 Change 95231 by jmg@jmg_carbon-60 on 2006/04/14 06:27:12 man I feel stupid, enable a few things that should of been enabled a while back, this should get ata working... Affected files ... .. //depot/projects/kmacy_sun4v/src/sys/sun4v/include/bus.h#7 edit Differences ... ==== //depot/projects/kmacy_sun4v/src/sys/sun4v/include/bus.h#7 (text+ko) ==== @@ -521,7 +521,7 @@ { __BUS_DEBUG_ACCESS(h, o, "read stream", 1); - return (0); + return (lduba_nc((caddr_t)(h + o), bus_stream_asi[t->bst_type])); } static __inline uint16_t @@ -529,7 +529,7 @@ { __BUS_DEBUG_ACCESS(h, o, "read stream", 2); - return (0); + return (lduha_nc((caddr_t)(h + o), bus_stream_asi[t->bst_type])); } static __inline uint32_t @@ -537,7 +537,7 @@ { __BUS_DEBUG_ACCESS(h, o, "read stream", 4); - return (0); + return (lduwa_nc((caddr_t)(h + o), bus_stream_asi[t->bst_type])); } static __inline uint64_t @@ -545,7 +545,7 @@ { __BUS_DEBUG_ACCESS(h, o, "read stream", 8); - return (0); + return (ldxa_nc((caddr_t)(h + o), bus_stream_asi[t->bst_type])); } static __inline void @@ -599,6 +599,7 @@ { __BUS_DEBUG_ACCESS(h, o, "write stream", 2); + stha_nc((caddr_t)(h + o), bus_stream_asi[t->bst_type], v); } static __inline void @@ -607,6 +608,7 @@ { __BUS_DEBUG_ACCESS(h, o, "write stream", 4); + stwa_nc((caddr_t)(h + o), bus_stream_asi[t->bst_type], v); } static __inline void @@ -615,6 +617,7 @@ { __BUS_DEBUG_ACCESS(h, o, "write stream", 8); + stxa_nc((caddr_t)(h + o), bus_stream_asi[t->bst_type], v); } static __inline void