Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/alpha rework <uvm/uvm_extern.h> includes.
details: https://anonhg.NetBSD.org/src/rev/7afe38b83c51
branches: trunk
changeset: 759706:7afe38b83c51
user: matt <matt%NetBSD.org@localhost>
date: Wed Dec 15 01:29:37 2010 +0000
description:
rework <uvm/uvm_extern.h> includes.
diffstat:
sys/arch/alpha/include/userret.h | 3 ++-
sys/arch/alpha/isa/isa_machdep.c | 6 ++----
sys/arch/alpha/isa/isadma_bounce.c | 6 ++----
sys/arch/alpha/tc/tc_bus_mem.c | 6 ++----
sys/arch/alpha/tc/tc_dma_3000_500.c | 6 ++----
sys/arch/alpha/tc/tc_sgmap.c | 6 ++----
6 files changed, 12 insertions(+), 21 deletions(-)
diffs (152 lines):
diff -r d64154f63642 -r 7afe38b83c51 sys/arch/alpha/include/userret.h
--- a/sys/arch/alpha/include/userret.h Wed Dec 15 01:28:24 2010 +0000
+++ b/sys/arch/alpha/include/userret.h Wed Dec 15 01:29:37 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: userret.h,v 1.8 2008/04/28 20:23:11 martin Exp $ */
+/* $NetBSD: userret.h,v 1.9 2010/12/15 01:29:37 matt Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -91,6 +91,7 @@
#define _ALPHA_USERRET_H_
#include <sys/userret.h>
+#include <uvm/uvm_extern.h>
/*
* Define the code needed before returning to user mode, for
diff -r d64154f63642 -r 7afe38b83c51 sys/arch/alpha/isa/isa_machdep.c
--- a/sys/arch/alpha/isa/isa_machdep.c Wed Dec 15 01:28:24 2010 +0000
+++ b/sys/arch/alpha/isa/isa_machdep.c Wed Dec 15 01:29:37 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isa_machdep.c,v 1.18 2009/03/14 21:04:02 dsl Exp $ */
+/* $NetBSD: isa_machdep.c,v 1.19 2010/12/15 01:29:37 matt Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -33,7 +33,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.18 2009/03/14 21:04:02 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isa_machdep.c,v 1.19 2010/12/15 01:29:37 matt Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -42,8 +42,6 @@
#include <sys/errno.h>
#include <sys/device.h>
-#include <uvm/uvm_extern.h>
-
#include <dev/isa/isavar.h>
#include "vga_isa.h"
diff -r d64154f63642 -r 7afe38b83c51 sys/arch/alpha/isa/isadma_bounce.c
--- a/sys/arch/alpha/isa/isadma_bounce.c Wed Dec 15 01:28:24 2010 +0000
+++ b/sys/arch/alpha/isa/isadma_bounce.c Wed Dec 15 01:29:37 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: isadma_bounce.c,v 1.9 2009/03/14 14:45:52 dsl Exp $ */
+/* $NetBSD: isadma_bounce.c,v 1.10 2010/12/15 01:29:37 matt Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.9 2009/03/14 14:45:52 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.10 2010/12/15 01:29:37 matt Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -48,8 +48,6 @@
#include <dev/isa/isareg.h>
#include <dev/isa/isavar.h>
-#include <uvm/uvm_extern.h>
-
extern paddr_t avail_end;
/*
diff -r d64154f63642 -r 7afe38b83c51 sys/arch/alpha/tc/tc_bus_mem.c
--- a/sys/arch/alpha/tc/tc_bus_mem.c Wed Dec 15 01:28:24 2010 +0000
+++ b/sys/arch/alpha/tc/tc_bus_mem.c Wed Dec 15 01:29:37 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tc_bus_mem.c,v 1.30 2009/03/14 21:04:03 dsl Exp $ */
+/* $NetBSD: tc_bus_mem.c,v 1.31 2010/12/15 01:29:37 matt Exp $ */
/*
* Copyright (c) 1996 Carnegie-Mellon University.
@@ -33,7 +33,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: tc_bus_mem.c,v 1.30 2009/03/14 21:04:03 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tc_bus_mem.c,v 1.31 2010/12/15 01:29:37 matt Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -41,8 +41,6 @@
#include <sys/syslog.h>
#include <sys/device.h>
-#include <uvm/uvm_extern.h>
-
#include <machine/bus.h>
#include <dev/tc/tcvar.h>
diff -r d64154f63642 -r 7afe38b83c51 sys/arch/alpha/tc/tc_dma_3000_500.c
--- a/sys/arch/alpha/tc/tc_dma_3000_500.c Wed Dec 15 01:28:24 2010 +0000
+++ b/sys/arch/alpha/tc/tc_dma_3000_500.c Wed Dec 15 01:29:37 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tc_dma_3000_500.c,v 1.15 2009/03/14 15:36:00 dsl Exp $ */
+/* $NetBSD: tc_dma_3000_500.c,v 1.16 2010/12/15 01:29:38 matt Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: tc_dma_3000_500.c,v 1.15 2009/03/14 15:36:00 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tc_dma_3000_500.c,v 1.16 2010/12/15 01:29:38 matt Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -40,8 +40,6 @@
#include <sys/kernel.h>
#include <sys/malloc.h>
-#include <uvm/uvm_extern.h>
-
#define _ALPHA_BUS_DMA_PRIVATE
#include <machine/bus.h>
diff -r d64154f63642 -r 7afe38b83c51 sys/arch/alpha/tc/tc_sgmap.c
--- a/sys/arch/alpha/tc/tc_sgmap.c Wed Dec 15 01:28:24 2010 +0000
+++ b/sys/arch/alpha/tc/tc_sgmap.c Wed Dec 15 01:29:37 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tc_sgmap.c,v 1.6 2008/04/28 20:23:12 martin Exp $ */
+/* $NetBSD: tc_sgmap.c,v 1.7 2010/12/15 01:29:38 matt Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(1, "$NetBSD: tc_sgmap.c,v 1.6 2008/04/28 20:23:12 martin Exp $");
+__KERNEL_RCSID(1, "$NetBSD: tc_sgmap.c,v 1.7 2010/12/15 01:29:38 matt Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -42,8 +42,6 @@
#include <sys/mbuf.h>
#include <sys/proc.h>
-#include <uvm/uvm_extern.h>
-
#include <machine/bus.h>
#include <alpha/tc/tc_sgmap.h>
Home |
Main Index |
Thread Index |
Old Index