Port-vax archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Reproducable kernel crash



I enabled PMAPDEBUG and expanded a few of the printfs to get more information.
The (obvious) problem is that pm_count and the number of pcbs in pm_pcbs
gets out of sync.

The sequence that triggers it is a failing sys__lwp_create() syscall
where the lwpid_t * supposed to get the lwp ID of the newly created
lwp is bogus, so copyout fails and we lwp_exit() the new lwp right away
(before it ever had a chance to run).

basically:

	do_lwp_create( ...., &l2, ...);
	lwp_exit(l2);

There is a pmap_activate() call in there that makes l2's pm_pcbs have
two entries, and then during lwp_exit only the active one gets removed.

Anyone have an idea where the second PCB for that fresh lwp could come from
(or where it is set)?

Martin


Enter pathname of shell or RETURN for /bin/sh: 
# cd /usr/tests/lib/libc/sys
# ./t_lwp_create lwp_create_bad_lid_ptr
[ 127.9795800] pmap_simulref: bits 6 addr 7ffffaac
[ 127.9995930] pmap_enter: pmap 0x87b7f100 v 7ffff000 p 7b77000 prot 3 wired 0 access 2
[ 128.0118370] pmap_simulref: bits 2 addr 7f6e04f0
[ 128.0260000] pmap_enter: pmap 0x87b7f100 v 7f6e1000 p 7dac000 prot 5 wired 0 access 0
[ 128.0387280] pmap_enter: pmap 0x87b7f100 v 7f6e2000 p 7daa000 prot 5 wired 0 access 0
[ 128.0414130] pmap_enter: pmap 0x87b7f100 v 7f6e3000 p 7da9000 prot 5 wired 0 access 0
[ 128.0541210] pmap_enter: pmap 0x87b7f100 v 7f6e4000 p 7d9b000 prot 5 wired 0 access 0
[ 128.0668300] pmap_enter: pmap 0x87b7f100 v 7f6e0000 p 7dab000 prot 5 wired 0 access 1
[ 128.0795830] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.0795830] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 128.0795830] remaining pcbs:
[ 128.0795830] 0 pcbs left
[ 128.0914810] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.0914810] pcbs:
[ 128.0914810] 0x8b98d000
[ 128.0914810] 1 pcbs in pm_pcbs
[ 128.1074600] pmap_protect: pmap 0x87b7f100, start 7f6fd000, end 7f6fe000, prot 0
[ 128.1149660] pmap_enter: pmap 0x87b7f100 v 7f6fd000 p 7b75000 prot 3 wired 0 access 2
[ 128.1276680] pmap_enter: pmap 0x87b7f100 v 7f6fe000 p 7b79000 prot 3 wired 0 access 2
[ 128.1303730] pmap_enter: pmap 0x87b7f100 v 7f6e6000 p 7d99000 prot 5 wired 0 access 0
[ 128.1430810] pmap_enter: pmap 0x87b7f100 v 7f6e7000 p 7d98000 prot 5 wired 0 access 0
[ 128.1558010] pmap_enter: pmap 0x87b7f100 v 7f6e8000 p 7d97000 prot 5 wired 0 access 0
[ 128.1684970] pmap_enter: pmap 0x87b7f100 v 7f6e9000 p 7d96000 prot 5 wired 0 access 0
[ 128.1712050] pmap_enter: pmap 0x87b7f100 v 7f6e5000 p 7d9a000 prot 5 wired 0 access 1
[ 128.1839140] pmap_simulref: bits 0 addr 7f6e6038
[ 128.1980810] pmap_simulref: bits 0 addr 7f6e1110
[ 128.2022460] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.2022460] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 128.2022460] remaining pcbs:
[ 128.2022460] 0 pcbs left
[ 128.2149160] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.2149160] pcbs:
[ 128.2149160] 0x8b98d000
[ 128.2149160] 1 pcbs in pm_pcbs
[ 128.2226300] pmap_simulref: bits 0 addr 7f6e98a0
[ 128.2367920] pmap_simulref: bits 0 addr 7f6e28ec
[ 128.2409570] pmap_enter: pmap 0x87b7f100 v 7f6eb000 p 7d94000 prot 5 wired 0 access 0
[ 128.2536670] pmap_enter: pmap 0x87b7f100 v 7f6ec000 p 7da2000 prot 5 wired 0 access 0
[ 128.2663750] pmap_enter: pmap 0x87b7f100 v 7f6ed000 p 7da3000 prot 5 wired 0 access 0
[ 128.2790950] pmap_enter: pmap 0x87b7f100 v 7f6ea000 p 7d95000 prot 5 wired 0 access 1
[ 128.2817940] pmap_simulref: bits 0 addr 7f6e85c4
[ 128.2959580] pmap_simulref: bits 6 addr 7f6d8ffc
[ 128.3001260] pmap_enter: pmap 0x87b7f100 v 7f6d8000 p 7b74000 prot 3 wired 0 access 2
[ 128.3128430] pmap_enter: pmap 0x87b7f100 v 7f6d9000 p 7b73000 prot 3 wired 0 access 2
[ 128.3255450] pmap_enter: pmap 0x87b7f100 v 7f6da000 p 7b72000 prot 3 wired 0 access 2
[ 128.3382810] pmap_simulref: bits 2 addr 10034
[ 128.3492980] pmap_enter: pmap 0x87b7f100 v 11000 p 7b7e000 prot 5 wired 0 access 0
[ 128.3588810] pmap_enter: pmap 0x87b7f100 v 10000 p 7b7d000 prot 5 wired 0 access 1
[ 128.3684670] pmap_enter: pmap 0x87b7f100 v 7f6db000 p 7b71000 prot 3 wired 0 access 2
[ 128.3711790] pmap_enter: pmap 0x87b7f100 v 21000 p 7b7a000 prot 3 wired 0 access 2
[ 128.3807600] pmap_simulref: bits 0 addr 7f6e4242
[ 128.3995990] pmap_kenter_pa: va: 89d10000, pa 7b6f000, prot 3 ptp 0x80451600
[ 128.4171510] pmap_kenter_pa: va: 89d11000, pa 7b6e000, prot 3 ptp 0x80451620
[ 128.4204570] pmap_kenter_pa: va: 89d12000, pa 7b6d000, prot 3 ptp 0x80451640
[ 128.4337890] pmap_kenter_pa: va: 89d13000, pa 7b6c000, prot 3 ptp 0x80451660
[ 128.4471230] pmap_kenter_pa: va: 89d14000, pa 7b6b000, prot 3 ptp 0x80451680
[ 128.4504760] pmap_kenter_pa: va: 89d15000, pa 7b6a000, prot 3 ptp 0x804516a0
[ 128.4637900] pmap_kenter_pa: va: 89d16000, pa 7b69000, prot 3 ptp 0x804516c0
[ 128.4771230] pmap_kenter_pa: va: 89d17000, pa 7b68000, prot 3 ptp 0x804516e0
[ 128.4804540] pmap_kenter_pa: va: 89d18000, pa 7b67000, prot 3 ptp 0x80451700
[ 128.4937900] pmap_kenter_pa: va: 89d19000, pa 7b66000, prot 3 ptp 0x80451720
[ 128.5071220] pmap_kenter_pa: va: 89d1a000, pa 7b65000, prot 3 ptp 0x80451740
[ 128.5104770] pmap_kenter_pa: va: 89d1b000, pa 7b64000, prot 3 ptp 0x80451760
[ 128.5237900] pmap_kenter_pa: va: 89d1c000, pa 7b63000, prot 3 ptp 0x80451780
[ 128.5371230] pmap_kenter_pa: va: 89d1d000, pa 7b62000, prot 3 ptp 0x804517a0
[ 128.5404540] pmap_kenter_pa: va: 89d1e000, pa 7b61000, prot 3 ptp 0x804517c0
[ 128.5537890] pmap_kenter_pa: va: 89d1f000, pa 7b60000, prot 3 ptp 0x804517e0
[ 128.5696790] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.5696790] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 128.5696790] remaining pcbs:
[ 128.5696790] 0 pcbs left
[ 128.5896310] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.5896310] pcbs:
[ 128.5896310] 0x8b98d000
[ 128.5896310] 1 pcbs in pm_pcbs
[ 128.6075040] pmap_kenter_pa: va: 88bbd000, pa 7b5f000, prot 3 ptp 0x8042eba0
[ 128.6118230] pmap_kenter_pa: va: 88bbe000, pa 7b5e000, prot 3 ptp 0x8042ebc0
[ 128.6251350] pmap_kenter_pa: va: 88bbf000, pa 7b5d000, prot 3 ptp 0x8042ebe0
[ 128.6384780] pmap_kenter_pa: va: 88bc0000, pa 7b5c000, prot 3 ptp 0x8042ec00
[ 128.6418010] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.6418010] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 128.6418010] remaining pcbs:
[ 128.6418010] 0 pcbs left
[ 128.6596300] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.6596300] pcbs:
[ 128.6596300] 0x8b98d000
[ 128.6596300] 1 pcbs in pm_pcbs
[ 128.6796200] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 128.6914160] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 128.7032730] pmap_enter: pmap 0x87b7f100 v 7f6ff000 p 7b5f000 prot 1 wired 0 access 1
[ 128.7159900] pmap_kenter_pa: va: 88bbd000, pa 7b5b000, prot 3 ptp 0x8042eba0
[ 128.7202040] pmap_kenter_pa: va: 88bbe000, pa 7b5a000, prot 3 ptp 0x8042ebc0
[ 128.7335200] pmap_kenter_pa: va: 88bbf000, pa 7b59000, prot 3 ptp 0x8042ebe0
[ 128.7468520] pmap_kenter_pa: va: 88bc0000, pa 7b58000, prot 3 ptp 0x8042ec00
[ 128.7501980] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.7501980] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 128.7501980] remaining pcbs:
[ 128.7501980] 0 pcbs left
[ 128.7621150] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 128.7621150] pcbs:
[ 128.7621150] 0x8b98d000
[ 128.7621150] 1 pcbs in pm_pcbs
[ 128.7740710] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 128.7859410] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 128.7978160] pmap_protect: pmap 0x87b7f100, start 7f6d1000, end 7f6d2000, prot 0
[ 128.8053220] pmap_enter: pmap 0x87b7f100 v 7f6d1000 p 7b57000 prot 3 wired 0 access 2
[ 128.8180510] pmap_enter: pmap 0x87b7f100 v 7f6d0000 p 7b5b000 prot 1 wired 0 access 1
[ 128.8207440] pmap_simulref: bits 2 addr 7f6b00f4
[ 128.8349010] pmap_enter: pmap 0x87b7f100 v 7f6b1000 p 7b5e000 prot 5 wired 0 access 0
[ 128.8476060] pmap_enter: pmap 0x87b7f100 v 7f6b2000 p 7b5d000 prot 5 wired 0 access 0
[ 128.8503220] pmap_enter: pmap 0x87b7f100 v 7f6b3000 p 7b5c000 prot 5 wired 0 access 0
[ 128.8630270] pmap_enter: pmap 0x87b7f100 v 7f6b0000 p 7b5f000 prot 5 wired 0 access 1
[ 128.8757510] pmap_simulref: bits 0 addr 7f6e7b0a
[ 128.8799030] pmap_simulref: bits 0 addr 7f6b31ae
[ 128.9096740] pmap_enter: pmap 0x87b7f100 v 7f6d7000 p 7d67000 prot 1 wired 0 access 1
[ 128.9261630] pmap_simulref: bits 6 addr 7f69dffc
[ 128.9303370] pmap_protect: pmap 0x87b7f100, start 7f69d000, end 7f69e000, prot 0
[ 128.9478230] pmap_enter: pmap 0x87b7f100 v 7f69d000 p 7b55000 prot 3 wired 0 access 2
[ 128.9505210] pmap_enter: pmap 0x87b7f100 v 7f696000 p 7d10000 prot 1 wired 0 access 0
[ 128.9632360] pmap_enter: pmap 0x87b7f100 v 7f697000 p 7d0f000 prot 1 wired 0 access 0
[ 128.9759400] pmap_enter: pmap 0x87b7f100 v 7f698000 p 7d4e000 prot 1 wired 0 access 0
[ 128.9886450] pmap_enter: pmap 0x87b7f100 v 7f69a000 p 7d4c000 prot 1 wired 0 access 0
[ 128.9913670] pmap_enter: pmap 0x87b7f100 v 7f69b000 p 7d4b000 prot 1 wired 0 access 0
[ 129.0040630] pmap_enter: pmap 0x87b7f100 v 7f69c000 p 7d63000 prot 1 wired 0 access 0
[ 129.0167750] pmap_enter: pmap 0x87b7f100 v 7f699000 p 7d4d000 prot 1 wired 0 access 1
[ 129.0296290] pmap_enter: pmap 0x87b7f100 v 7f551000 p 7d66000 prot 5 wired 0 access 0
[ 129.0421890] grow_p1: pm 0x87b7f100 len 1faa88
[ 129.0542860] update_pcbs(pmap=0x87b7f100)
[ 129.0611470] pmap_enter: pmap 0x87b7f100 v 7f552000 p 7d65000 prot 5 wired 0 access 0
[ 129.0738540] pmap_enter: pmap 0x87b7f100 v 7f553000 p 7d64000 prot 5 wired 0 access 0
[ 129.0865610] pmap_enter: pmap 0x87b7f100 v 7f554000 p 7d30000 prot 5 wired 0 access 0
[ 129.0992710] pmap_enter: pmap 0x87b7f100 v 7f550000 p 7d67000 prot 5 wired 0 access 1
[ 129.1019810] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 129.1019810] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 129.1019810] remaining pcbs:
[ 129.1019810] 0 pcbs left
[ 129.1139370] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 129.1139370] pcbs:
[ 129.1139370] 0x8b98d000
[ 129.1139370] 1 pcbs in pm_pcbs
[ 129.1199010] pmap_simulref: bits 2 addr 7f571ef0
[ 129.1340610] pmap_enter: pmap 0x87b7f100 v 7f56e000 p 7d18000 prot 5 wired 0 access 0
[ 129.1467710] pmap_enter: pmap 0x87b7f100 v 7f56f000 p 7d17000 prot 5 wired 0 access 0
[ 129.1596300] pmap_enter: pmap 0x87b7f100 v 7f570000 p 7d4a000 prot 5 wired 0 access 0
[ 129.1721980] pmap_enter: pmap 0x87b7f100 v 7f572000 p 7d48000 prot 5 wired 0 access 0
[ 129.1848940] pmap_enter: pmap 0x87b7f100 v 7f573000 p 7d47000 prot 5 wired 0 access 0
[ 129.1976040] pmap_enter: pmap 0x87b7f100 v 7f574000 p 7d0c000 prot 5 wired 0 access 0
[ 129.2003130] pmap_enter: pmap 0x87b7f100 v 7f575000 p 7d0b000 prot 5 wired 0 access 0
[ 129.2130270] pmap_enter: pmap 0x87b7f100 v 7f571000 p 7d49000 prot 5 wired 0 access 1
[ 129.2257340] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 129.2257340] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 129.2257340] remaining pcbs:
[ 129.2257340] 0 pcbs left
[ 129.2383810] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 129.2383810] pcbs:
[ 129.2383810] 0x8b98d000
[ 129.2383810] 1 pcbs in pm_pcbs
[ 129.2440680] pmap_enter: pmap 0x87b7f100 v 7fffe000 p 7b53000 prot 3 wired 0 access 2
[ 129.2567770] pmap_simulref: bits 0 addr 7f6e36be
[ 129.2609410] pmap_simulref: bits 0 addr 7f6b1da3
[ 129.2751080] pmap_simulref: bits 0 addr 7f6b2968
[ 129.2896490] pmap_enter: pmap 0x87b7f100 v 7f558000 p 7d39000 prot 5 wired 0 access 0
[ 129.3019810] pmap_enter: pmap 0x87b7f100 v 7f559000 p 7d38000 prot 5 wired 0 access 0
[ 129.3146920] pmap_enter: pmap 0x87b7f100 v 7f55a000 p 7d37000 prot 5 wired 0 access 0
[ 129.3273980] pmap_enter: pmap 0x87b7f100 v 7f55c000 p 7d2c000 prot 5 wired 0 access 0
[ 129.3301040] pmap_enter: pmap 0x87b7f100 v 7f55d000 p 7d2b000 prot 5 wired 0 access 0
[ 129.3428120] pmap_enter: pmap 0x87b7f100 v 7f55e000 p 7d2a000 prot 5 wired 0 access 0
[ 129.3555360] pmap_enter: pmap 0x87b7f100 v 7f55f000 p 7d29000 prot 5 wired 0 access 0
[ 129.3682290] pmap_enter: pmap 0x87b7f100 v 7f55b000 p 7d36000 prot 5 wired 0 access 1
[ 129.3709400] pmap_enter: pmap 0x87b7f100 v 7f565000 p 7d1d000 prot 5 wired 0 access 0
[ 129.3836470] pmap_enter: pmap 0x87b7f100 v 7f566000 p 7d1c000 prot 5 wired 0 access 0
[ 129.3963530] pmap_enter: pmap 0x87b7f100 v 7f567000 p 7d1b000 prot 5 wired 0 access 0
[ 129.4090620] pmap_enter: pmap 0x87b7f100 v 7f569000 p 7d33000 prot 5 wired 0 access 0
[ 129.4118000] pmap_enter: pmap 0x87b7f100 v 7f56a000 p 7d32000 prot 5 wired 0 access 0
[ 129.4244820] pmap_enter: pmap 0x87b7f100 v 7f56b000 p 7d31000 prot 5 wired 0 access 0
[ 129.4371870] pmap_enter: pmap 0x87b7f100 v 7f56c000 p 7d1a000 prot 5 wired 0 access 0
[ 129.4398960] pmap_enter: pmap 0x87b7f100 v 7f568000 p 7d35000 prot 5 wired 0 access 1
[ 129.4526050] pmap_simulref: bits 0 addr 7f554f08
[ 129.4667710] pmap_simulref: bits 0 addr 7f552390
[ 129.4709570] pmap_enter: pmap 0x87b7f100 v 7f561000 p 7d27000 prot 5 wired 0 access 0
[ 129.4836470] pmap_enter: pmap 0x87b7f100 v 7f562000 p 7d26000 prot 5 wired 0 access 0
[ 129.4963540] pmap_enter: pmap 0x87b7f100 v 7f563000 p 7d25000 prot 5 wired 0 access 0
[ 129.5090630] pmap_enter: pmap 0x87b7f100 v 7f564000 p 7d1e000 prot 5 wired 0 access 0
[ 129.5117770] pmap_enter: pmap 0x87b7f100 v 7f560000 p 7d28000 prot 5 wired 0 access 1
[ 129.5244810] pmap_enter: pmap 0x87b7f100 v 7f555000 p 7d2f000 prot 5 wired 0 access 0
[ 129.5372040] pmap_enter: pmap 0x87b7f100 v 7f557000 p 7d2d000 prot 5 wired 0 access 0
[ 129.5398970] pmap_enter: pmap 0x87b7f100 v 7f556000 p 7d2e000 prot 5 wired 0 access 1
[ 129.5526060] pmap_simulref: bits 0 addr 7f553210
[ 129.5667760] pmap_simulref: bits 0 addr 7f5593b4
[ 129.5709360] pmap_simulref: bits 0 addr 7f569c2a
[ 129.5851010] pmap_simulref: bits 0 addr 7f551694
[ 129.5992910] pmap_simulref: bits 0 addr 7f5619c4
[ 129.6034360] pmap_simulref: bits 0 addr 7f56e7ce
[ 129.6176180] pmap_simulref: bits 0 addr 7f55f3c4
[ 129.6217730] pmap_simulref: bits 0 addr 7f555db0
[ 129.6359350] pmap_simulref: bits 0 addr 7f55aae4
[ 129.6401000] pmap_simulref: bits 0 addr 7f56c828
[ 129.6542810] pmap_simulref: bits 0 addr 7f567164
[ 129.6684410] pmap_simulref: bits 0 addr 7f557d18
[ 129.6726010] pmap_simulref: bits 0 addr 7f55db24
[ 129.6867680] pmap_simulref: bits 0 addr 7f562394
[ 129.6909400] pmap_simulref: bits 0 addr 7f563894
[ 129.7051070] pmap_simulref: bits 0 addr 7f56be0a
[ 129.7196450] pmap_protect: pmap 0x87b7f100, start 7f6d0000, end 7f6d1000, prot 0
[ 129.7367750] pmap_enter: pmap 0x87b7f100 v 7f6d0000 p 7b52000 prot 3 wired 0 access 2
[ 129.7496280] pmap_simulref: bits 0 addr 7f696684
[ 129.7636520] pmap_protect: pmap 0x87b7f100, start 7f696000, end 7f697000, prot 0
[ 129.7711620] pmap_enter: pmap 0x87b7f100 v 7f696000 p 7b51000 prot 3 wired 0 access 2
[ 129.7838550] pmap_simulref: bits 0 addr 7f572000
[ 129.7980210] pmap_simulref: bits 0 addr 7f573000
[ 129.8021880] pmap_simulref: bits 0 addr 7f697000
[ 129.8163700] pmap_protect: pmap 0x87b7f100, start 7f697000, end 7f698000, prot 0
[ 129.8238620] pmap_enter: pmap 0x87b7f100 v 7f697000 p 7b50000 prot 3 wired 0 access 2
[ 129.8365810] pmap_simulref: bits 0 addr 7f574000
[ 129.8407290] pmap_simulref: bits 0 addr 7f575000
[ 129.8548960] pmap_simulref: bits 0 addr 7f698000
[ 129.8696350] pmap_protect: pmap 0x87b7f100, start 7f698000, end 7f699000, prot 0
[ 129.8865670] pmap_enter: pmap 0x87b7f100 v 7f698000 p 7b4f000 prot 3 wired 0 access 2
[ 129.8996380] pmap_protect: pmap 0x87b7f100, start 7f699000, end 7f69a000, prot 0
[ 129.9167790] pmap_enter: pmap 0x87b7f100 v 7f699000 p 7b4e000 prot 3 wired 0 access 2
[ 129.9296290] pmap_enter: pmap 0x87b7f100 v 7f577000 p 7d09000 prot 5 wired 0 access 0
[ 129.9421890] pmap_enter: pmap 0x87b7f100 v 7f578000 p 7d04000 prot 5 wired 0 access 0
[ 129.9549140] pmap_enter: pmap 0x87b7f100 v 7f579000 p 7d03000 prot 5 wired 0 access 0
[ 129.9676040] pmap_enter: pmap 0x87b7f100 v 7f57a000 p 7d02000 prot 5 wired 0 access 0
[ 129.9703130] pmap_enter: pmap 0x87b7f100 v 7f576000 p 7d0a000 prot 5 wired 0 access 1
[ 129.9830220] pmap_simulref: bits 0 addr 7f69b6b4
[ 129.9971880] pmap_protect: pmap 0x87b7f100, start 7f69b000, end 7f69c000, prot 0
[ 130.0046930] pmap_enter: pmap 0x87b7f100 v 7f69b000 p 7b4d000 prot 3 wired 0 access 2
[ 130.0174300] pmap_simulref: bits 0 addr 7f69c78c
[ 130.0215690] pmap_protect: pmap 0x87b7f100, start 7f69c000, end 7f69d000, prot 0
[ 130.0390660] pmap_enter: pmap 0x87b7f100 v 7f69c000 p 7b4c000 prot 3 wired 0 access 2
[ 130.0417740] pmap_simulref: bits 0 addr 7f566690
[ 130.0559370] pmap_simulref: bits 0 addr 7f56af47
[ 130.0601030] pmap_simulref: bits 0 addr 7f564a40
[ 130.0742940] pmap_simulref: bits 0 addr 7f565b54
[ 130.0884380] pmap_simulref: bits 0 addr 7f55e244
[ 130.0926070] pmap_enter: pmap 0x87b7f100 v 7f56d000 p 7d19000 prot 5 wired 0 access 1
[ 130.1053160] pmap_simulref: bits 0 addr 7f55c010
[ 130.1196250] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 130.1196250] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 130.1196250] remaining pcbs:
[ 130.1196250] 0 pcbs left
[ 130.1314170] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 130.1314170] pcbs:
[ 130.1314170] 0x8b98d000
[ 130.1314170] 1 pcbs in pm_pcbs
[ 130.1473990] pmap_simulref: bits 0 addr 7f558b20
[ 130.1515660] pmap_simulref: bits 0 addr 7f56fd18
[ 130.1657310] pmap_simulref: bits 0 addr 7f5709e6
[ 130.1698980] pmap_simulref: bits 0 addr 7f577000
[ 130.1896660] pmap_simulref: bits 0 addr 7f578000
[ 130.2045400] pmap_protect: pmap 0x87b7f100, start 7f69a000, end 7f69b000, prot 0
[ 130.2120450] pmap_enter: pmap 0x87b7f100 v 7f69a000 p 7b4b000 prot 3 wired 0 access 2
[ 130.2247450] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 130.2247450] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 130.2247450] remaining pcbs:
[ 130.2247450] 0 pcbs left
[ 130.2247450] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 130.2247450] pcbs:
[ 130.2247450] 0x8b98d000
[ 130.2247450] 1 pcbs in pm_pcbs
[ 130.2326670] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 130.2326670] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 130.2326670] remaining pcbs:
[ 130.2326670] 0 pcbs left
[ 130.2445860] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 130.2445860] pcbs:
[ 130.2445860] 0x8b98d000
[ 130.2445860] 1 pcbs in pm_pcbs
[ 130.2505900] pmap_simulref: bits 0 addr 7f579008
[ 130.2647410] pmap_simulref: bits 0 addr 7f57a004
[ 130.2789060] pmap_enter: pmap 0x87b7f100 v 7f57c000 p 7cfe000 prot 5 wired 0 access 0
[ 130.2816170] pmap_enter: pmap 0x87b7f100 v 7f57d000 p 7cfd000 prot 5 wired 0 access 0
[ 130.2943220] pmap_enter: pmap 0x87b7f100 v 7f57e000 p 7cfc000 prot 5 wired 0 access 0
[ 130.3070320] pmap_enter: pmap 0x87b7f100 v 7f57f000 p 7cfb000 prot 5 wired 0 access 0
[ 130.3097620] pmap_enter: pmap 0x87b7f100 v 7f57b000 p 7d01000 prot 5 wired 0 access 1
[ 130.3224520] pmap_enter: pmap 0x87b7f100 v 7f6dc000 p 7b4a000 prot 3 wired 0 access 2
[ 130.3351700] pmap_simulref: bits 0 addr 7f57fbcc
[ 130.3493310] pmap_simulref: bits 2 addr 7f651316
[ 130.3534930] pmap_enter: pmap 0x87b7f100 v 7f64e000 p 7c95000 prot 5 wired 0 access 0
[ 130.3661980] pmap_enter: pmap 0x87b7f100 v 7f64f000 p 7c94000 prot 5 wired 0 access 0
[ 130.3789190] pmap_enter: pmap 0x87b7f100 v 7f650000 p 7ced000 prot 5 wired 0 access 0
[ 130.3816160] pmap_enter: pmap 0x87b7f100 v 7f652000 p 7ceb000 prot 5 wired 0 access 0
[ 130.3943220] pmap_enter: pmap 0x87b7f100 v 7f653000 p 7cea000 prot 5 wired 0 access 0
[ 130.4070320] pmap_enter: pmap 0x87b7f100 v 7f654000 p 7cb7000 prot 5 wired 0 access 0
[ 130.4097560] pmap_enter: pmap 0x87b7f100 v 7f655000 p 7cb6000 prot 5 wired 0 access 0
[ 130.4224510] pmap_enter: pmap 0x87b7f100 v 7f651000 p 7cec000 prot 5 wired 0 access 1
[ 130.4351760] pmap_simulref: bits 2 addr 7f6a0a6c
[ 130.4496370] pmap_enter: pmap 0x87b7f100 v 7f6a0000 p 7b49000 prot 3 wired 0 access 1
[ 130.4620360] pmap_simulref: bits 0 addr 7f57cc38
[ 130.4761970] pmap_enter: pmap 0x87b7f100 v 7f6ad000 p 7b48000 prot 3 wired 0 access 1
[ 130.4889160] pmap_simulref: bits 0 addr 7f6509a4
[ 130.4930900] pmap_simulref: bits 2 addr 7f6605fc
[ 130.5072390] pmap_enter: pmap 0x87b7f100 v 7f65d000 p 7c5e000 prot 5 wired 0 access 0
[ 130.5099550] pmap_enter: pmap 0x87b7f100 v 7f65e000 p 7c5d000 prot 5 wired 0 access 0
[ 130.5226570] pmap_enter: pmap 0x87b7f100 v 7f65f000 p 7c5c000 prot 5 wired 0 access 0
[ 130.5353630] pmap_enter: pmap 0x87b7f100 v 7f661000 p 7ce6000 prot 5 wired 0 access 0
[ 130.5480700] pmap_enter: pmap 0x87b7f100 v 7f662000 p 7ce5000 prot 5 wired 0 access 0
[ 130.5507990] pmap_enter: pmap 0x87b7f100 v 7f663000 p 7ce4000 prot 5 wired 0 access 0
[ 130.5634900] pmap_enter: pmap 0x87b7f100 v 7f660000 p 7ce7000 prot 5 wired 0 access 1
[ 130.5761990] pmap_simulref: bits 0 addr 7f57e1a4
[ 130.5815830] pmap_simulref: bits 2 addr 7f5dcc60
[ 130.5957450] pmap_enter: pmap 0x87b7f100 v 7f5d9000 p 7ba9000 prot 5 wired 0 access 0
[ 130.6084530] pmap_enter: pmap 0x87b7f100 v 7f5da000 p 7ba8000 prot 5 wired 0 access 0
[ 130.6111890] pmap_enter: pmap 0x87b7f100 v 7f5db000 p 7ba7000 prot 5 wired 0 access 0
[ 130.6238690] pmap_enter: pmap 0x87b7f100 v 7f5dd000 p 7ce2000 prot 5 wired 0 access 0
[ 130.6365750] pmap_enter: pmap 0x87b7f100 v 7f5de000 p 7ce1000 prot 5 wired 0 access 0
[ 130.6492840] pmap_enter: pmap 0x87b7f100 v 7f5df000 p 7ce0000 prot 5 wired 0 access 0
[ 130.6519920] pmap_enter: pmap 0x87b7f100 v 7f5dc000 p 7ce3000 prot 5 wired 0 access 1
[ 130.6647040] pmap_simulref: bits 2 addr 7f5caca8
[ 130.6788890] pmap_enter: pmap 0x87b7f100 v 7f5c8000 p 7cdf000 prot 5 wired 0 access 0
[ 130.6815790] pmap_enter: pmap 0x87b7f100 v 7f5c9000 p 7cde000 prot 5 wired 0 access 0
[ 130.6942840] pmap_enter: pmap 0x87b7f100 v 7f5cb000 p 7cdc000 prot 5 wired 0 access 0
[ 130.7069940] pmap_enter: pmap 0x87b7f100 v 7f5cc000 p 7c0c000 prot 5 wired 0 access 0
[ 130.7097060] pmap_enter: pmap 0x87b7f100 v 7f5cd000 p 7c0b000 prot 5 wired 0 access 0
[ 130.7224120] pmap_enter: pmap 0x87b7f100 v 7f5ce000 p 7c0a000 prot 5 wired 0 access 0
[ 130.7351310] pmap_enter: pmap 0x87b7f100 v 7f5ca000 p 7cdd000 prot 5 wired 0 access 1
[ 130.7478280] pmap_simulref: bits 2 addr 7f5b5aee
[ 130.7519950] pmap_enter: pmap 0x87b7f100 v 7f5b2000 p 7cc3000 prot 5 wired 0 access 0
[ 130.7647020] pmap_enter: pmap 0x87b7f100 v 7f5b3000 p 7cc2000 prot 5 wired 0 access 0
[ 130.7774090] pmap_enter: pmap 0x87b7f100 v 7f5b4000 p 7cdb000 prot 5 wired 0 access 0
[ 130.7801170] pmap_enter: pmap 0x87b7f100 v 7f5b6000 p 7cd9000 prot 5 wired 0 access 0
[ 130.7928450] pmap_enter: pmap 0x87b7f100 v 7f5b7000 p 7cd8000 prot 5 wired 0 access 0
[ 130.8055360] pmap_enter: pmap 0x87b7f100 v 7f5b8000 p 7cd6000 prot 5 wired 0 access 0
[ 130.8182600] pmap_enter: pmap 0x87b7f100 v 7f5b9000 p 7cd5000 prot 5 wired 0 access 0
[ 130.8209550] pmap_enter: pmap 0x87b7f100 v 7f5b5000 p 7cda000 prot 5 wired 0 access 1
[ 130.8336620] pmap_enter: pmap 0x87b7f100 v 7f6a2000 p 7b47000 prot 3 wired 0 access 1
[ 130.8463760] pmap_enter: pmap 0x87b7f100 v 7f5ba000 p 7cd4000 prot 5 wired 0 access 0
[ 130.8590950] pmap_enter: pmap 0x87b7f100 v 7f5bb000 p 7cd3000 prot 5 wired 0 access 1
[ 130.8617880] pmap_simulref: bits 2 addr 7f581fa2
[ 130.8759560] pmap_enter: pmap 0x87b7f100 v 7f580000 p 7cf5000 prot 5 wired 0 access 0
[ 130.8886560] pmap_enter: pmap 0x87b7f100 v 7f582000 p 7cf3000 prot 5 wired 0 access 0
[ 130.8913730] pmap_enter: pmap 0x87b7f100 v 7f583000 p 7cf2000 prot 5 wired 0 access 0
[ 130.9040750] pmap_enter: pmap 0x87b7f100 v 7f581000 p 7cf4000 prot 5 wired 0 access 1
[ 130.9168110] pmap_simulref: bits 0 addr 7f57d4fc
[ 130.9209530] pmap_kenter_pa: va: 88bbd000, pa 7b45000, prot 3 ptp 0x8042eba0
[ 130.9347950] pmap_kenter_pa: va: 88bbe000, pa 7b44000, prot 3 ptp 0x8042ebc0
[ 130.9481090] pmap_kenter_pa: va: 88bbf000, pa 7b43000, prot 3 ptp 0x8042ebe0
[ 130.9514440] pmap_kenter_pa: va: 88bc0000, pa 7b42000, prot 3 ptp 0x8042ec00
[ 130.9647770] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 130.9647770] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 130.9647770] remaining pcbs:
[ 130.9647770] 0 pcbs left
[ 130.9796300] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 130.9796300] pcbs:
[ 130.9796300] 0x8b98d000
[ 130.9796300] 1 pcbs in pm_pcbs
[ 130.9971850] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 131.0090540] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 131.0109360] pmap_enter: pmap 0x87b7f100 v 7f6b4000 p 7b45000 prot 5 wired 0 access 1
[ 131.0236450] pmap_simulref: bits 2 addr 7f624c5c
[ 131.0378300] pmap_enter: pmap 0x87b7f100 v 7f621000 p 7c7c000 prot 5 wired 0 access 0
[ 131.0405160] pmap_enter: pmap 0x87b7f100 v 7f622000 p 7c7b000 prot 5 wired 0 access 0
[ 131.0532230] pmap_enter: pmap 0x87b7f100 v 7f623000 p 7c7a000 prot 5 wired 0 access 0
[ 131.0659330] pmap_enter: pmap 0x87b7f100 v 7f625000 p 7ccd000 prot 5 wired 0 access 0
[ 131.0786420] pmap_enter: pmap 0x87b7f100 v 7f626000 p 7ccc000 prot 5 wired 0 access 0
[ 131.0813470] pmap_enter: pmap 0x87b7f100 v 7f627000 p 7ccb000 prot 5 wired 0 access 0
[ 131.0940750] pmap_enter: pmap 0x87b7f100 v 7f628000 p 7cc9000 prot 5 wired 0 access 0
[ 131.1067660] pmap_enter: pmap 0x87b7f100 v 7f624000 p 7cce000 prot 5 wired 0 access 1
[ 131.1196310] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.1196310] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 131.1196310] remaining pcbs:
[ 131.1196310] 0 pcbs left
[ 131.1314110] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.1314110] pcbs:
[ 131.1314110] 0x8b98d000
[ 131.1314110] 1 pcbs in pm_pcbs
[ 131.1473920] pmap_simulref: bits 2 addr 7f5fa83a
[ 131.1515770] pmap_kenter_pa: va: 88bbd000, pa 7b41000, prot 3 ptp 0x8042eba0
[ 131.1651020] pmap_kenter_pa: va: 88bbe000, pa 7b40000, prot 3 ptp 0x8042ebc0
[ 131.1784230] pmap_kenter_pa: va: 88bbf000, pa 7b3f000, prot 3 ptp 0x8042ebe0
[ 131.1817560] pmap_kenter_pa: va: 88bc0000, pa 7b3e000, prot 3 ptp 0x8042ec00
[ 131.1950890] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.1950890] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 131.1950890] remaining pcbs:
[ 131.1950890] 0 pcbs left
[ 131.2196240] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.2196240] pcbs:
[ 131.2196240] 0x8b98d000
[ 131.2196240] 1 pcbs in pm_pcbs
[ 131.2346800] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 131.2465480] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 131.2584240] pmap_enter: pmap 0x87b7f100 v 7f5fa000 p 7b3f000 prot 5 wired 0 access 1
[ 131.2611370] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.2611370] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 131.2611370] remaining pcbs:
[ 131.2611370] 0 pcbs left
[ 131.2730720] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.2730720] pcbs:
[ 131.2730720] 0x8b98d000
[ 131.2730720] 1 pcbs in pm_pcbs
[ 131.2896420] pmap_enter: pmap 0x87b7f100 v 7f6b6000 p 7b43000 prot 5 wired 0 access 0
[ 131.3017570] pmap_enter: pmap 0x87b7f100 v 7f6b7000 p 7b42000 prot 5 wired 0 access 0
[ 131.3144730] pmap_kenter_pa: va: 88bbd000, pa 7b3d000, prot 3 ptp 0x8042eba0
[ 131.3278080] pmap_kenter_pa: va: 88bbe000, pa 7b3c000, prot 3 ptp 0x8042ebc0
[ 131.3311460] pmap_kenter_pa: va: 88bbf000, pa 7b3b000, prot 3 ptp 0x8042ebe0
[ 131.3444660] pmap_kenter_pa: va: 88bc0000, pa 7b3a000, prot 3 ptp 0x8042ec00
[ 131.3577980] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.3577980] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 131.3577980] remaining pcbs:
[ 131.3577980] 0 pcbs left
[ 131.3799010] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.3799010] pcbs:
[ 131.3799010] 0x8b98d000
[ 131.3799010] 1 pcbs in pm_pcbs
[ 131.3953640] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 131.4072200] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 131.4191000] pmap_enter: pmap 0x87b7f100 v 7f6b9000 p 7b3c000 prot 5 wired 0 access 1
[ 131.4218110] pmap_enter: pmap 0x87b7f100 v 7f6b8000 p 7b3d000 prot 5 wired 0 access 0
[ 131.4345170] pmap_enter: pmap 0x87b7f100 v 7f6ba000 p 7b3b000 prot 5 wired 0 access 0
[ 131.4472210] pmap_enter: pmap 0x87b7f100 v 7f6bb000 p 7b3a000 prot 5 wired 0 access 1
[ 131.4499460] pmap_simulref: bits 2 addr 7f5e7f08
[ 131.4640970] pmap_enter: pmap 0x87b7f100 v 7f5e4000 p 7c75000 prot 5 wired 0 access 0
[ 131.4768050] pmap_enter: pmap 0x87b7f100 v 7f5e5000 p 7c74000 prot 5 wired 0 access 0
[ 131.4896260] pmap_enter: pmap 0x87b7f100 v 7f5e6000 p 7c73000 prot 5 wired 0 access 0
[ 131.5022160] pmap_enter: pmap 0x87b7f100 v 7f5e8000 p 7cab000 prot 5 wired 0 access 0
[ 131.5149660] pmap_enter: pmap 0x87b7f100 v 7f5e9000 p 7caa000 prot 5 wired 0 access 0
[ 131.5276400] pmap_enter: pmap 0x87b7f100 v 7f5ea000 p 7ca9000 prot 5 wired 0 access 0
[ 131.5303470] pmap_enter: pmap 0x87b7f100 v 7f5eb000 p 7ca8000 prot 5 wired 0 access 0
[ 131.5430540] pmap_enter: pmap 0x87b7f100 v 7f5e7000 p 7c72000 prot 5 wired 0 access 1
[ 131.5557640] pmap_enter: pmap 0x87b7f100 v 7f6a3000 p 7b39000 prot 3 wired 0 access 1
[ 131.5684820] pmap_simulref: bits 0 addr 7f5e64cc
[ 131.5726540] pmap_enter: pmap 0x87b7f100 v 7f6a1000 p 7b38000 prot 3 wired 0 access 1
[ 131.5853510] pmap_simulref: bits 0 addr 7f64f492
[ 131.5996220] pmap_enter: pmap 0x87b7f100 v 7f6ae000 p 7b37000 prot 3 wired 0 access 1
[ 131.6122510] pmap_simulref: bits 0 addr 7f5806a8
[ 131.6263900] pmap_enter: pmap 0x87b7f100 v 7f656000 p 7cb5000 prot 5 wired 0 access 0
[ 131.6391180] pmap_enter: pmap 0x87b7f100 v 7f657000 p 7cb4000 prot 5 wired 0 access 0
[ 131.6418040] pmap_enter: pmap 0x87b7f100 v 7f658000 p 7c8b000 prot 5 wired 0 access 0
[ 131.6545100] pmap_enter: pmap 0x87b7f100 v 7f65a000 p 7c89000 prot 5 wired 0 access 0
[ 131.6672200] pmap_enter: pmap 0x87b7f100 v 7f65b000 p 7c88000 prot 5 wired 0 access 0
[ 131.6699280] pmap_enter: pmap 0x87b7f100 v 7f65c000 p 7c5f000 prot 5 wired 0 access 0
[ 131.6826340] pmap_enter: pmap 0x87b7f100 v 7f659000 p 7c8a000 prot 5 wired 0 access 1
[ 131.6953560] pmap_simulref: bits 0 addr 7f5e9526
[ 131.7096410] pmap_simulref: bits 0 addr 7f5e56d0
[ 131.7236810] pmap_simulref: bits 0 addr 7f58204a
[ 131.7378450] pmap_simulref: bits 0 addr 7f64ed08
[ 131.7420140] pmap_simulref: bits 0 addr 7f5e8fa8
[ 131.7561980] pmap_simulref: bits 0 addr 7f5ea022
[ 131.7603620] pmap_simulref: bits 2 addr 7f63687a
[ 131.7745190] pmap_enter: pmap 0x87b7f100 v 7f633000 p 7c1f000 prot 5 wired 0 access 0
[ 131.7872280] pmap_enter: pmap 0x87b7f100 v 7f634000 p 7c6c000 prot 5 wired 0 access 0
[ 131.7899380] pmap_enter: pmap 0x87b7f100 v 7f635000 p 7c6b000 prot 5 wired 0 access 0
[ 131.8026460] pmap_enter: pmap 0x87b7f100 v 7f637000 p 7c69000 prot 5 wired 0 access 0
[ 131.8153740] pmap_enter: pmap 0x87b7f100 v 7f638000 p 7caf000 prot 5 wired 0 access 0
[ 131.8280640] pmap_enter: pmap 0x87b7f100 v 7f639000 p 7cae000 prot 5 wired 0 access 0
[ 131.8307700] pmap_enter: pmap 0x87b7f100 v 7f63a000 p 7cad000 prot 5 wired 0 access 0
[ 131.8434740] pmap_enter: pmap 0x87b7f100 v 7f636000 p 7c6a000 prot 5 wired 0 access 1
[ 131.8561910] pmap_simulref: bits 0 addr 7f639158
[ 131.8603540] pmap_enter: pmap 0x87b7f100 v 7f400000 p 7b35000 prot 3 wired 0 access 1
[ 131.8731010] grow_p1: pm 0x87b7f100 len 1fa000
[ 131.8851470] update_pcbs(pmap=0x87b7f100)
[ 131.8920250] pmap_enter: pmap 0x87b7f100 v 7f401000 p 7b34000 prot 3 wired 0 access 2
[ 131.9047430] pmap_simulref: bits 0 addr 7f6baf1e
[ 131.9189210] pmap_enter: pmap 0x87b7f100 v 7f6c0000 p 7b5b000 prot 5 wired 0 access 0
[ 131.9216170] pmap_kenter_pa: va: 88bbd000, pa 7b33000, prot 3 ptp 0x8042eba0
[ 131.9349620] pmap_kenter_pa: va: 88bbe000, pa 7b32000, prot 3 ptp 0x8042ebc0
[ 131.9482750] pmap_kenter_pa: va: 88bbf000, pa 7b31000, prot 3 ptp 0x8042ebe0
[ 131.9516080] pmap_kenter_pa: va: 88bc0000, pa 7b30000, prot 3 ptp 0x8042ec00
[ 131.9649410] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.9649410] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 131.9649410] remaining pcbs:
[ 131.9649410] 0 pcbs left
[ 131.9796290] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 131.9796290] pcbs:
[ 131.9796290] 0x8b98d000
[ 131.9796290] 1 pcbs in pm_pcbs
[ 131.9972540] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 132.0091070] pmap_kremove: va: 88bbd000, len 4000, ptp 0x8042eba0
[ 132.0109890] pmap_enter: pmap 0x87b7f100 v 7f6bd000 p 7b32000 prot 5 wired 0 access 1
[ 132.0236970] pmap_enter: pmap 0x87b7f100 v 7f402000 p 7b2f000 prot 3 wired 0 access 2
[ 132.0364200] pmap_enter: pmap 0x87b7f100 v 7f645000 p 7cb2000 prot 5 wired 0 access 0
[ 132.0491130] pmap_enter: pmap 0x87b7f100 v 7f646000 p 7cb1000 prot 5 wired 0 access 0
[ 132.0518330] pmap_enter: pmap 0x87b7f100 v 7f647000 p 7cb0000 prot 5 wired 0 access 0
[ 132.0645280] pmap_enter: pmap 0x87b7f100 v 7f648000 p 7cc0000 prot 5 wired 0 access 0
[ 132.0772340] pmap_enter: pmap 0x87b7f100 v 7f644000 p 7cb3000 prot 5 wired 0 access 1
[ 132.0799440] pmap_simulref: bits 0 addr 7f6455a8
[ 132.0941100] pmap_enter: pmap 0x87b7f100 v 7f64a000 p 7cbe000 prot 5 wired 0 access 0
[ 132.1068190] pmap_enter: pmap 0x87b7f100 v 7f64b000 p 7cbd000 prot 5 wired 0 access 0
[ 132.1196310] pmap_enter: pmap 0x87b7f100 v 7f64c000 p 7c97000 prot 5 wired 0 access 0
[ 132.1322340] pmap_enter: pmap 0x87b7f100 v 7f64d000 p 7c96000 prot 5 wired 0 access 0
[ 132.1449420] pmap_enter: pmap 0x87b7f100 v 7f649000 p 7cbf000 prot 5 wired 0 access 1
[ 132.1576540] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 132.1576540] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 132.1576540] remaining pcbs:
[ 132.1576540] 0 pcbs left
[ 132.1696430] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 132.1696430] pcbs:
[ 132.1696430] 0x8b98d000
[ 132.1696430] 1 pcbs in pm_pcbs
[ 132.1855700] pmap_simulref: bits 0 addr 7f646ac0
[ 132.1897320] pmap_simulref: bits 0 addr 7f6483f0
[ 132.2039000] pmap_enter: pmap 0x87b7f100 v 7f403000 p 7b2e000 prot 3 wired 0 access 2
[ 132.2168170] pmap_enter: pmap 0x87b7f100 v 7f6be000 p 7b31000 prot 5 wired 0 access 0
[ 132.2296410] pmap_enter: pmap 0x87b7f100 v 7f6bf000 p 7b30000 prot 5 wired 0 access 0
[ 132.2422150] pmap_enter: pmap 0x87b7f100 v 7f6bc000 p 7b33000 prot 5 wired 0 access 1
[ 132.2549260] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 132.2549260] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 132.2549260] remaining pcbs:
[ 132.2549260] 0 pcbs left
[ 132.2549260] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 132.2549260] pcbs:
[ 132.2549260] 0x8b98d000
[ 132.2549260] 1 pcbs in pm_pcbs
[ 132.2628490] pmap_enter: pmap 0x87b7f100 v 7f404000 p 7b2d000 prot 3 wired 0 access 2
[ 132.2759940] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 132.2759940] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
[ 132.2759940] remaining pcbs:
[ 132.2759940] 0 pcbs left
[ 132.2879060] pmap_activate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
[ 132.2879060] pcbs:
[ 132.2879060] 0x8b98d000
[ 132.2879060] 1 pcbs in pm_pcbs
[ 132.2939120] pmap_simulref: bits 0 addr 7f6b8d00
[ 132.3080690] pmap_enter: pmap 0x87b7f100 v 7f588000 p 7cbc000 prot 5 wired 0 access 0
[ 132.3107820] pmap_enter: pmap 0x87b7f100 v 7f58a000 p 7cba000 prot 5 wired 0 access 0
[ 132.3234800] pmap_enter: pmap 0x87b7f100 v 7f58b000 p 7cb9000 prot 5 wired 0 access 0
[ 132.3361850] pmap_enter: pmap 0x87b7f100 v 7f589000 p 7cbb000 prot 5 wired 0 access 1
[ 132.3488950] pmap_enter: pmap 0x87b7f100 v 7f69f000 p 7b2c000 prot 3 wired 0 access 1
[ 132.3516280] pmap_simulref: bits 0 addr 7f65513b
[ 132.3657710] pmap_enter: pmap 0x87b7f100 v 7f6b5000 p 7b44000 prot 5 wired 0 access 1
[ 132.3784830] pmap_enter: pmap 0x87b7f100 v 7f5d5000 p 7bc8000 prot 5 wired 0 access 0
[ 132.3812100] pmap_enter: pmap 0x87b7f100 v 7f5d6000 p 7bc7000 prot 5 wired 0 access 0
[ 132.3939070] pmap_enter: pmap 0x87b7f100 v 7f5d7000 p 7bc6000 prot 5 wired 0 access 0
[ 132.4066160] pmap_enter: pmap 0x87b7f100 v 7f5d8000 p 7baa000 prot 5 wired 0 access 1
[ 132.4196420] pmap_enter: pmap 0x87b7f100 v 7f40c000 p 7b2b000 prot 3 wired 0 access 2
[ 132.4325840] pmap_enter: pmap 0x87b7f100 v 7f405000 p 7b2a000 prot 3 wired 0 access 2
[ 132.4474450] pmap_simulref: bits 0 addr 112d2
[ 132.4589660] pmap_enter: pmap 0x87b7f100 v 7f406000 p 7b29000 prot 3 wired 0 access 2
[ 132.4616710] pmap_simulref: bits 0 addr 7f6b7f9a
[ 132.4758600] pmap_enter: pmap 0x87b7f100 v 7f408000 p 7b28000 prot 3 wired 0 access 2
[ 132.4885460] pmap_enter: pmap 0x87b7f100 v 7f40a000 p 7b27000 prot 3 wired 0 access 2
[ 132.4912970] pmap_simulref: bits 0 addr 7f64b3ac
[ 132.5068180] pmap_simulref: bits 0 addr 7f64ae5a
[ 132.5109730] pmap_simulref: bits 0 addr 7f5eb412
[ 132.5251420] pmap_enter: pmap 0x87b7f100 v 7f6a4000 p 7b26000 prot 3 wired 0 access 2
[ 132.5378670] pmap_enter: pmap 0x87b7f100 v 7f6a5000 p 7b25000 prot 3 wired 0 access 2
[ 132.5405600] pmap_simulref: bits 0 addr 7f647d98
t_[ 132.5547240] pmap_simulref: bits 2 addr 7f5a8974
l[ 132.5609800] pmap_enter: pmap 0x87b7f100 v 7f5a9000 p 7bcc000 prot 5 wired 0 access 0
w[ 132.5747230] pmap_enter: pmap 0x87b7f100 v 7f5aa000 p 7bcb000 prot 5 wired 0 access 0
p[ 132.5884710] pmap_enter: pmap 0x87b7f100 v 7f5ab000 p 7bca000 prot 5 wired 0 access 0
_[ 132.5922440] pmap_enter: pmap 0x87b7f100 v 7f5ac000 p 7c92000 prot 5 wired 0 access 0
c[ 132.6059730] pmap_enter: pmap 0x87b7f100 v 7f5a8000 p 7bcd000 prot 5 wired 0 access 1
r[ 132.6097440] pmap_simulref: bits 6 addr 7f411fe4
e[ 132.6249360] pmap_enter: pmap 0x87b7f100 v 7f411000 p 7b24000 prot 3 wired 0 access 2
a[ 132.6386910] pmap_kenter_pa: va: 8b98f000, pa 7b22000, prot 3 ptp 0x8048a5e0
t[ 132.6430640] pmap_kenter_pa: va: 8b990000, pa 7b21000, prot 3 ptp 0x8048a600
e[ 132.6574460] pmap_activate: l 0x87e16a40 pmap 0x87b7f100 pcb 0x8b98f000 pm_count 1
:[ 132.6680580] pcbs:
 [ 132.6720120] 0x8b98f000
