Module Name: src
Committed By: riastradh
Date: Sat Dec 18 16:31:53 UTC 2021
Modified Files:
src/sys/uvm: uvm_device.h
Log Message:
Add some missing includes to uvm_device.h.
- sys/types.h for dev_t
- sys/queue.h for LIST_ENTRY
- uvm/uvm_object.h for complete struct uvm_object type
- uvm/uvm_param.h for voff_t/vsize_t
- uvm/uvm_prot.h for vm_prot_t
To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/uvm/uvm_device.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/uvm/uvm_device.h
diff -u src/sys/uvm/uvm_device.h:1.14 src/sys/uvm/uvm_device.h:1.15
--- src/sys/uvm/uvm_device.h:1.14 Sat Sep 5 16:30:13 2020
+++ src/sys/uvm/uvm_device.h Sat Dec 18 16:31:53 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_device.h,v 1.14 2020/09/05 16:30:13 riastradh Exp $ */
+/* $NetBSD: uvm_device.h,v 1.15 2021/12/18 16:31:53 riastradh Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -30,6 +30,13 @@
#ifndef _UVM_UVM_DEVICE_H_
#define _UVM_UVM_DEVICE_H_
+#include <sys/types.h>
+#include <sys/queue.h>
+
+#include <uvm/uvm_object.h>
+#include <uvm/uvm_param.h>
+#include <uvm/uvm_prot.h>
+
/*
* uvm_device.h
*