drm_vma_offset_lookup — Find node in offset space
struct drm_vma_offset_node * drm_vma_offset_lookup ( | struct drm_vma_offset_manager * mgr, |
unsigned long start, | |
unsigned long pages) ; |
mgr
Manager object
start
Start address for object (page-based)
pages
Size of object (page-based)
Find a node given a start address and object size. This returns the _best_
match for the given node. That is, start
may point somewhere into a valid
region and the given node will be returned, as long as the node spans the
whole requested area (given the size in number of pages as pages
).