Lines Matching +full:0 +full:x185
36 # db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe03e6992450
37 # vpanic() at vpanic+0x185/frame 0xfffffe03e69924b0
38 # panic() at panic+0x43/frame 0xfffffe03e6992510
39 # pmap_growkernel() at pmap_growkernel+0x2d4/frame 0xfffffe03e6992550
40 # vm_map_insert() at vm_map_insert+0x296/frame 0xfffffe03e69925f0
41 # vm_map_find() at vm_map_find+0x617/frame 0xfffffe03e69926d0
42 # kva_import() at kva_import+0x3c/frame 0xfffffe03e6992710
43 # vmem_try_fetch() at vmem_try_fetch+0xde/frame 0xfffffe03e6992760
44 # vmem_xalloc() at vmem_xalloc+0x4bb/frame 0xfffffe03e69927e0
45 # kva_import_domain() at kva_import_domain+0x36/frame 0xfffffe03e6992810
46 # vmem_try_fetch() at vmem_try_fetch+0xde/frame 0xfffffe03e6992860
47 # vmem_xalloc() at vmem_xalloc+0x4bb/frame 0xfffffe03e69928e0
48 # vmem_alloc() at vmem_alloc+0x8a/frame 0xfffffe03e6992930
49 # kmem_malloc_domainset() at kmem_malloc_domainset+0x92/frame 0xfffffe03e69929a0
50 # malloc() at malloc+0x162/frame 0xfffffe03e69929f0
51 # read_random_uio() at read_random_uio+0xa5/frame 0xfffffe03e6992a40
52 # sys_getrandom() at sys_getrandom+0x7b/frame 0xfffffe03e6992ac0
53 # amd64_syscall() at amd64_syscall+0x183/frame 0xfffffe03e6992bf0
54 # fast_syscall_common() at fast_syscall_common+0x101/frame 0xfffffe03e6992bf0
55 # --- syscall (563, FreeBSD ELF64, sys_getrandom), rip = 0x80041899a, rsp = 0x7ffffffc3cb8, rbp = 0…
58 # Stopped at kdb_enter+0x37: movq $0,0x1084916(%rip)
60 # version: FreeBSD 13.0-CURRENT #0 r358094: Wed Feb 19 06:25:16 CET 2020\012 pho@t2.osted…
68 sed '1,/^EOF/d' < $odir/$0 > $dir/getrandom2.c
76 [ -f getrandom2.core -a $s -eq 0 ] &&
107 #define SYNC 0
118 for (i = 0; i < 10; i++)
119 getrandom(bp, mx, 0);
122 _exit(0);
135 e = 0;
138 MAP_ANON | MAP_SHARED, -1, 0)) == MAP_FAILED)
141 if (getrlimit(RLIMIT_NPROC, &rlp) < 0)
149 if (sysctlbyname("vm.stats.vm.v_free_count", &pages, &vsz, NULL, 0) != 0)
154 if (getrlimit(RLIMIT_DATA, &rlp) < 0)
160 0)) == MAP_FAILED)
163 if (getrandom(bp, mx, 0) != -1)
169 for (i = 0; i < parallel; i++) {
170 if ((pids[i] = fork()) == 0)
175 for (i = 0; i < parallel; i++) {
176 if (waitpid(pids[i], &status, 0) == -1)
178 if (status != 0) {
184 e += status == 0 ? 0 : 1;