Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/matt-nb6-plus]: src/sys/arch/arm/arm32 Actually use the calculated uboun...



details:   https://anonhg.NetBSD.org/src/rev/2e77809d69df
branches:  matt-nb6-plus
changeset: 774560:2e77809d69df
user:      matt <matt%NetBSD.org@localhost>
date:      Fri Feb 15 01:02:59 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 bd9aa05adf96 -r 2e77809d69df sys/arch/arm/arm32/bus_dma.c
--- a/sys/arch/arm/arm32/bus_dma.c      Thu Feb 14 08:24:58 2013 +0000
+++ b/sys/arch/arm/arm32/bus_dma.c      Fri Feb 15 01:02:59 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bus_dma.c,v 1.54.10.5 2013/02/14 08:24:58 matt Exp $   */
+/*     $NetBSD: bus_dma.c,v 1.54.10.6 2013/02/15 01:02:59 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.54.10.5 2013/02/14 08:24:58 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.54.10.6 2013/02/15 01:02:59 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