]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/i915/gem: Refactor tests on obj->ops->flags
authorChris Wilson <chris@chris-wilson.co.uk>
Wed, 2 Oct 2019 12:30:14 +0000 (13:30 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Wed, 2 Oct 2019 14:30:44 +0000 (15:30 +0100)
We repeat obj->ops->flags in our object checks, so pull that into its
own little helper for clarity.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191002123014.1545-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/gem/i915_gem_object.h

index aec05f967d9d740a7be8108fd5e4d00d8296ff50..53c7069ba3e892e00ceb588c7f903c796555bc77 100644 (file)
@@ -134,34 +134,41 @@ i915_gem_object_is_readonly(const struct drm_i915_gem_object *obj)
        return obj->base.vma_node.readonly;
 }
 
+static inline bool
+i915_gem_object_type_has(const struct drm_i915_gem_object *obj,
+                        unsigned long flags)
+{
+       return obj->ops->flags & flags;
+}
+
 static inline bool
 i915_gem_object_has_struct_page(const struct drm_i915_gem_object *obj)
 {
-       return obj->ops->flags & I915_GEM_OBJECT_HAS_STRUCT_PAGE;
+       return i915_gem_object_type_has(obj, I915_GEM_OBJECT_HAS_STRUCT_PAGE);
 }
 
 static inline bool
 i915_gem_object_is_shrinkable(const struct drm_i915_gem_object *obj)
 {
-       return obj->ops->flags & I915_GEM_OBJECT_IS_SHRINKABLE;
+       return i915_gem_object_type_has(obj, I915_GEM_OBJECT_IS_SHRINKABLE);
 }
 
 static inline bool
 i915_gem_object_is_proxy(const struct drm_i915_gem_object *obj)
 {
-       return obj->ops->flags & I915_GEM_OBJECT_IS_PROXY;
+       return i915_gem_object_type_has(obj, I915_GEM_OBJECT_IS_PROXY);
 }
 
 static inline bool
 i915_gem_object_never_bind_ggtt(const struct drm_i915_gem_object *obj)
 {
-       return obj->ops->flags & I915_GEM_OBJECT_NO_GGTT;
+       return i915_gem_object_type_has(obj, I915_GEM_OBJECT_NO_GGTT);
 }
 
 static inline bool
 i915_gem_object_needs_async_cancel(const struct drm_i915_gem_object *obj)
 {
-       return obj->ops->flags & I915_GEM_OBJECT_ASYNC_CANCEL;
+       return i915_gem_object_type_has(obj, I915_GEM_OBJECT_ASYNC_CANCEL);
 }
 
 static inline bool