diff options
author | Maarten Lankhorst | 2021-06-10 09:01:51 +0200 |
---|---|---|
committer | Maarten Lankhorst | 2021-06-11 10:53:18 +0200 |
commit | f425821b946847282708121600fffc20344183a0 (patch) | |
tree | 54a3f7de2813eb03ab94bbeaa2ccf7efa0f56cb2 /include | |
parent | 2e53d7c1147a2751e959c53970c61b7ae33e1ecb (diff) |
drm/vma: Add a driver_private member to vma_node.
This allows drivers to distinguish between different types of vma_node's.
The readonly flag was unused and is thus removed.
This is a temporary solution, until i915 is converted completely to
use ttm for bo's.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Acked-by: Daniel Vetter <daniel@ffwll.ch> #irc
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210610070152.572423-4-thomas.hellstrom@linux.intel.com
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/drm_vma_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_vma_manager.h b/include/drm/drm_vma_manager.h index 76ac5e97a559..4f8c35206f7c 100644 --- a/include/drm/drm_vma_manager.h +++ b/include/drm/drm_vma_manager.h @@ -53,7 +53,7 @@ struct drm_vma_offset_node { rwlock_t vm_lock; struct drm_mm_node vm_node; struct rb_root vm_files; - bool readonly:1; + void *driver_private; }; struct drm_vma_offset_manager { |