Android-x86
Fork
Spenden

  • R/O
  • HTTP
  • SSH
  • HTTPS

kernel: Commit

kernel


Commit MetaInfo

Revision8ad6a539db436d682c423fc7188a759400b238b4 (tree)
Zeit2019-06-11 19:22:49
AutorChris Wilson <chris@chri...>
CommiterGreg Kroah-Hartman

Log Message

drm/i915: Fix I915_EXEC_RING_MASK

commit d90c06d57027203f73021bb7ddb30b800d65c636 upstream.

This was supposed to be a mask of all known rings, but it is being used
by execbuffer to filter out invalid rings, and so is instead mapping high
unused values onto valid rings. Instead of a mask of all known rings,
we need it to be the mask of all possible rings.

Fixes: 549f7365820a ("drm/i915: Enable SandyBridge blitter ring")
Fixes: de1add360522 ("drm/i915: Decouple execbuf uAPI from internal implementation")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: <stable@vger.kernel.org> # v4.6+
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190301140404.26690-21-chris@chris-wilson.co.uk
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Ändern Zusammenfassung

Diff

--- a/include/uapi/drm/i915_drm.h
+++ b/include/uapi/drm/i915_drm.h
@@ -756,7 +756,7 @@ struct drm_i915_gem_execbuffer2 {
756756 __u32 num_cliprects;
757757 /** This is a struct drm_clip_rect *cliprects */
758758 __u64 cliprects_ptr;
759-#define I915_EXEC_RING_MASK (7<<0)
759+#define I915_EXEC_RING_MASK (0x3f)
760760 #define I915_EXEC_DEFAULT (0<<0)
761761 #define I915_EXEC_RENDER (1<<0)
762762 #define I915_EXEC_BSD (2<<0)
Show on old repository browser