mirror of https://gitee.com/openkylin/linux.git
drm/i915: Remove obj->pin_mappable
The obj->pin_mappable flag only exists for debug purposes and is a hindrance that is mistreated with rotated GGTT views. For debug purposes, it suffices to mark objects with pin_display as being of note. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
2def4ad99b
commit
30154650b8
|
@ -160,9 +160,9 @@ describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
|
|||
}
|
||||
if (obj->stolen)
|
||||
seq_printf(m, " (stolen: %08llx)", obj->stolen->start);
|
||||
if (obj->pin_mappable || obj->fault_mappable) {
|
||||
if (obj->pin_display || obj->fault_mappable) {
|
||||
char s[3], *t = s;
|
||||
if (obj->pin_mappable)
|
||||
if (obj->pin_display)
|
||||
*t++ = 'p';
|
||||
if (obj->fault_mappable)
|
||||
*t++ = 'f';
|
||||
|
@ -458,7 +458,7 @@ static int i915_gem_object_info(struct seq_file *m, void* data)
|
|||
size += i915_gem_obj_ggtt_size(obj);
|
||||
++count;
|
||||
}
|
||||
if (obj->pin_mappable) {
|
||||
if (obj->pin_display) {
|
||||
mappable_size += i915_gem_obj_ggtt_size(obj);
|
||||
++mappable_count;
|
||||
}
|
||||
|
|
|
@ -1963,7 +1963,6 @@ struct drm_i915_gem_object {
|
|||
* accurate mappable working set.
|
||||
*/
|
||||
unsigned int fault_mappable:1;
|
||||
unsigned int pin_mappable:1;
|
||||
unsigned int pin_display:1;
|
||||
|
||||
/*
|
||||
|
|
|
@ -4255,9 +4255,6 @@ i915_gem_object_do_pin(struct drm_i915_gem_object *obj,
|
|||
WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
|
||||
|
||||
vma->pin_count++;
|
||||
if (flags & PIN_MAPPABLE)
|
||||
obj->pin_mappable |= true;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -4295,8 +4292,7 @@ i915_gem_object_ggtt_unpin_view(struct drm_i915_gem_object *obj,
|
|||
WARN_ON(vma->pin_count == 0);
|
||||
WARN_ON(!i915_gem_obj_ggtt_bound_view(obj, view));
|
||||
|
||||
if (--vma->pin_count == 0 && view->type == I915_GGTT_VIEW_NORMAL)
|
||||
obj->pin_mappable = false;
|
||||
--vma->pin_count;
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
Loading…
Reference in New Issue