Re: SVN r292469 breaks VirtualBox

2015-12-19 Thread Alan Cox
On 12/19/2015 19:00, Michael Butler wrote: > While the kernel modules will build, they won't load .. > > kernel: linker_load_file: Unsupported file type > kernel: link_elf_obj: symbol vm_pageout_grow_cache undefined > kernel: linker_load_file: Unsupported file type > kernel: KLD vboxnetflt.ko:

Re: SVN r292469 breaks VirtualBox

2015-12-19 Thread Joe Maloney
I ran into this months earlier with NextBSD. Replacing vm_pageout_grow_cache(). in memobj-r0drv-freebsd.c with this fixed the issue: vm_pageout_reclaim_contig(1, 0, VM_MAX_ADDRESS, PAGE_SIZE, 0, 3); Joe Maloney > On Dec 19, 2015, at 7:45 PM, Alan Cox wrote: > > On 12/19/2015

Re: SVN r292469 breaks VirtualBox

2015-12-19 Thread Alan Cox
On 12/19/2015 20:19, Joe Maloney wrote: > I ran into this months earlier with NextBSD. Replacing > vm_pageout_grow_cache(). in memobj-r0drv-freebsd.c with this fixed the issue: > > vm_pageout_reclaim_contig(1, 0, VM_MAX_ADDRESS, PAGE_SIZE, 0, 3); Be careful. Notice that I said,

Re: SVN r292469 breaks VirtualBox

2015-12-19 Thread Mark Johnston
On Sat, Dec 19, 2015 at 07:45:54PM -0600, Alan Cox wrote: > On 12/19/2015 19:00, Michael Butler wrote: > > While the kernel modules will build, they won't load .. > > > > kernel: linker_load_file: Unsupported file type > > kernel: link_elf_obj: symbol vm_pageout_grow_cache undefined > > kernel: