Module Name:    src
Committed By:   riastradh
Date:           Sun Sep  6 15:27:23 UTC 2020

Modified Files:
        src/sys/dev/bus_dma: bus_dmamem_common.c
        src/sys/kern: subr_physmap.c

Log Message:
Fix some more uvm.h cleanup fallout.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/bus_dma/bus_dmamem_common.c
cvs rdiff -u -r1.3 -r1.4 src/sys/kern/subr_physmap.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/bus_dma/bus_dmamem_common.c
diff -u src/sys/dev/bus_dma/bus_dmamem_common.c:1.3 src/sys/dev/bus_dma/bus_dmamem_common.c:1.4
--- src/sys/dev/bus_dma/bus_dmamem_common.c:1.3	Sat Sep  5 16:30:10 2020
+++ src/sys/dev/bus_dma/bus_dmamem_common.c	Sun Sep  6 15:27:22 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: bus_dmamem_common.c,v 1.3 2020/09/05 16:30:10 riastradh Exp $	*/
+/*	$NetBSD: bus_dmamem_common.c,v 1.4 2020/09/06 15:27:22 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 1997, 1998, 2009 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: bus_dmamem_common.c,v 1.3 2020/09/05 16:30:10 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dmamem_common.c,v 1.4 2020/09/06 15:27:22 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -40,6 +40,7 @@ __KERNEL_RCSID(0, "$NetBSD: bus_dmamem_c
 #include <sys/bus.h>
 
 #include <uvm/uvm_extern.h>
+#include <uvm/uvm_page.h>
 
 #include <dev/bus_dma/bus_dmamem_common.h>
 

Index: src/sys/kern/subr_physmap.c
diff -u src/sys/kern/subr_physmap.c:1.3 src/sys/kern/subr_physmap.c:1.4
--- src/sys/kern/subr_physmap.c:1.3	Sat Jun  6 23:02:25 2020
+++ src/sys/kern/subr_physmap.c	Sun Sep  6 15:27:22 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_physmap.c,v 1.3 2020/06/06 23:02:25 ad Exp $	*/
+/*	$NetBSD: subr_physmap.c,v 1.4 2020/09/06 15:27:22 riastradh Exp $	*/
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,12 +30,15 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: subr_physmap.c,v 1.3 2020/06/06 23:02:25 ad Exp $");
+__KERNEL_RCSID(1, "$NetBSD: subr_physmap.c,v 1.4 2020/09/06 15:27:22 riastradh Exp $");
 
 #include <sys/param.h>
 #include <sys/physmap.h>
 #include <sys/kmem.h>
 
+#include <uvm/uvm_extern.h>
+#include <uvm/uvm_page.h>
+
 #include <dev/mm.h>
 
 /*

Reply via email to