summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-03-31 04:03:33 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-03-31 04:03:33 +0000
commitadeb07af585c2428ea6d4574a8ba8e3ba9befa5b (patch)
tree7fe36222c807062c1c5ae667122683360185c0cf /sys/arch
parent80d32ea65ed2dcd543f9b264b2469d8fd9aa72e2 (diff)
Oops, a chunk was commited too early.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mips64/mips64/mem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/mips64/mem.c b/sys/arch/mips64/mips64/mem.c
index 79474ee206a..965a00d085f 100644
--- a/sys/arch/mips64/mips64/mem.c
+++ b/sys/arch/mips64/mips64/mem.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mem.c,v 1.10 2008/03/30 20:12:25 miod Exp $ */
+/* $OpenBSD: mem.c,v 1.11 2008/03/31 04:03:32 miod Exp $ */
/* $NetBSD: mem.c,v 1.6 1995/04/10 11:55:03 mycroft Exp $ */
/*
@@ -115,7 +115,7 @@ mmrw(dev_t dev, struct uio *uio, int flags)
c = iov->iov_len;
if (v + c > ctob(physmem))
return (EFAULT);
- v = (vaddr_t)PHYS_TO_XKPHYS(v, CCA_CACHED);
+ v = (vaddr_t)PHYS_TO_XKPHYS(v, CCA_NONCOHERENT);
error = uiomove((caddr_t)v, c, uio);
continue;