Displaying 10 results from an estimated 10 matches for "vm_kern".
2003 Apr 22
0
kmem_map too small: 260046848 total allocated
...in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:316
#2 0xb714e965 in panic (fmt=0xb72635e0 "kmem_malloc(%ld): kmem_map too small: %ld total allocated") at /usr/src/sys/kern/kern_shutdown.c:595
#3 0xb71fccd7 in kmem_malloc (map=0xb729d100, size=16384, flags=2) at /usr/src/sys/vm/vm_kern.c:329
#4 0xb7149c5f in malloc (size=16384, type=0xb7287c60, flags=2) at /usr/src/sys/kern/kern_malloc.c:198
#5 0xb71ec113 in softdep_disk_io_initiation (bp=0xccc3e848) at /usr/src/sys/ufs/ffs/ffs_softdep.c:2989
#6 0xb718953b in spec_strategy (ap=0xf8237be0) at /usr/src/sys/miscfs/specfs/spec_vno...
2003 Sep 09
1
Make installworld failure
...eptember 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
vm/vnode_pager.h -> vm/vnode_pa...
2013 Jul 19
2
9.2PRERELEASE ZFS panic in lzjb_compress
Hi,
Running 9.2-PRERELEASE #19 r253313 I got the following panic
Fatal trap 12: page fault while in kernel mode
cpuid = 22; apic id = 46
fault virtual address = 0xffffff827ebca30c
fault code = supervisor read data, page not present
instruction pointer = 0x20:0xffffffff81983055
stack pointer = 0x28:0xffffffcf75bd60a0
frame pointer = 0x28:0xffffffcf75bd68f0
2003 Oct 01
0
[releng_4 tinderbox] failure on alpha/alpha
...RELENG_4/alpha/alpha/src/sys -I/vol/vol0/users/des/tinderbox/RELENG_4/alpha/alpha/src/sys/../include -I/vol/vol0/users/des/tinderbox/RELENG_4/alpha/alpha/src/sys/contrib/ipfilter -D_KERNEL -include opt_global.h -mno-fp-regs -Wa,-mev56 /vol/vol0/users/des/tinderbox/RELENG_4/alpha/alpha/src/sys/vm/vm_kern.c
cc -c -O -pipe -mcpu=ev4 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I/vol/vol0/users/des/tinderbox/RELENG_4/alpha/alpha/src/sys -I/vol/vol0/users/des/tinderbox/RELENG_4/alph...
2003 Oct 01
0
[releng_4 tinderbox] failure on i386/i386
...86/src/sys/../include -I/vol/vol0/users/des/tinderbox/RELENG_4/i386/i386/src/sys/contrib/dev/acpica -I/vol/vol0/users/des/tinderbox/RELENG_4/i386/i386/src/sys/contrib/ipfilter -D_KERNEL -include opt_global.h -mpreferred-stack-boundary=2 /vol/vol0/users/des/tinderbox/RELENG_4/i386/i386/src/sys/vm/vm_kern.c
cc -c -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -ansi -nostdinc -I- -I. -I/vol/vol0/users/des/tinderbox/RELENG_4/i386/i386/src/sys -I/vol/vol0/users/des/tinderbox/RELENG_4/i386/i386/src/s...
2003 Aug 07
0
understanding a panic / crash dump
...0x0, m=0xc07de248)
at /usr/src/sys/i386/i386/pmap.c:1635
#6 0xc026da8c in pmap_enter (pmap=0xc02f1620, va=3299061760, m=0xc07de248,
prot=7 '\a', wired=1)
at /usr/src/sys/i386/i386/pmap.c:2134
#7 0xc023a4c4 in kmem_malloc (map=0xc02e43c0, size=16384, flags=2) at
/usr/src/sys/vm/vm_kern.c:414
#8 0xc0154b93 in malloc (size=16384, type=0xc02cc740, flags=2) at
/usr/src/sys/kern/kern_malloc.c:198
#9 0xc0228a3c in softdep_disk_io_initiation (bp=0xcf9ac218) at
/usr/src/sys/ufs/ffs/ffs_softdep.c:2989
#10 0xc0194467 in spec_strategy (ap=0xe026cb84) at
/usr/src/sys/miscfs/specfs/spec_...
2003 Aug 22
3
PAE removal patch for testing
...vm_page_t *, int));
void pmap_qremove __P((vm_offset_t, int));
+void pmap_reference __P((pmap_t));
void pmap_release __P((pmap_t));
void pmap_remove __P((pmap_t, vm_offset_t, vm_offset_t));
void pmap_remove_pages __P((pmap_t, vm_offset_t, vm_offset_t));
diff -u -r /usr/src/sys.old/vm/vm_kern.c /usr/src/sys/vm/vm_kern.c
--- /usr/src/sys.old/vm/vm_kern.c Thu Aug 21 18:36:25 2003
+++ /usr/src/sys/vm/vm_kern.c Fri Aug 22 01:56:09 2003
@@ -265,6 +265,7 @@
panic("kmem_suballoc");
}
*max = *min + size;
+ pmap_reference(vm_map_pmap(parent));
result = vm_map_create(vm_map_pma...
2013 Oct 28
5
FreeBSD PVH guest support
...-35,15 +35,21 @@ __FBSDID("$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$");...
2008 Apr 09
3
[SO]HO Software RAID5 server: which implementation should I choice?
Hello, freebsd-stable.
Does somebody use some software RAID5 on FreeBSD in real production
system?
I want to build storage server for my home: RAW photos, multi-layer
PhotoShop files and FLAC-encoded music consume a lot of space, and
they should be availible both from desktop & notebook.
Also, all photo-content is unique, so I need some insuranse from
single HDD crash. I understand,
2006 Nov 17
1
gjournal on 6.x wont build
Hi all,
I was intending on trying out gjournal on a new disk i've added in my
desktop. I had a look to see what the most recent patch provided by
Pawel and found
http://people.freebsd.org/~pjd/patches/gjournal6_20061024.patch
I created the directories as per Pawel's original post
(http://lists.freebsd.org/pipermail/freebsd-fs/2006-June/001962.html)
and the patch succeeded with no failed