Add open-file to list of allowed users
int drm_vma_node_allow(struct drm_vma_offset_node * node, struct file * filp);
node
Node to modify
filp
Open file to add
Add filp to the list of allowed open-files for this node. If filp is already on this list, the ref-count is incremented.
The list of allowed-users is preserved across drm_vma_offset_add and drm_vma_offset_remove calls. You may even call it if the node is currently not added to any offset-manager.
You must remove all open-files the same number of times as you added them before destroying the node. Otherwise, you will leak memory.
This is locked against concurrent access internally.
0 on success, negative error code on internal failure (out-of-mem)
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