drm/vmwgfx: move the require_exist handling together
authorEmil Velikov <emil.velikov@collabora.com>
Fri, 1 Nov 2019 13:03:09 +0000 (13:03 +0000)
committerThomas Hellstrom <thellstrom@vmware.com>
Wed, 15 Jan 2020 10:46:58 +0000 (11:46 +0100)
Move the render_client hunk for require_exist alongside the rest.
Keeping all the reasons why an existing object is needed, in a single
place makes it easier to follow.

Cc: VMware Graphics <linux-graphics-maintainer@vmware.com>
Cc: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
drivers/gpu/drm/vmwgfx/vmwgfx_surface.c

index 32b9131..590bde9 100644 (file)
@@ -934,16 +934,12 @@ vmw_surface_handle_reference(struct vmw_private *dev_priv,
        uint32_t handle;
        struct ttm_base_object *base;
        int ret;
-       bool require_exist = false;
 
        if (handle_type == DRM_VMW_HANDLE_PRIME) {
                ret = ttm_prime_fd_to_handle(tfile, u_handle, &handle);
                if (unlikely(ret != 0))
                        return ret;
        } else {
-               if (unlikely(drm_is_render_client(file_priv)))
-                       require_exist = true;
-
                handle = u_handle;
        }
 
@@ -960,6 +956,8 @@ vmw_surface_handle_reference(struct vmw_private *dev_priv,
        }
 
        if (handle_type != DRM_VMW_HANDLE_PRIME) {
+               bool require_exist = false;
+
                user_srf = container_of(base, struct vmw_user_surface,
                                        prime.base);
 
@@ -971,6 +969,9 @@ vmw_surface_handle_reference(struct vmw_private *dev_priv,
                    user_srf->master != file_priv->master)
                        require_exist = true;
 
+               if (unlikely(drm_is_render_client(file_priv)))
+                       require_exist = true;
+
                ret = ttm_ref_object_add(tfile, base, TTM_REF_USAGE, NULL,
                                         require_exist);
                if (unlikely(ret != 0)) {