Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/yamt-km]: src/sys/arch/sun3/sun3x Add a missing third arg (align) of uvm...
details: https://anonhg.NetBSD.org/src/rev/1e511d5126e3
branches: yamt-km
changeset: 573375:1e511d5126e3
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Sun Feb 27 13:27:49 2005 +0000
description:
Add a missing third arg (align) of uvm_km_alloc() for the new API world.
diffstat:
sys/arch/sun3/sun3x/machdep.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r a418b5870544 -r 1e511d5126e3 sys/arch/sun3/sun3x/machdep.c
--- a/sys/arch/sun3/sun3x/machdep.c Sun Feb 27 09:30:33 2005 +0000
+++ b/sys/arch/sun3/sun3x/machdep.c Sun Feb 27 13:27:49 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.97.2.1 2005/02/12 12:26:27 yamt Exp $ */
+/* $NetBSD: machdep.c,v 1.97.2.2 2005/02/27 13:27:49 tsutsui Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@@ -75,7 +75,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.97.2.1 2005/02/12 12:26:27 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.97.2.2 2005/02/27 13:27:49 tsutsui Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@@ -251,7 +251,7 @@
/*
* Get scratch page for dumpsys().
*/
- dumppage = uvm_km_alloc(kernel_map, PAGE_SIZE, UVM_KMF_WIRED);
+ dumppage = uvm_km_alloc(kernel_map, PAGE_SIZE, 0, UVM_KMF_WIRED);
if (dumppage == 0)
panic("startup: alloc dumppage");
Home |
Main Index |
Thread Index |
Old Index