W[ 132.6811780] 0x8b98d000
A[ 132.6903440] 2 pcbs in pm_pcbs
R[ 132.7068050] pmap_simulref: bits 6 addr 0
NI[ 132.7147410] pmap_deactivate: l 0x87e167c0 pmap 0x87b7f100 pcb 0x8b98d000 pm_count 1
N[ 132.7284830] pmap_remove_pcb(pmap=0x87b7f100, pcb=0x8b98d000)
G[ 132.7372190] remaining pcbs:
:[ 132.7415950] 0x8b98f000
 [ 132.7507610] 1 pcbs left
R[ 132.7609690] pmap_activate: l 0x87e167c0 pmap 0x802aff64 pcb 0x8b98d000 pm_count 6
u[ 132.7716140] pcbs:
n[ 132.7855520] 0x8b98d000
n[ 132.7947190] 0x8afc4000
i[ 132.8038860] 0x8afc2000
n[ 132.8130670] 0x8afc0000
g[ 132.8222210] 0x8afbe000
 [ 132.8313970] 5 pcbs in pm_pcbs
t[ 132.8478420] pmap_protect: pmap 0x87b7f100, start 10000, end 12000, prot 0
e[ 132.8501310] pmap_protect: pmap 0x87b7f100, start 21000, end 100000, prot 0
s[ 132.8634730] pmap_protect: pmap 0x87b7f100, start 7f400000, end 7f410000, prot 0
t[ 132.8720140] pmap_protect: pmap 0x87b7f100, start 7f410000, end 7f500000, prot 0
 [ 132.8805540] pmap_protect: pmap 0x87b7f100, start 7f550000, end 7f687000, prot 0
