Expand description
I/O memory resource region enumeration.
Enumerates I/O memory resource regions from the iomem_resource kernel
structure. Shows system memory layout, ACPI regions, PCI MMIO, firmware
areas. Useful for understanding hardware layout and detecting suspicious
memory-mapped regions. Equivalent to /proc/iomem from memory.
The kernel maintains a tree of struct resource rooted at iomem_resource.
Each resource has start, end, name, flags, and pointers to child
and sibling forming a tree of nested memory regions.
Re-exports§
pub use crate::heuristics::classify_iomem;
Structs§
- IoMem
Region - Information about a single I/O memory resource region.
Functions§
- walk_
iomem_ regions - Walk I/O memory resource regions from the
iomem_resourcekernel structure.