Insert an pre-initialized node
int drm_mm_reserve_node(struct drm_mm * mm, struct drm_mm_node * node);
mm
drm_mm allocator to insert node into
node
drm_mm_node to insert
This functions inserts an already set-up drm_mm_node into the allocator, meaning that start, size and color must be set by the caller. This is useful to initialize the allocator with preallocated objects which must be set-up before the range allocator can be set-up, e.g. when taking over a firmware framebuffer.
0 on success, -ENOSPC if there's no hole where node is.
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