summaryrefslogtreecommitdiffstats
path: root/sys/dev/agp
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2012-08-05 14:11:42 +0000
committerkib <kib@FreeBSD.org>2012-08-05 14:11:42 +0000
commitcac2fe116fb1431e5d9f22d2c536ee13c925eaa8 (patch)
treee43451f867df87793408c455ea0ee0459bfc180e /sys/dev/agp
parent42fcb864d46d43b02c8ce41669bc2240b44330fe (diff)
downloadFreeBSD-src-cac2fe116fb1431e5d9f22d2c536ee13c925eaa8.zip
FreeBSD-src-cac2fe116fb1431e5d9f22d2c536ee13c925eaa8.tar.gz
After the PHYS_TO_VM_PAGE() function was de-inlined, the main reason
to pull vm_param.h was removed. Other big dependency of vm_page.h on vm_param.h are PA_LOCK* definitions, which are only needed for in-kernel code, because modules use KBI-safe functions to lock the pages. Stop including vm_param.h into vm_page.h. Include vm_param.h explicitely for the kernel code which needs it. Suggested and reviewed by: alc MFC after: 2 weeks
Diffstat (limited to 'sys/dev/agp')
-rw-r--r--sys/dev/agp/agp.c1
-rw-r--r--sys/dev/agp/agp_i810.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/agp/agp.c b/sys/dev/agp/agp.c
index 95642ac..58931ad 100644
--- a/sys/dev/agp/agp.c
+++ b/sys/dev/agp/agp.c
@@ -50,6 +50,7 @@ __FBSDID("$FreeBSD$");
#include <dev/pci/pcireg.h>
#include <vm/vm.h>
+#include <vm/vm_param.h>
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_pageout.h>
diff --git a/sys/dev/agp/agp_i810.c b/sys/dev/agp/agp_i810.c
index c0f592c..39d6cba 100644
--- a/sys/dev/agp/agp_i810.c
+++ b/sys/dev/agp/agp_i810.c
@@ -67,6 +67,7 @@ __FBSDID("$FreeBSD$");
#include <dev/pci/pci_private.h>
#include <vm/vm.h>
+#include <vm/vm_param.h>
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_pageout.h>
OpenPOWER on IntegriCloud