Iterator to walk over all allocated nodes
drm_mm_for_each_node(entry, mm);
entry
drm_mm_node structure to assign to in each iteration step
mm
drm_mm allocator to walk
This iterator walks over all nodes in the range allocator. It is implemented with list_for_each, so not save against removal of elements.
Jesse Barnes <[email protected]>
Intel Corporation,
Initial version
Laurent Pinchart <[email protected]>
Ideas on board SPRL,
Driver internals
Daniel Vetter <[email protected]>
Intel Corporation,
Contributions all over the place