Skip to content

Commit 44e4c56

Browse files
aravind-idrodrigovivi
authored andcommitted
drm/i915: Initialize the obj flags for shmem objects
Obj flags for shmem objects is not being set correctly. Fixes in setting BO_ALLOC_USER flag which applies to shmem objs as well. v2: Add fixes tag (Tvrtko, Matt A) Fixes: 13d29c8 ("drm/i915/ehl: unconditionally flush the pages on acquire") Cc: <stable@vger.kernel.org> # v5.15+ Cc: Matthew Auld <matthew.auld@intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> Signed-off-by: Aravind Iddamsetty <aravind.iddamsetty@intel.com> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> [tursulin: Grouped all tags together.] Link: https://patchwork.freedesktop.org/patch/msgid/20230203135205.4051149-1-aravind.iddamsetty@intel.com (cherry picked from commit bca0d1d) Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
1 parent 251e8c5 commit 44e4c56

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/i915/gem/i915_gem_shmem.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ static int shmem_object_init(struct intel_memory_region *mem,
579579
mapping_set_gfp_mask(mapping, mask);
580580
GEM_BUG_ON(!(mapping_gfp_mask(mapping) & __GFP_RECLAIM));
581581

582-
i915_gem_object_init(obj, &i915_gem_shmem_ops, &lock_class, 0);
582+
i915_gem_object_init(obj, &i915_gem_shmem_ops, &lock_class, flags);
583583
obj->mem_flags |= I915_BO_FLAG_STRUCT_PAGE;
584584
obj->write_domain = I915_GEM_DOMAIN_CPU;
585585
obj->read_domains = I915_GEM_DOMAIN_CPU;

0 commit comments

Comments
 (0)