MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_map_range_valid

Function vm_map_range_valid

freebsd/vm/vm_map.h:267–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265}
266
267static inline bool
268vm_map_range_valid(vm_map_t map, vm_offset_t start, vm_offset_t end)
269{
270 if (end < start)
271 return (false);
272 if (start < vm_map_min(map) || end > vm_map_max(map))
273 return (false);
274 return (true);
275}
276
277#endif /* KLD_MODULE */
278#endif /* _KERNEL */

Callers 8

vm_mmap.cFile · 0.85
kern_munmapFunction · 0.85
kern_madviseFunction · 0.85
vm_map_insertFunction · 0.85
vm_map_findFunction · 0.85
vm_map_stack_lockedFunction · 0.85
vm_map_range_valid_KBIFunction · 0.85

Calls 2

vm_map_minFunction · 0.85
vm_map_maxFunction · 0.85

Tested by

no test coverage detected