* Determine whether the attributes specified by a page table entry match those * being tracked by the current range. */
| 7072 | * being tracked by the current range. |
| 7073 | */ |
| 7074 | static bool |
| 7075 | sysctl_kmaps_match(struct pmap_kernel_map_range *range, pt_entry_t attrs) |
| 7076 | { |
| 7077 | |
| 7078 | return (range->attrs == attrs); |
| 7079 | } |
| 7080 | |
| 7081 | static void |
| 7082 | sysctl_kmaps_reinit(struct pmap_kernel_map_range *range, vm_offset_t va, |
no outgoing calls
no test coverage detected