Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm/arm32 Actually use the calculated uboundary.
details: https://anonhg.NetBSD.org/src/rev/c8ceeb6ccfdd
branches: trunk
changeset: 784951:c8ceeb6ccfdd
user: matt <matt%NetBSD.org@localhost>
date: Fri Feb 15 01:03:43 2013 +0000
description:
Actually use the calculated uboundary.
diffstat:
sys/arch/arm/arm32/bus_dma.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 34c4a359dc92 -r c8ceeb6ccfdd sys/arch/arm/arm32/bus_dma.c
--- a/sys/arch/arm/arm32/bus_dma.c Fri Feb 15 00:29:44 2013 +0000
+++ b/sys/arch/arm/arm32/bus_dma.c Fri Feb 15 01:03:43 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_dma.c,v 1.77 2013/02/14 08:24:39 matt Exp $ */
+/* $NetBSD: bus_dma.c,v 1.78 2013/02/15 01:03:43 matt Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
#define _ARM32_BUS_DMA_PRIVATE
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.77 2013/02/14 08:24:39 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.78 2013/02/15 01:03:43 matt Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -1562,7 +1562,7 @@
/*
* Allocate pages from the VM system.
*/
- error = uvm_pglistalloc(size, low, high, alignment, boundary,
+ error = uvm_pglistalloc(size, low, high, alignment, uboundary,
&mlist, nsegs, (flags & BUS_DMA_NOWAIT) == 0);
if (error)
return (error);
Home |
Main Index |
Thread Index |
Old Index