Displaying 3 results from an estimated 3 matches for "vm_extern".
Did you mean:
__extern
2013 Jul 12
1
stable/9 fails to compile: kmem_alloc_contig bad definition
...-mno-aes -mno-avx
-mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector
/usr/src/sys/vm/vm_contig.c
/usr/src/sys/vm/vm_contig.c:319:1: error: conflicting types for
'kmem_alloc_contig'
kmem_alloc_contig(vm_map_t map, vm_size_t size, int flags, vm_paddr_t low,
^
/usr/src/sys/vm/vm_extern.h:46:13: note: previous declaration is here
vm_offset_t kmem_alloc_contig(vm_map_t map, vm_size_t size, int flags,
^
1 error generated.
vm_extern.h:
vm_offset_t kmem_alloc_contig(vm_map_t map, vm_size_t size, int flags,
vm_paddr_t low, vm_paddr_t high, unsigned long alignment,...
2003 Sep 09
1
Make installworld failure
...'ed on the STABLE branch today (September 9th) at around 2:30PM EDT.
No problems with buildworld or kernel build, but I am getting failures
during installworld
Error and output from uname -a are below.
vm/pmap.h -> vm/pmap.ph
vm/swap_pager.h -> vm/swap_pager.ph
vm/vm.h -> vm/vm.ph
vm/vm_extern.h -> vm/vm_extern.ph
vm/vm_kern.h -> vm/vm_kern.ph
vm/vm_map.h -> vm/vm_map.ph
vm/vm_object.h -> vm/vm_object.ph
vm/vm_page.h -> vm/vm_page.ph
vm/vm_pageout.h -> vm/vm_pageout.ph
vm/vm_pager.h -> vm/vm_pager.ph
vm/vm_param.h -> vm/vm_param.ph
vm/vm_zone.h -> vm/vm_zone.ph...
2013 Oct 28
5
FreeBSD PVH guest support
...;$FreeBSD$");
#include <sys/proc.h>
#include <sys/smp.h>
#include <sys/systm.h>
+#include <sys/lock.h>
+#include <sys/mutex.h>
+#include <sys/reboot.h>
#include <vm/vm.h>
#include <vm/pmap.h>
+#include <vm/vm_kern.h>
+#include <vm/vm_extern.h>
#include <dev/pci/pcivar.h>
#include <machine/cpufunc.h>
#include <machine/cpu.h>
#include <machine/smp.h>
+#include <machine/stdarg.h>
#include <x86/apicreg.h>
@@ -52,6 +58,9 @@ __FBSDID("$FreeBSD$");
#include <xen/gnttab.h>...