https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=231064
--- Comment #3 from Andrew Turner <[email protected]> --- You can try excluding that physical memory from the map by calling arm_physmem_exclude_region from initarm. It takes the start address, length, and the EXFLAG_NOALLOC flag, e.g. arm_physmem_exclude_region(0x10000000, 0x01020000, EXFLAG_NOALLOC). If you put it just after pmap_bootstrap we can still access the memory via the DMAP to see what data is being put into the range. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