ca[ 132.8996330] pmap_protect: pmap 0x87b7f100, start 7f696000, end 7f69e000, prot 0
s[ 132.9186950] pmap_protect: pmap 0x87b7f100, start 7f69e000, end 7f6af000, prot 0
e[ 132.9272250] pmap_protect: pmap 0x87b7f100, start 7f6b0000, end 7f6c1000, prot 0
s[ 132.9357630] pmap_protect: pmap 0x87b7f100, start 7f6d0000, end 7f6d2000, prot 0
 [ 132.9443040] pmap_protect: pmap 0x87b7f100, start 7f6d7000, end 7f6d8000, prot 0
w[ 132.9528570] pmap_protect: pmap 0x87b7f100, start 7f6d8000, end 7f6e0000, prot 0
i[ 132.9613890] pmap_protect: pmap 0x87b7f100, start 7f6e0000, end 7f6ee000, prot 0
t[ 132.9699310] pmap_protect: pmap 0x87b7f100, start 7f6fd000, end 7f6fe000, prot 0
h[ 132.9884710] pmap_protect: pmap 0x87b7f100, start 7f6fe000, end 7f6ff000, prot 0
o[ 132.9970130] pmap_protect: pmap 0x87b7f100, start 7f6ff000, end 7f700000, prot 0
u[ 133.0055540] pmap_protect: pmap 0x87b7f100, start 7ff80000, end 80000000, prot 0
t a[ 133.0141260] pmap_destroy: pmap 0x87b7f100
t[ 133.0251510] pmap_destroy(pmap=0x87b7f100) pmap->pm_pcbs = 0x8b98f000
f[ 133.0322210] remaining pcbs:
-[ 133.0465930] pcb 0x8b98f000 using pmap 0x87b7f100
r[ 133.0528440] 1 pcbs left
uStopped in pid 57.57 (t_lwp_create) at  netbsd:cpu_Debugger+0x15:       mfpr    
$18, r0
db> 



Home | Main Index | Thread Index | Old Index