Expand description
VMA region walker — shared abstraction for Linux walkers.
Provides for_each_task_vma, which encapsulates the repeated pattern of
reading mm_struct.mmap and walking the VMA linked list via vm_next.
Any walker that needs to inspect VMAs for a single task can delegate to
this function instead of reimplementing the linked-list traversal.
Structs§
- VmaEntry
- Data read from a single
vm_area_structentry.
Functions§
- for_
each_ task_ vma - Walk every VMA for a single task and call
callbackfor each entry.