All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] drm/i915: stop using swiotlb
@ 2022-07-22 15:12 ` Robert Beckett
  0 siblings, 0 replies; 10+ messages in thread
From: Robert Beckett @ 2022-07-22 15:12 UTC (permalink / raw)
  To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
	David Airlie, Daniel Vetter
  Cc: kernel, Robert Beckett, Christoph Hellwig, Thomas Hellstrom,
	Matthew Auld, Tvrtko Ursulin, intel-gfx, dri-devel, linux-kernel

Calling swiotlb functions directly is nowadays considered harmful. See
https://lore.kernel.org/intel-gfx/20220711082614.GA29487@lst.de/

Replace swiotlb_max_segment() calls with dma_max_mapping_size().
In i915_gem_object_get_pages_internal() no longer consider max_segment
only if CONFIG_SWIOTLB is enabled. There can be other (iommu related)
causes of specific max segment sizes.

Cc: Christoph Hellwig <hch@lst.de>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Thomas Hellstrom <thomas.hellstrom@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>

v2: - restore UINT_MAX clamp in i915_sg_segment_size()
    - drop PAGE_SIZE check as it will always be >= PAGE_SIZE
v3: - actually clamp to UINT_MAX in i915_sg_segment_size()

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: Robert Beckett <bob.beckett@collabora.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_internal.c | 19 ++++---------------
 drivers/gpu/drm/i915/gem/i915_gem_shmem.c    |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_ttm.c      |  4 ++--
 drivers/gpu/drm/i915/gem/i915_gem_userptr.c  |  2 +-
 drivers/gpu/drm/i915/i915_scatterlist.h      | 16 +++-------------
 5 files changed, 11 insertions(+), 32 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_internal.c b/drivers/gpu/drm/i915/gem/i915_gem_internal.c
index c698f95af15f..24f37658f1bb 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_internal.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_internal.c
@@ -6,7 +6,6 @@
 
 #include <linux/scatterlist.h>
 #include <linux/slab.h>
-#include <linux/swiotlb.h>
 
 #include "i915_drv.h"
 #include "i915_gem.h"
@@ -38,22 +37,12 @@ static int i915_gem_object_get_pages_internal(struct drm_i915_gem_object *obj)
 	struct scatterlist *sg;
 	unsigned int sg_page_sizes;
 	unsigned int npages;
-	int max_order;
+	int max_order = MAX_ORDER;
+	unsigned int max_segment;
 	gfp_t gfp;
 
-	max_order = MAX_ORDER;
-#ifdef CONFIG_SWIOTLB
-	if (is_swiotlb_active(obj->base.dev->dev)) {
-		unsigned int max_segment;
-
-		max_segment = swiotlb_max_segment();
-		if (max_segment) {
-			max_segment = max_t(unsigned int, max_segment,
-					    PAGE_SIZE) >> PAGE_SHIFT;
-			max_order = min(max_order, ilog2(max_segment));
-		}
-	}
-#endif
+	max_segment = i915_sg_segment_size(i915->drm.dev) >> PAGE_SHIFT;
+	max_order = min(max_order, ilog2(max_segment));
 
 	gfp = GFP_KERNEL | __GFP_HIGHMEM | __GFP_RECLAIMABLE;
 	if (IS_I965GM(i915) || IS_I965G(i915)) {
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
index 4eed3dd90ba8..34b9c76cd8e6 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
@@ -194,7 +194,7 @@ static int shmem_get_pages(struct drm_i915_gem_object *obj)
 	struct intel_memory_region *mem = obj->mm.region;
 	struct address_space *mapping = obj->base.filp->f_mapping;
 	const unsigned long page_count = obj->base.size / PAGE_SIZE;
-	unsigned int max_segment = i915_sg_segment_size();
+	unsigned int max_segment = i915_sg_segment_size(i915->drm.dev);
 	struct sg_table *st;
 	struct sgt_iter sgt_iter;
 	struct page *page;
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
index 5a5cf332d8a5..7a828c9c0f6d 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
@@ -189,7 +189,7 @@ static int i915_ttm_tt_shmem_populate(struct ttm_device *bdev,
 	struct drm_i915_private *i915 = container_of(bdev, typeof(*i915), bdev);
 	struct intel_memory_region *mr = i915->mm.regions[INTEL_MEMORY_SYSTEM];
 	struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
-	const unsigned int max_segment = i915_sg_segment_size();
+	const unsigned int max_segment = i915_sg_segment_size(i915->drm.dev);
 	const size_t size = (size_t)ttm->num_pages << PAGE_SHIFT;
 	struct file *filp = i915_tt->filp;
 	struct sgt_iter sgt_iter;
@@ -568,7 +568,7 @@ static struct i915_refct_sgt *i915_ttm_tt_get_st(struct ttm_tt *ttm)
 	ret = sg_alloc_table_from_pages_segment(st,
 			ttm->pages, ttm->num_pages,
 			0, (unsigned long)ttm->num_pages << PAGE_SHIFT,
-			i915_sg_segment_size(), GFP_KERNEL);
+			i915_sg_segment_size(i915_tt->dev), GFP_KERNEL);
 	if (ret) {
 		st->sgl = NULL;
 		return ERR_PTR(ret);
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_userptr.c b/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
index 094f06b4ce33..dfc35905dba2 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
@@ -129,7 +129,7 @@ static void i915_gem_object_userptr_drop_ref(struct drm_i915_gem_object *obj)
 static int i915_gem_userptr_get_pages(struct drm_i915_gem_object *obj)
 {
 	const unsigned long num_pages = obj->base.size >> PAGE_SHIFT;
-	unsigned int max_segment = i915_sg_segment_size();
+	unsigned int max_segment = i915_sg_segment_size(obj->base.dev->dev);
 	struct sg_table *st;
 	unsigned int sg_page_sizes;
 	struct page **pvec;
diff --git a/drivers/gpu/drm/i915/i915_scatterlist.h b/drivers/gpu/drm/i915/i915_scatterlist.h
index 9ddb3e743a3e..48a8ce67371a 100644
--- a/drivers/gpu/drm/i915/i915_scatterlist.h
+++ b/drivers/gpu/drm/i915/i915_scatterlist.h
@@ -9,7 +9,7 @@
 
 #include <linux/pfn.h>
 #include <linux/scatterlist.h>
-#include <linux/swiotlb.h>
+#include <linux/dma-mapping.h>
 
 #include "i915_gem.h"
 
@@ -127,19 +127,9 @@ static inline unsigned int i915_sg_dma_sizes(struct scatterlist *sg)
 	return page_sizes;
 }
 
-static inline unsigned int i915_sg_segment_size(void)
+static inline unsigned int i915_sg_segment_size(struct device *dev)
 {
-	unsigned int size = swiotlb_max_segment();
-
-	if (size == 0)
-		size = UINT_MAX;
-
-	size = rounddown(size, PAGE_SIZE);
-	/* swiotlb_max_segment_size can return 1 byte when it means one page. */
-	if (size < PAGE_SIZE)
-		size = PAGE_SIZE;
-
-	return size;
+	return min_t(size_t, UINT_MAX, dma_max_mapping_size(dev));
 }
 
 bool i915_sg_trim(struct sg_table *orig_st);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH v3] drm/i915: stop using swiotlb
@ 2022-07-22 15:12 ` Robert Beckett
  0 siblings, 0 replies; 10+ messages in thread
From: Robert Beckett @ 2022-07-22 15:12 UTC (permalink / raw)
  To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
	David Airlie, Daniel Vetter
  Cc: Robert Beckett, Tvrtko Ursulin, intel-gfx, linux-kernel,
	dri-devel, Thomas Hellstrom, Matthew Auld, kernel,
	Christoph Hellwig

Calling swiotlb functions directly is nowadays considered harmful. See
https://lore.kernel.org/intel-gfx/20220711082614.GA29487@lst.de/

Replace swiotlb_max_segment() calls with dma_max_mapping_size().
In i915_gem_object_get_pages_internal() no longer consider max_segment
only if CONFIG_SWIOTLB is enabled. There can be other (iommu related)
causes of specific max segment sizes.

Cc: Christoph Hellwig <hch@lst.de>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Thomas Hellstrom <thomas.hellstrom@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>

v2: - restore UINT_MAX clamp in i915_sg_segment_size()
    - drop PAGE_SIZE check as it will always be >= PAGE_SIZE
v3: - actually clamp to UINT_MAX in i915_sg_segment_size()

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: Robert Beckett <bob.beckett@collabora.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_internal.c | 19 ++++---------------
 drivers/gpu/drm/i915/gem/i915_gem_shmem.c    |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_ttm.c      |  4 ++--
 drivers/gpu/drm/i915/gem/i915_gem_userptr.c  |  2 +-
 drivers/gpu/drm/i915/i915_scatterlist.h      | 16 +++-------------
 5 files changed, 11 insertions(+), 32 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_internal.c b/drivers/gpu/drm/i915/gem/i915_gem_internal.c
index c698f95af15f..24f37658f1bb 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_internal.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_internal.c
@@ -6,7 +6,6 @@
 
 #include <linux/scatterlist.h>
 #include <linux/slab.h>
-#include <linux/swiotlb.h>
 
 #include "i915_drv.h"
 #include "i915_gem.h"
@@ -38,22 +37,12 @@ static int i915_gem_object_get_pages_internal(struct drm_i915_gem_object *obj)
 	struct scatterlist *sg;
 	unsigned int sg_page_sizes;
 	unsigned int npages;
-	int max_order;
+	int max_order = MAX_ORDER;
+	unsigned int max_segment;
 	gfp_t gfp;
 
-	max_order = MAX_ORDER;
-#ifdef CONFIG_SWIOTLB
-	if (is_swiotlb_active(obj->base.dev->dev)) {
-		unsigned int max_segment;
-
-		max_segment = swiotlb_max_segment();
-		if (max_segment) {
-			max_segment = max_t(unsigned int, max_segment,
-					    PAGE_SIZE) >> PAGE_SHIFT;
-			max_order = min(max_order, ilog2(max_segment));
-		}
-	}
-#endif
+	max_segment = i915_sg_segment_size(i915->drm.dev) >> PAGE_SHIFT;
+	max_order = min(max_order, ilog2(max_segment));
 
 	gfp = GFP_KERNEL | __GFP_HIGHMEM | __GFP_RECLAIMABLE;
 	if (IS_I965GM(i915) || IS_I965G(i915)) {
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
index 4eed3dd90ba8..34b9c76cd8e6 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
@@ -194,7 +194,7 @@ static int shmem_get_pages(struct drm_i915_gem_object *obj)
 	struct intel_memory_region *mem = obj->mm.region;
 	struct address_space *mapping = obj->base.filp->f_mapping;
 	const unsigned long page_count = obj->base.size / PAGE_SIZE;
-	unsigned int max_segment = i915_sg_segment_size();
+	unsigned int max_segment = i915_sg_segment_size(i915->drm.dev);
 	struct sg_table *st;
 	struct sgt_iter sgt_iter;
 	struct page *page;
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
index 5a5cf332d8a5..7a828c9c0f6d 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
@@ -189,7 +189,7 @@ static int i915_ttm_tt_shmem_populate(struct ttm_device *bdev,
 	struct drm_i915_private *i915 = container_of(bdev, typeof(*i915), bdev);
 	struct intel_memory_region *mr = i915->mm.regions[INTEL_MEMORY_SYSTEM];
 	struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
-	const unsigned int max_segment = i915_sg_segment_size();
+	const unsigned int max_segment = i915_sg_segment_size(i915->drm.dev);
 	const size_t size = (size_t)ttm->num_pages << PAGE_SHIFT;
 	struct file *filp = i915_tt->filp;
 	struct sgt_iter sgt_iter;
@@ -568,7 +568,7 @@ static struct i915_refct_sgt *i915_ttm_tt_get_st(struct ttm_tt *ttm)
 	ret = sg_alloc_table_from_pages_segment(st,
 			ttm->pages, ttm->num_pages,
 			0, (unsigned long)ttm->num_pages << PAGE_SHIFT,
-			i915_sg_segment_size(), GFP_KERNEL);
+			i915_sg_segment_size(i915_tt->dev), GFP_KERNEL);
 	if (ret) {
 		st->sgl = NULL;
 		return ERR_PTR(ret);
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_userptr.c b/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
index 094f06b4ce33..dfc35905dba2 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
@@ -129,7 +129,7 @@ static void i915_gem_object_userptr_drop_ref(struct drm_i915_gem_object *obj)
 static int i915_gem_userptr_get_pages(struct drm_i915_gem_object *obj)
 {
 	const unsigned long num_pages = obj->base.size >> PAGE_SHIFT;
-	unsigned int max_segment = i915_sg_segment_size();
+	unsigned int max_segment = i915_sg_segment_size(obj->base.dev->dev);
 	struct sg_table *st;
 	unsigned int sg_page_sizes;
 	struct page **pvec;
diff --git a/drivers/gpu/drm/i915/i915_scatterlist.h b/drivers/gpu/drm/i915/i915_scatterlist.h
index 9ddb3e743a3e..48a8ce67371a 100644
--- a/drivers/gpu/drm/i915/i915_scatterlist.h
+++ b/drivers/gpu/drm/i915/i915_scatterlist.h
@@ -9,7 +9,7 @@
 
 #include <linux/pfn.h>
 #include <linux/scatterlist.h>
-#include <linux/swiotlb.h>
+#include <linux/dma-mapping.h>
 
 #include "i915_gem.h"
 
@@ -127,19 +127,9 @@ static inline unsigned int i915_sg_dma_sizes(struct scatterlist *sg)
 	return page_sizes;
 }
 
-static inline unsigned int i915_sg_segment_size(void)
+static inline unsigned int i915_sg_segment_size(struct device *dev)
 {
-	unsigned int size = swiotlb_max_segment();
-
-	if (size == 0)
-		size = UINT_MAX;
-
-	size = rounddown(size, PAGE_SIZE);
-	/* swiotlb_max_segment_size can return 1 byte when it means one page. */
-	if (size < PAGE_SIZE)
-		size = PAGE_SIZE;
-
-	return size;
+	return min_t(size_t, UINT_MAX, dma_max_mapping_size(dev));
 }
 
 bool i915_sg_trim(struct sg_table *orig_st);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Intel-gfx] [PATCH v3] drm/i915: stop using swiotlb
@ 2022-07-22 15:12 ` Robert Beckett
  0 siblings, 0 replies; 10+ messages in thread
From: Robert Beckett @ 2022-07-22 15:12 UTC (permalink / raw)
  To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
	David Airlie, Daniel Vetter
  Cc: intel-gfx, linux-kernel, dri-devel, Thomas Hellstrom,
	Matthew Auld, kernel, Christoph Hellwig

Calling swiotlb functions directly is nowadays considered harmful. See
https://lore.kernel.org/intel-gfx/20220711082614.GA29487@lst.de/

Replace swiotlb_max_segment() calls with dma_max_mapping_size().
In i915_gem_object_get_pages_internal() no longer consider max_segment
only if CONFIG_SWIOTLB is enabled. There can be other (iommu related)
causes of specific max segment sizes.

Cc: Christoph Hellwig <hch@lst.de>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Thomas Hellstrom <thomas.hellstrom@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>

v2: - restore UINT_MAX clamp in i915_sg_segment_size()
    - drop PAGE_SIZE check as it will always be >= PAGE_SIZE
v3: - actually clamp to UINT_MAX in i915_sg_segment_size()

Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: Robert Beckett <bob.beckett@collabora.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_internal.c | 19 ++++---------------
 drivers/gpu/drm/i915/gem/i915_gem_shmem.c    |  2 +-
 drivers/gpu/drm/i915/gem/i915_gem_ttm.c      |  4 ++--
 drivers/gpu/drm/i915/gem/i915_gem_userptr.c  |  2 +-
 drivers/gpu/drm/i915/i915_scatterlist.h      | 16 +++-------------
 5 files changed, 11 insertions(+), 32 deletions(-)

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_internal.c b/drivers/gpu/drm/i915/gem/i915_gem_internal.c
index c698f95af15f..24f37658f1bb 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_internal.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_internal.c
@@ -6,7 +6,6 @@
 
 #include <linux/scatterlist.h>
 #include <linux/slab.h>
-#include <linux/swiotlb.h>
 
 #include "i915_drv.h"
 #include "i915_gem.h"
@@ -38,22 +37,12 @@ static int i915_gem_object_get_pages_internal(struct drm_i915_gem_object *obj)
 	struct scatterlist *sg;
 	unsigned int sg_page_sizes;
 	unsigned int npages;
-	int max_order;
+	int max_order = MAX_ORDER;
+	unsigned int max_segment;
 	gfp_t gfp;
 
-	max_order = MAX_ORDER;
-#ifdef CONFIG_SWIOTLB
-	if (is_swiotlb_active(obj->base.dev->dev)) {
-		unsigned int max_segment;
-
-		max_segment = swiotlb_max_segment();
-		if (max_segment) {
-			max_segment = max_t(unsigned int, max_segment,
-					    PAGE_SIZE) >> PAGE_SHIFT;
-			max_order = min(max_order, ilog2(max_segment));
-		}
-	}
-#endif
+	max_segment = i915_sg_segment_size(i915->drm.dev) >> PAGE_SHIFT;
+	max_order = min(max_order, ilog2(max_segment));
 
 	gfp = GFP_KERNEL | __GFP_HIGHMEM | __GFP_RECLAIMABLE;
 	if (IS_I965GM(i915) || IS_I965G(i915)) {
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
index 4eed3dd90ba8..34b9c76cd8e6 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
@@ -194,7 +194,7 @@ static int shmem_get_pages(struct drm_i915_gem_object *obj)
 	struct intel_memory_region *mem = obj->mm.region;
 	struct address_space *mapping = obj->base.filp->f_mapping;
 	const unsigned long page_count = obj->base.size / PAGE_SIZE;
-	unsigned int max_segment = i915_sg_segment_size();
+	unsigned int max_segment = i915_sg_segment_size(i915->drm.dev);
 	struct sg_table *st;
 	struct sgt_iter sgt_iter;
 	struct page *page;
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
index 5a5cf332d8a5..7a828c9c0f6d 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
@@ -189,7 +189,7 @@ static int i915_ttm_tt_shmem_populate(struct ttm_device *bdev,
 	struct drm_i915_private *i915 = container_of(bdev, typeof(*i915), bdev);
 	struct intel_memory_region *mr = i915->mm.regions[INTEL_MEMORY_SYSTEM];
 	struct i915_ttm_tt *i915_tt = container_of(ttm, typeof(*i915_tt), ttm);
-	const unsigned int max_segment = i915_sg_segment_size();
+	const unsigned int max_segment = i915_sg_segment_size(i915->drm.dev);
 	const size_t size = (size_t)ttm->num_pages << PAGE_SHIFT;
 	struct file *filp = i915_tt->filp;
 	struct sgt_iter sgt_iter;
@@ -568,7 +568,7 @@ static struct i915_refct_sgt *i915_ttm_tt_get_st(struct ttm_tt *ttm)
 	ret = sg_alloc_table_from_pages_segment(st,
 			ttm->pages, ttm->num_pages,
 			0, (unsigned long)ttm->num_pages << PAGE_SHIFT,
-			i915_sg_segment_size(), GFP_KERNEL);
+			i915_sg_segment_size(i915_tt->dev), GFP_KERNEL);
 	if (ret) {
 		st->sgl = NULL;
 		return ERR_PTR(ret);
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_userptr.c b/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
index 094f06b4ce33..dfc35905dba2 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_userptr.c
@@ -129,7 +129,7 @@ static void i915_gem_object_userptr_drop_ref(struct drm_i915_gem_object *obj)
 static int i915_gem_userptr_get_pages(struct drm_i915_gem_object *obj)
 {
 	const unsigned long num_pages = obj->base.size >> PAGE_SHIFT;
-	unsigned int max_segment = i915_sg_segment_size();
+	unsigned int max_segment = i915_sg_segment_size(obj->base.dev->dev);
 	struct sg_table *st;
 	unsigned int sg_page_sizes;
 	struct page **pvec;
diff --git a/drivers/gpu/drm/i915/i915_scatterlist.h b/drivers/gpu/drm/i915/i915_scatterlist.h
index 9ddb3e743a3e..48a8ce67371a 100644
--- a/drivers/gpu/drm/i915/i915_scatterlist.h
+++ b/drivers/gpu/drm/i915/i915_scatterlist.h
@@ -9,7 +9,7 @@
 
 #include <linux/pfn.h>
 #include <linux/scatterlist.h>
-#include <linux/swiotlb.h>
+#include <linux/dma-mapping.h>
 
 #include "i915_gem.h"
 
@@ -127,19 +127,9 @@ static inline unsigned int i915_sg_dma_sizes(struct scatterlist *sg)
 	return page_sizes;
 }
 
-static inline unsigned int i915_sg_segment_size(void)
+static inline unsigned int i915_sg_segment_size(struct device *dev)
 {
-	unsigned int size = swiotlb_max_segment();
-
-	if (size == 0)
-		size = UINT_MAX;
-
-	size = rounddown(size, PAGE_SIZE);
-	/* swiotlb_max_segment_size can return 1 byte when it means one page. */
-	if (size < PAGE_SIZE)
-		size = PAGE_SIZE;
-
-	return size;
+	return min_t(size_t, UINT_MAX, dma_max_mapping_size(dev));
 }
 
 bool i915_sg_trim(struct sg_table *orig_st);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: stop using swiotlb (rev3)
  2022-07-22 15:12 ` Robert Beckett
  (?)
  (?)
@ 2022-07-22 15:53 ` Patchwork
  -1 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-07-22 15:53 UTC (permalink / raw)
  To: Robert Beckett; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: stop using swiotlb (rev3)
URL   : https://patchwork.freedesktop.org/series/106589/
State : warning

== Summary ==

Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.



^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: stop using swiotlb (rev3)
  2022-07-22 15:12 ` Robert Beckett
                   ` (2 preceding siblings ...)
  (?)
@ 2022-07-22 16:16 ` Patchwork
  -1 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2022-07-22 16:16 UTC (permalink / raw)
  To: Robert Beckett; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 11079 bytes --]

== Series Details ==

Series: drm/i915: stop using swiotlb (rev3)
URL   : https://patchwork.freedesktop.org/series/106589/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11935 -> Patchwork_106589v3
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html

Participating hosts (36 -> 39)
------------------------------

  Additional (7): bat-dg1-5 bat-adlm-1 bat-dg2-9 bat-adlp-6 bat-rplp-1 bat-rpls-1 bat-jsl-1 
  Missing    (4): fi-ctg-p8600 fi-kbl-x1275 fi-bdw-samus fi-hsw-4200u 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_106589v3:

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@gem_lmem_swapping@parallel-random-engines:
    - {bat-rplp-1}:       NOTRUN -> [SKIP][1] +19 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-rplp-1/igt@gem_lmem_swapping@parallel-random-engines.html

  
Known issues
------------

  Here are the changes found in Patchwork_106589v3 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@fbdev@read:
    - bat-dg1-5:          NOTRUN -> [SKIP][2] ([i915#2582]) +4 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@fbdev@read.html

  * igt@gem_mmap@basic:
    - bat-dg1-5:          NOTRUN -> [SKIP][3] ([i915#4083])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@gem_mmap@basic.html

  * igt@gem_tiled_fence_blits@basic:
    - bat-dg1-5:          NOTRUN -> [SKIP][4] ([i915#4077]) +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@gem_tiled_fence_blits@basic.html

  * igt@gem_tiled_pread_basic:
    - bat-dg1-5:          NOTRUN -> [SKIP][5] ([i915#4079]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@gem_tiled_pread_basic.html

  * igt@i915_pm_backlight@basic-brightness:
    - bat-dg1-5:          NOTRUN -> [SKIP][6] ([i915#1155])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_selftest@live@gem:
    - fi-pnv-d510:        NOTRUN -> [DMESG-FAIL][7] ([i915#4528])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/fi-pnv-d510/igt@i915_selftest@live@gem.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-5:          NOTRUN -> [DMESG-FAIL][8] ([i915#4494] / [i915#4957])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@requests:
    - fi-blb-e6850:       [PASS][9] -> [DMESG-FAIL][10] ([i915#4528])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/fi-blb-e6850/igt@i915_selftest@live@requests.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/fi-blb-e6850/igt@i915_selftest@live@requests.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - bat-dg1-5:          NOTRUN -> [INCOMPLETE][11] ([i915#6011])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@i915_suspend@basic-s2idle-without-i915.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - bat-dg1-5:          NOTRUN -> [SKIP][12] ([i915#4212]) +7 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@basic-y-tiled-legacy:
    - bat-dg1-5:          NOTRUN -> [SKIP][13] ([i915#4215])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html

  * igt@kms_busy@basic:
    - bat-dg1-5:          NOTRUN -> [SKIP][14] ([i915#1845] / [i915#4303])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@kms_busy@basic.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-bdw-5557u:       NOTRUN -> [SKIP][15] ([fdo#109271] / [fdo#111827])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/fi-bdw-5557u/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - bat-dg1-5:          NOTRUN -> [SKIP][16] ([fdo#111827]) +7 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-dg1-5:          NOTRUN -> [SKIP][17] ([fdo#109285])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@nonblocking-crc:
    - bat-dg1-5:          NOTRUN -> [SKIP][18] ([i915#4078]) +13 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@kms_pipe_crc_basic@nonblocking-crc.html

  * igt@kms_psr@sprite_plane_onoff:
    - bat-dg1-5:          NOTRUN -> [SKIP][19] ([i915#1072] / [i915#4078]) +3 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@kms_psr@sprite_plane_onoff.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-dg1-5:          NOTRUN -> [SKIP][20] ([i915#3555])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-flip:
    - bat-dg1-5:          NOTRUN -> [SKIP][21] ([i915#1845] / [i915#3708])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@prime_vgem@basic-fence-flip.html

  * igt@prime_vgem@basic-fence-read:
    - bat-dg1-5:          NOTRUN -> [SKIP][22] ([i915#3708]) +2 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@prime_vgem@basic-fence-read.html

  * igt@prime_vgem@basic-gtt:
    - bat-dg1-5:          NOTRUN -> [SKIP][23] ([i915#3708] / [i915#4077]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@prime_vgem@basic-gtt.html

  * igt@prime_vgem@basic-userptr:
    - bat-dg1-5:          NOTRUN -> [SKIP][24] ([i915#3708] / [i915#4873])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - bat-dg1-5:          NOTRUN -> [FAIL][25] ([i915#4312] / [i915#5257])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/bat-dg1-5/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@requests:
    - fi-pnv-d510:        [DMESG-FAIL][26] ([i915#4528]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/fi-pnv-d510/igt@i915_selftest@live@requests.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/fi-pnv-d510/igt@i915_selftest@live@requests.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-bdw-5557u:       [INCOMPLETE][28] ([i915#146]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/fi-bdw-5557u/igt@i915_suspend@basic-s3-without-i915.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/fi-bdw-5557u/igt@i915_suspend@basic-s3-without-i915.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#3003]: https://gitlab.freedesktop.org/drm/intel/issues/3003
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4303]: https://gitlab.freedesktop.org/drm/intel/issues/4303
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174
  [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
  [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
  [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011
  [i915#6380]: https://gitlab.freedesktop.org/drm/intel/issues/6380


Build changes
-------------

  * Linux: CI_DRM_11935 -> Patchwork_106589v3

  CI-20190529: 20190529
  CI_DRM_11935: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6594: 326629f105459f9bd201456a0454759628e6a43d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_106589v3: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ git://anongit.freedesktop.org/gfx-ci/linux


### Linux commits

3f0eff518bb2 drm/i915: stop using swiotlb

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html

[-- Attachment #2: Type: text/html, Size: 11662 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: stop using swiotlb (rev3)
  2022-07-22 15:12 ` Robert Beckett
                   ` (3 preceding siblings ...)
  (?)
@ 2022-07-22 18:05 ` Patchwork
  2022-07-22 19:21   ` Robert Beckett
  -1 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2022-07-22 18:05 UTC (permalink / raw)
  To: Robert Beckett; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 48705 bytes --]

== Series Details ==

Series: drm/i915: stop using swiotlb (rev3)
URL   : https://patchwork.freedesktop.org/series/106589/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11935_full -> Patchwork_106589v3_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_106589v3_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_106589v3_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

Participating hosts (10 -> 12)
------------------------------

  Additional (2): shard-rkl shard-tglu 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_106589v3_full:

### IGT changes ###

#### Possible regressions ####

  * igt@gem_mmap_offset@clear:
    - shard-tglb:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb7/igt@gem_mmap_offset@clear.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb1/igt@gem_mmap_offset@clear.html
    - shard-iclb:         [PASS][3] -> [INCOMPLETE][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_mmap_offset@clear.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@gem_mmap_offset@clear.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@gem_mmap_offset@clear:
    - {shard-rkl}:        NOTRUN -> [INCOMPLETE][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-rkl-6/igt@gem_mmap_offset@clear.html
    - {shard-tglu}:       NOTRUN -> [INCOMPLETE][6] +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglu-1/igt@gem_mmap_offset@clear.html

  
New tests
---------

  New tests have been introduced between CI_DRM_11935_full and Patchwork_106589v3_full:

### New IGT tests (27) ###

  * igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.66] s

  * igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.62] s

  * igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.59] s

  * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.62] s

  * igt@kms_flip@bo-too-big-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.39] s

  * igt@kms_flip@bo-too-big@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.41] s

  * igt@kms_flip@busy-flip@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.62] s

  * igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.60] s

  * igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [2.72] s

  * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [8.03] s

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.60] s

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.57] s

  * igt@kms_flip@flip-vs-fences-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.62] s

  * igt@kms_flip@flip-vs-fences@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.66] s

  * igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [30.02] s

  * igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.60] s

  * igt@kms_flip@flip-vs-panning@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.62] s

  * igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.59] s

  * igt@kms_flip@flip-vs-rmfb@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.60] s

  * igt@kms_flip@modeset-vs-vblank-race@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [2.81] s

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.72] s

  * igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.76] s

  * igt@kms_flip@plain-flip-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.60] s

  * igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.74] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.61] s

  * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [0.59] s

  * igt@kms_flip@wf_vblank-ts-check@d-hdmi-a1:
    - Statuses : 1 pass(s)
    - Exec time: [7.76] s

  

Known issues
------------

  Here are the changes found in Patchwork_106589v3_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@feature_discovery@display-4x:
    - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#1839])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@feature_discovery@display-4x.html

  * igt@gem_eio@unwedge-stress:
    - shard-iclb:         [PASS][8] -> [TIMEOUT][9] ([i915#3070])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@gem_eio@unwedge-stress.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-glk:          [PASS][10] -> [FAIL][11] ([i915#2846])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-deadline.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][12] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-tglb:         NOTRUN -> [SKIP][15] ([fdo#109313])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_huc_copy@huc-copy:
    - shard-tglb:         [PASS][16] -> [SKIP][17] ([i915#2190])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb5/igt@gem_huc_copy@huc-copy.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-skl:          NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4613])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@verify-random:
    - shard-tglb:         NOTRUN -> [SKIP][19] ([i915#4613])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
    - shard-tglb:         NOTRUN -> [SKIP][20] ([i915#4270])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglb:         NOTRUN -> [SKIP][21] ([i915#3297])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gen7_exec_parse@basic-allocation:
    - shard-tglb:         NOTRUN -> [SKIP][22] ([fdo#109289])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gen7_exec_parse@basic-allocation.html

  * igt@i915_pm_backlight@fade_with_suspend:
    - shard-skl:          [PASS][23] -> [INCOMPLETE][24] ([i915#4939])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@i915_pm_backlight@fade_with_suspend.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@i915_pm_backlight@fade_with_suspend.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglb:         NOTRUN -> [SKIP][25] ([fdo#111644] / [i915#1397] / [i915#2411])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_selftest@live@hangcheck:
    - shard-iclb:         [PASS][26] -> [INCOMPLETE][27] ([i915#6106])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb5/igt@i915_selftest@live@hangcheck.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@i915_selftest@live@hangcheck.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-skl:          [PASS][28] -> [INCOMPLETE][29] ([i915#4817] / [i915#4939])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@i915_suspend@fence-restore-tiled2untiled.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1:
    - shard-skl:          [PASS][30] -> [FAIL][31] ([i915#2521])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html

  * igt@kms_big_fb@4-tiled-16bpp-rotate-180:
    - shard-kbl:          NOTRUN -> [SKIP][32] ([fdo#109271]) +22 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-8bpp-rotate-180:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#5286]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-skl:          NOTRUN -> [SKIP][34] ([fdo#109271]) +81 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@y-tiled-32bpp-rotate-180:
    - shard-iclb:         [PASS][35] -> [FAIL][36] ([i915#5138])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
    - shard-glk:          [PASS][37] -> [FAIL][38] ([i915#1888] / [i915#5138])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-skl:          NOTRUN -> [FAIL][39] ([i915#3743])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#111615]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-skl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +3 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][42] ([i915#3689] / [i915#3886]) +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][43] ([i915#3689] / [i915#6095])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-kbl:          NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#3886])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][45] ([i915#3689]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#111615] / [i915#3689]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html

  * igt@kms_chamelium@dp-hpd-after-suspend:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_chamelium@dp-hpd-after-suspend.html

  * igt@kms_color_chamelium@pipe-a-ctm-negative:
    - shard-snb:          NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-negative.html

  * igt@kms_color_chamelium@pipe-b-ctm-green-to-red:
    - shard-kbl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html

  * igt@kms_color_chamelium@pipe-d-ctm-negative:
    - shard-skl:          NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +4 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_color_chamelium@pipe-d-ctm-negative.html

  * igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170:
    - shard-tglb:         NOTRUN -> [SKIP][51] ([i915#3359]) +7 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170.html

  * igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10:
    - shard-tglb:         NOTRUN -> [SKIP][52] ([i915#4462]) +7 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1:
    - shard-apl:          [PASS][53] -> [DMESG-WARN][54] ([i915#180]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
    - shard-glk:          [PASS][55] -> [FAIL][56] ([i915#2346])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html

  * igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled:
    - shard-tglb:         NOTRUN -> [SKIP][57] ([i915#5287])
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled.html

  * igt@kms_dsc@basic-dsc:
    - shard-snb:          NOTRUN -> [SKIP][58] ([fdo#109271]) +68 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_dsc@basic-dsc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-skl:          [PASS][59] -> [FAIL][60] ([i915#4767])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_fbcon_fbt@psr-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@2x-plain-flip:
    - shard-tglb:         NOTRUN -> [SKIP][61] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip@2x-plain-flip.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-kbl:          [PASS][62] -> [DMESG-WARN][63] ([i915#180]) +8 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_flip@wf_vblank-ts-check@a-edp1:
    - shard-skl:          [PASS][64] -> [FAIL][65] ([i915#2122]) +2 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_flip@wf_vblank-ts-check@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#2672])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][67] ([i915#2672]) +7 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][68] ([i915#2672] / [i915#3555]) +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
    - shard-tglb:         NOTRUN -> [SKIP][69] ([fdo#109280] / [fdo#111825]) +5 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-tglb:         NOTRUN -> [FAIL][70] ([i915#160]) +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
    - shard-kbl:          [PASS][71] -> [FAIL][72] ([i915#1188])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
    - shard-skl:          [PASS][73] -> [FAIL][74] ([fdo#108145] / [i915#265])
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-skl:          NOTRUN -> [FAIL][75] ([fdo#108145] / [i915#265])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-kbl:          NOTRUN -> [FAIL][76] ([i915#265])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
    - shard-tglb:         NOTRUN -> [SKIP][77] ([i915#2920])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-skl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-tglb:         NOTRUN -> [FAIL][79] ([i915#132] / [i915#3467])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-iclb:         [PASS][80] -> [SKIP][81] ([fdo#109441])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-iclb:         [PASS][82] -> [SKIP][83] ([i915#5519])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
    - shard-tglb:         NOTRUN -> [SKIP][84] ([fdo#111615] / [i915#5289])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
    - shard-skl:          [PASS][85] -> [DMESG-WARN][86] ([i915#1982])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html

  * igt@kms_vblank@crtc-id:
    - shard-snb:          [PASS][87] -> [SKIP][88] ([fdo#109271])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@kms_vblank@crtc-id.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_vblank@crtc-id.html

  * igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][89] ([i915#2530])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html

  * igt@prime_nv_pcopy@test3_1:
    - shard-tglb:         NOTRUN -> [SKIP][90] ([fdo#109291])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@prime_nv_pcopy@test3_1.html

  * igt@sysfs_clients@recycle:
    - shard-skl:          NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@sysfs_clients@recycle.html

  
#### Possible fixes ####

  * igt@gem_busy@close-race:
    - shard-snb:          [TIMEOUT][92] ([i915#5748]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb4/igt@gem_busy@close-race.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@gem_busy@close-race.html

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-iclb:         [TIMEOUT][94] ([i915#3070]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_eio@in-flight-contexts-immediate.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_eio@kms:
    - shard-tglb:         [FAIL][96] ([i915#5784]) -> [PASS][97] +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb8/igt@gem_eio@kms.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_eio@kms.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [SKIP][98] ([i915#4525]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-kbl:          [SKIP][100] ([fdo#109271]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@gem_exec_fair@basic-none-share@rcs0.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [FAIL][102] ([i915#2842]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-glk:          [FAIL][104] ([i915#2842]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-skl:          [INCOMPLETE][106] ([i915#5129]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@gem_workarounds@suspend-resume-fd.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_selftest@perf@engine_cs:
    - shard-snb:          [SKIP][108] ([fdo#109271]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@i915_selftest@perf@engine_cs.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@i915_selftest@perf@engine_cs.html

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [INCOMPLETE][110] ([i915#3614] / [i915#4817]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@i915_suspend@forcewake.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@i915_suspend@forcewake.html

  * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
    - shard-skl:          [FAIL][112] ([i915#2521]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][114] ([i915#79]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@busy-flip@c-edp1:
    - shard-skl:          [FAIL][116] ([i915#5726]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@busy-flip@c-edp1.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@kms_flip@busy-flip@c-edp1.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-skl:          [FAIL][118] ([i915#79]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
    - shard-tglb:         [DMESG-WARN][120] ([i915#2411] / [i915#2867]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb2/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html

  * igt@kms_flip@plain-flip-fb-recreate@a-edp1:
    - shard-skl:          [FAIL][122] ([i915#2122]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
    - shard-skl:          [FAIL][124] ([fdo#108145] / [i915#265]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
    - shard-iclb:         [SKIP][126] ([i915#5176]) -> [PASS][127] +1 similar issue
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html

  * igt@kms_psr@psr2_sprite_mmap_cpu:
    - shard-iclb:         [SKIP][128] ([fdo#109441]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_cpu.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html

  * igt@perf@polling:
    - shard-skl:          [FAIL][130] ([i915#1542]) -> [PASS][131]
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@perf@polling.html

  * igt@perf@polling-parameterized:
    - shard-skl:          [FAIL][132] ([i915#5639]) -> [PASS][133]
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling-parameterized.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@perf@polling-parameterized.html

  * igt@prime_self_import@export-vs-gem_close-race:
    - shard-tglb:         [FAIL][134] ([i915#6481]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb1/igt@prime_self_import@export-vs-gem_close-race.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb8/igt@prime_self_import@export-vs-gem_close-race.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [FAIL][136] ([i915#6117]) -> [SKIP][137] ([i915#4525])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-iclb:         [FAIL][138] ([i915#2852]) -> [FAIL][139] ([i915#2842])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs0:
    - shard-kbl:          [FAIL][140] ([i915#2842]) -> [SKIP][141] ([fdo#109271])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-skl:          [SKIP][142] ([fdo#109271] / [i915#1888]) -> [SKIP][143] ([fdo#109271]) +1 similar issue
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
    - shard-iclb:         [SKIP][144] ([fdo#111068] / [i915#658]) -> [SKIP][145] ([i915#2920]) +1 similar issue
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-iclb:         [SKIP][146] ([i915#2920]) -> [SKIP][147] ([i915#658]) +1 similar issue
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-iclb:         [SKIP][148] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [FAIL][149] ([i915#5939])
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_psr2_su@page_flip-nv12.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_su@page_flip-nv12.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][150], [FAIL][151]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][152], [FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@runner@aborted.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@runner@aborted.html
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@runner@aborted.html
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
  [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254
  [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
  [i915#160]: https://gitlab.freedesktop.org/drm/intel/issues/160
  [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2852]: https://gitlab.freedesktop.org/drm/intel/issues/2852
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
  [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
  [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
  [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
  [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
  [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3690]: https://gitlab.freedesktop.org/drm/intel/issues/3690
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4462]: https://gitlab.freedesktop.org/drm/intel/issues/4462
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
  [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
  [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939
  [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941
  [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
  [i915#5129]: https://gitlab.freedesktop.org/drm/intel/issues/5129
  [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639
  [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
  [i915#5726]: https://gitlab.freedesktop.org/drm/intel/issues/5726
  [i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
  [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6106]: https://gitlab.freedesktop.org/drm/intel/issues/6106
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6474]: https://gitlab.freedesktop.org/drm/intel/issues/6474
  [i915#6481]: https://gitlab.freedesktop.org/drm/intel/issues/6481
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79


Build changes
-------------

  * Linux: CI_DRM_11935 -> Patchwork_106589v3

  CI-20190529: 20190529
  CI_DRM_11935: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6594: 326629f105459f9bd201456a0454759628e6a43d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_106589v3: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html

[-- Attachment #2: Type: text/html, Size: 51038 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915: stop using swiotlb (rev3)
  2022-07-22 18:05 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-07-22 19:21   ` Robert Beckett
  2022-07-25  8:23     ` Tvrtko Ursulin
  0 siblings, 1 reply; 10+ messages in thread
From: Robert Beckett @ 2022-07-22 19:21 UTC (permalink / raw)
  To: intel-gfx, Tvrtko Ursulin



On 22/07/2022 19:05, Patchwork wrote:
> *Patch Details*
> *Series:*	drm/i915: stop using swiotlb (rev3)
> *URL:*	https://patchwork.freedesktop.org/series/106589/ 
> <https://patchwork.freedesktop.org/series/106589/>
> *State:*	failure
> *Details:* 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html 
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html>
> 
> 
>   CI Bug Log - changes from CI_DRM_11935_full -> Patchwork_106589v3_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with Patchwork_106589v3_full absolutely 
> need to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_106589v3_full, please notify your bug team to 
> allow them
> to document this new failure mode, which will reduce false positives in CI.
> 
> 
>     Participating hosts (10 -> 12)
> 
> Additional (2): shard-rkl shard-tglu
> 
> 
>     Possible new issues
> 
> Here are the unknown changes that may have been introduced in 
> Patchwork_106589v3_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   *
> 
>     igt@gem_mmap_offset@clear:
> 
>       o
> 
>         shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb7/igt@gem_mmap_offset@clear.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb1/igt@gem_mmap_offset@clear.html>
> 

I've no idea why CI is seeing a NULL deref here.
Testing locally on my TGL board, it passes fine.
I think I would need some help testing this on other systems to track 
this down.

>       o
> 
>         shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_mmap_offset@clear.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@gem_mmap_offset@clear.html>
> 
> 
>         Suppressed
> 
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
> 
>   *
> 
>     igt@gem_mmap_offset@clear:
> 
>       o
> 
>         {shard-rkl}: NOTRUN -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-rkl-6/igt@gem_mmap_offset@clear.html>
> 
>       o
> 
>         {shard-tglu}: NOTRUN -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglu-1/igt@gem_mmap_offset@clear.html>
>         +1 similar issue
> 
> 
>     New tests
> 
> New tests have been introduced between CI_DRM_11935_full and 
> Patchwork_106589v3_full:
> 
> 
>       New IGT tests (27)
> 
>   *
> 
>     igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.66] s
>   *
> 
>     igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.62] s
>   *
> 
>     igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.59] s
>   *
> 
>     igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.62] s
>   *
> 
>     igt@kms_flip@bo-too-big-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.39] s
>   *
> 
>     igt@kms_flip@bo-too-big@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.41] s
>   *
> 
>     igt@kms_flip@busy-flip@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.62] s
>   *
> 
>     igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.60] s
>   *
> 
>     igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [2.72] s
>   *
> 
>     igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [8.03] s
>   *
> 
>     igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.60] s
>   *
> 
>     igt@kms_flip@flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.57] s
>   *
> 
>     igt@kms_flip@flip-vs-fences-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.62] s
>   *
> 
>     igt@kms_flip@flip-vs-fences@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.66] s
>   *
> 
>     igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [30.02] s
>   *
> 
>     igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.60] s
>   *
> 
>     igt@kms_flip@flip-vs-panning@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.62] s
>   *
> 
>     igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.59] s
>   *
> 
>     igt@kms_flip@flip-vs-rmfb@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.60] s
>   *
> 
>     igt@kms_flip@modeset-vs-vblank-race@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [2.81] s
>   *
> 
>     igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.72] s
>   *
> 
>     igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.76] s
>   *
> 
>     igt@kms_flip@plain-flip-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.60] s
>   *
> 
>     igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.74] s
>   *
> 
>     igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.61] s
>   *
> 
>     igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.59] s
>   *
> 
>     igt@kms_flip@wf_vblank-ts-check@d-hdmi-a1:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.76] s
> 
> 
>     Known issues
> 
> Here are the changes found in Patchwork_106589v3_full that come from 
> known issues:
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@feature_discovery@display-4x:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@feature_discovery@display-4x.html>
>         (i915#1839 <https://gitlab.freedesktop.org/drm/intel/issues/1839>)
>   *
> 
>     igt@gem_eio@unwedge-stress:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@gem_eio@unwedge-stress.html>
>         -> TIMEOUT
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@unwedge-stress.html>
>         (i915#3070 <https://gitlab.freedesktop.org/drm/intel/issues/3070>)
>   *
> 
>     igt@gem_exec_fair@basic-deadline:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-deadline.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@gem_exec_fair@basic-deadline.html>
>         (i915#2846 <https://gitlab.freedesktop.org/drm/intel/issues/2846>)
>   *
> 
>     igt@gem_exec_fair@basic-none@vcs1:
> 
>       o shard-iclb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html>
>         (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>   *
> 
>     igt@gem_exec_fair@basic-pace@vecs0:
> 
>       o shard-kbl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html>
>         (i915#2842
>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1
>         similar issue
>   *
> 
>     igt@gem_exec_flush@basic-batch-kernel-default-cmd:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html>
>         (fdo#109313 <https://bugs.freedesktop.org/show_bug.cgi?id=109313>)
>   *
> 
>     igt@gem_huc_copy@huc-copy:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb5/igt@gem_huc_copy@huc-copy.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_huc_copy@huc-copy.html>
>         (i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
>   *
> 
>     igt@gem_lmem_swapping@heavy-verify-random-ccs:
> 
>       o shard-skl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>   *
> 
>     igt@gem_lmem_swapping@verify-random:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_lmem_swapping@verify-random.html>
>         (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>   *
> 
>     igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html>
>         (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
>   *
> 
>     igt@gem_userptr_blits@coherency-unsync:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_userptr_blits@coherency-unsync.html>
>         (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>)
>   *
> 
>     igt@gen7_exec_parse@basic-allocation:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gen7_exec_parse@basic-allocation.html>
>         (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
>   *
> 
>     igt@i915_pm_backlight@fade_with_suspend:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@i915_pm_backlight@fade_with_suspend.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@i915_pm_backlight@fade_with_suspend.html>
>         (i915#4939 <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
>   *
> 
>     igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html>
>         (fdo#111644
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111644> /
>         i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>
>         / i915#2411 <https://gitlab.freedesktop.org/drm/intel/issues/2411>)
>   *
> 
>     igt@i915_selftest@live@hangcheck:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb5/igt@i915_selftest@live@hangcheck.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@i915_selftest@live@hangcheck.html>
>         (i915#6106 <https://gitlab.freedesktop.org/drm/intel/issues/6106>)
>   *
> 
>     igt@i915_suspend@fence-restore-tiled2untiled:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@i915_suspend@fence-restore-tiled2untiled.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@i915_suspend@fence-restore-tiled2untiled.html>
>         (i915#4817
>         <https://gitlab.freedesktop.org/drm/intel/issues/4817> /
>         i915#4939 <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
>   *
> 
>     igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html>
>         (i915#2521 <https://gitlab.freedesktop.org/drm/intel/issues/2521>)
>   *
> 
>     igt@kms_big_fb@4-tiled-16bpp-rotate-180:
> 
>       o shard-kbl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +22
>         similar issues
>   *
> 
>     igt@kms_big_fb@4-tiled-8bpp-rotate-180:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html>
>         (i915#5286
>         <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1
>         similar issue
>   *
> 
>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
> 
>       o shard-skl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +81
>         similar issues
>   *
> 
>     igt@kms_big_fb@y-tiled-32bpp-rotate-180:
> 
>       o
> 
>         shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html>
>         (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
> 
>       o
> 
>         shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html>
>         (i915#1888
>         <https://gitlab.freedesktop.org/drm/intel/issues/1888> /
>         i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
> 
>   *
> 
>     igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
> 
>       o shard-skl: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html>
>         (i915#3743 <https://gitlab.freedesktop.org/drm/intel/issues/3743>)
>   *
> 
>     igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html>
>         (fdo#111615
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1
>         similar issue
>   *
> 
>     igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
> 
>       o shard-skl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#3886
>         <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3
>         similar issues
>   *
> 
>     igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html>
>         (i915#3689
>         <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
>         i915#3886
>         <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1
>         similar issue
>   *
> 
>     igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html>
>         (i915#3689
>         <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
>         i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>   *
> 
>     igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
> 
>       o shard-kbl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>   *
> 
>     igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html>
>         (i915#3689
>         <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1
>         similar issue
>   *
> 
>     igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html>
>         (fdo#111615
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>         i915#3689
>         <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1
>         similar issue
>   *
> 
>     igt@kms_chamelium@dp-hpd-after-suspend:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_chamelium@dp-hpd-after-suspend.html>
>         (fdo#109284
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3
>         similar issues
>   *
> 
>     igt@kms_color_chamelium@pipe-a-ctm-negative:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-negative.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
>         similar issues
>   *
> 
>     igt@kms_color_chamelium@pipe-b-ctm-green-to-red:
> 
>       o shard-kbl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
>   *
> 
>     igt@kms_color_chamelium@pipe-d-ctm-negative:
> 
>       o shard-skl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_color_chamelium@pipe-d-ctm-negative.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         fdo#111827
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
>         similar issues
>   *
> 
>     igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170.html>
>         (i915#3359
>         <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +7
>         similar issues
>   *
> 
>     igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html>
>         (i915#4462
>         <https://gitlab.freedesktop.org/drm/intel/issues/4462>) +7
>         similar issues
>   *
> 
>     igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html>
>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>         +1 similar issue
>   *
> 
>     igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
>         (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
>   *
> 
>     igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled.html>
>         (i915#5287 <https://gitlab.freedesktop.org/drm/intel/issues/5287>)
>   *
> 
>     igt@kms_dsc@basic-dsc:
> 
>       o shard-snb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_dsc@basic-dsc.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +68
>         similar issues
>   *
> 
>     igt@kms_fbcon_fbt@psr-suspend:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_fbcon_fbt@psr-suspend.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_fbcon_fbt@psr-suspend.html>
>         (i915#4767 <https://gitlab.freedesktop.org/drm/intel/issues/4767>)
>   *
> 
>     igt@kms_flip@2x-plain-flip:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip@2x-plain-flip.html>
>         (fdo#109274
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
>         fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>
>         / i915#3637
>         <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1
>         similar issue
>   *
> 
>     igt@kms_flip@flip-vs-suspend@a-dp1:
> 
>       o shard-kbl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_flip@flip-vs-suspend@a-dp1.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@kms_flip@flip-vs-suspend@a-dp1.html>
>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>         +8 similar issues
>   *
> 
>     igt@kms_flip@wf_vblank-ts-check@a-edp1:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_flip@wf_vblank-ts-check@a-edp1.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_flip@wf_vblank-ts-check@a-edp1.html>
>         (i915#2122
>         <https://gitlab.freedesktop.org/drm/intel/issues/2122>) +2
>         similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html>
>         (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html>
>         (i915#2672
>         <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +7
>         similar issues
>   *
> 
>     igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html>
>         (i915#2672
>         <https://gitlab.freedesktop.org/drm/intel/issues/2672> /
>         i915#3555
>         <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1
>         similar issue
>   *
> 
>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html>
>         (fdo#109280
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109280> /
>         fdo#111825
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +5
>         similar issues
>   *
> 
>     igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
> 
>       o shard-tglb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html>
>         (i915#160 <https://gitlab.freedesktop.org/drm/intel/issues/160>)
>         +1 similar issue
>   *
> 
>     igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
> 
>       o shard-kbl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html>
>         (i915#1188 <https://gitlab.freedesktop.org/drm/intel/issues/1188>)
>   *
> 
>     igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html>
>         (fdo#108145
>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>         <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>   *
> 
>     igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
> 
>       o shard-skl: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html>
>         (fdo#108145
>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>         <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>   *
> 
>     igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
> 
>       o shard-kbl: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html>
>         (i915#265 <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>   *
> 
>     igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html>
>         (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>   *
> 
>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
> 
>       o shard-skl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1
>         similar issue
>   *
> 
>     igt@kms_psr@psr2_primary_page_flip:
> 
>       o shard-tglb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr@psr2_primary_page_flip.html>
>         (i915#132 <https://gitlab.freedesktop.org/drm/intel/issues/132>
>         / i915#3467 <https://gitlab.freedesktop.org/drm/intel/issues/3467>)
>   *
> 
>     igt@kms_psr@psr2_sprite_blt:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_psr@psr2_sprite_blt.html>
>         (fdo#109441 <https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
>   *
> 
>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
>         (i915#5519 <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>   *
> 
>     igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html>
>         (fdo#111615
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>         i915#5289 <https://gitlab.freedesktop.org/drm/intel/issues/5289>)
>   *
> 
>     igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html>
>         (i915#1982 <https://gitlab.freedesktop.org/drm/intel/issues/1982>)
>   *
> 
>     igt@kms_vblank@crtc-id:
> 
>       o shard-snb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@kms_vblank@crtc-id.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_vblank@crtc-id.html>
>         (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>   *
> 
>     igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html>
>         (i915#2530 <https://gitlab.freedesktop.org/drm/intel/issues/2530>)
>   *
> 
>     igt@prime_nv_pcopy@test3_1:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@prime_nv_pcopy@test3_1.html>
>         (fdo#109291 <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
>   *
> 
>     igt@sysfs_clients@recycle:
> 
>       o shard-skl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@sysfs_clients@recycle.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
> 
> 
>         Possible fixes
> 
>   *
> 
>     igt@gem_busy@close-race:
> 
>       o shard-snb: TIMEOUT
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb4/igt@gem_busy@close-race.html>
>         (i915#5748
>         <https://gitlab.freedesktop.org/drm/intel/issues/5748>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@gem_busy@close-race.html>
>   *
> 
>     igt@gem_eio@in-flight-contexts-immediate:
> 
>       o shard-iclb: TIMEOUT
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_eio@in-flight-contexts-immediate.html>
>         (i915#3070
>         <https://gitlab.freedesktop.org/drm/intel/issues/3070>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@in-flight-contexts-immediate.html>
>   *
> 
>     igt@gem_eio@kms:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb8/igt@gem_eio@kms.html>
>         (i915#5784
>         <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_eio@kms.html>
>         +1 similar issue
>   *
> 
>     igt@gem_exec_balancer@parallel-keep-in-fence:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html>
>         (i915#4525
>         <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html>
>   *
> 
>     igt@gem_exec_fair@basic-none-share@rcs0:
> 
>       o shard-kbl: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@gem_exec_fair@basic-none-share@rcs0.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@gem_exec_fair@basic-none-share@rcs0.html>
>   *
> 
>     igt@gem_exec_fair@basic-none@vcs0:
> 
>       o shard-kbl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html>
>         (i915#2842
>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html>
>   *
> 
>     igt@gem_exec_fair@basic-throttle@rcs0:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html>
>         (i915#2842
>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html>
>   *
> 
>     igt@gem_workarounds@suspend-resume-fd:
> 
>       o shard-skl: INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@gem_workarounds@suspend-resume-fd.html>
>         (i915#5129
>         <https://gitlab.freedesktop.org/drm/intel/issues/5129>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@gem_workarounds@suspend-resume-fd.html>
>   *
> 
>     igt@i915_selftest@perf@engine_cs:
> 
>       o shard-snb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@i915_selftest@perf@engine_cs.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@i915_selftest@perf@engine_cs.html>
>   *
> 
>     igt@i915_suspend@forcewake:
> 
>       o shard-kbl: INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@i915_suspend@forcewake.html>
>         (i915#3614
>         <https://gitlab.freedesktop.org/drm/intel/issues/3614> /
>         i915#4817
>         <https://gitlab.freedesktop.org/drm/intel/issues/4817>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@i915_suspend@forcewake.html>
>   *
> 
>     igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
> 
>       o shard-skl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html>
>         (i915#2521
>         <https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html>
>   *
> 
>     igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html>
>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html>
>   *
> 
>     igt@kms_flip@busy-flip@c-edp1:
> 
>       o shard-skl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@busy-flip@c-edp1.html>
>         (i915#5726
>         <https://gitlab.freedesktop.org/drm/intel/issues/5726>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@kms_flip@busy-flip@c-edp1.html>
>   *
> 
>     igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
> 
>       o shard-skl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html>
>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>         -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html>
>   *
> 
>     igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
> 
>       o shard-tglb: DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb2/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html>
>         (i915#2411
>         <https://gitlab.freedesktop.org/drm/intel/issues/2411> /
>         i915#2867
>         <https://gitlab.freedesktop.org/drm/intel/issues/2867>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html>
>   *
> 
>     igt@kms_flip@plain-flip-fb-recreate@a-edp1:
> 
>       o shard-skl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html>
>         (i915#2122
>         <https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html>
>   *
> 
>     igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
> 
>       o shard-skl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html>
>         (fdo#108145
>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>         <https://gitlab.freedesktop.org/drm/intel/issues/265>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html>
>   *
> 
>     igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html>
>         (i915#5176
>         <https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html>
>         +1 similar issue
>   *
> 
>     igt@kms_psr@psr2_sprite_mmap_cpu:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_cpu.html>
>         (fdo#109441
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html>
>   *
> 
>     igt@perf@polling:
> 
>       o shard-skl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling.html>
>         (i915#1542
>         <https://gitlab.freedesktop.org/drm/intel/issues/1542>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@perf@polling.html>
>   *
> 
>     igt@perf@polling-parameterized:
> 
>       o shard-skl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling-parameterized.html>
>         (i915#5639
>         <https://gitlab.freedesktop.org/drm/intel/issues/5639>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@perf@polling-parameterized.html>
>   *
> 
>     igt@prime_self_import@export-vs-gem_close-race:
> 
>       o shard-tglb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb1/igt@prime_self_import@export-vs-gem_close-race.html>
>         (i915#6481
>         <https://gitlab.freedesktop.org/drm/intel/issues/6481>) -> PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb8/igt@prime_self_import@export-vs-gem_close-race.html>
> 
> 
>         Warnings
> 
>   *
> 
>     igt@gem_exec_balancer@parallel-ordering:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html>
>         (i915#6117
>         <https://gitlab.freedesktop.org/drm/intel/issues/6117>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html>
>         (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>)
>   *
> 
>     igt@gem_exec_fair@basic-none-rrul@rcs0:
> 
>       o shard-iclb: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
>         (i915#2852
>         <https://gitlab.freedesktop.org/drm/intel/issues/2852>) -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
>         (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>   *
> 
>     igt@gem_exec_fair@basic-pace@vcs0:
> 
>       o shard-kbl: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html>
>         (i915#2842
>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html>
>         (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>   *
> 
>     igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
> 
>       o shard-skl: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>         i915#1888
>         <https://gitlab.freedesktop.org/drm/intel/issues/1888>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html>
>         (fdo#109271
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1
>         similar issue
>   *
> 
>     igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html>
>         (fdo#111068
>         <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html>
>         (i915#2920
>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) +1
>         similar issue
>   *
> 
>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html>
>         (i915#2920
>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html>
>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>         +1 similar issue
>   *
> 
>     igt@kms_psr2_su@page_flip-nv12:
> 
>       o shard-iclb: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_psr2_su@page_flip-nv12.html>
>         (fdo#109642
>         <https://bugs.freedesktop.org/show_bug.cgi?id=109642> /
>         fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068>
>         / i915#658
>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_su@page_flip-nv12.html>
>         (i915#5939 <https://gitlab.freedesktop.org/drm/intel/issues/5939>)
>   *
> 
>     igt@runner@aborted:
> 
>       o shard-kbl: (FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@runner@aborted.html>,
>         FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@runner@aborted.html>)
>         (i915#3002
>         <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
>         i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
>         / i915#5257
>         <https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@runner@aborted.html>,
>         FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>,
>         FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>,
>         FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>,
>         FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>)
>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>
>         / i915#3002
>         <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
>         i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
>         / i915#5257 <https://gitlab.freedesktop.org/drm/intel/issues/5257>)
> 
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
> 
>     Build changes
> 
>   * Linux: CI_DRM_11935 -> Patchwork_106589v3
> 
> CI-20190529: 20190529
> CI_DRM_11935: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> IGT_6594: 326629f105459f9bd201456a0454759628e6a43d @ 
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_106589v3: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
> git://anongit.freedesktop.org/piglit
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915: stop using swiotlb (rev3)
  2022-07-22 19:21   ` Robert Beckett
@ 2022-07-25  8:23     ` Tvrtko Ursulin
  2022-07-25 14:13       ` Robert Beckett
  0 siblings, 1 reply; 10+ messages in thread
From: Tvrtko Ursulin @ 2022-07-25  8:23 UTC (permalink / raw)
  To: Robert Beckett, intel-gfx


On 22/07/2022 20:21, Robert Beckett wrote:
> On 22/07/2022 19:05, Patchwork wrote:
>> *Patch Details*
>> *Series:*    drm/i915: stop using swiotlb (rev3)
>> *URL:*    https://patchwork.freedesktop.org/series/106589/ 
>> <https://patchwork.freedesktop.org/series/106589/>
>> *State:*    failure
>> *Details:* 
>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html 
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html>
>>
>>
>>   CI Bug Log - changes from CI_DRM_11935_full -> Patchwork_106589v3_full
>>
>>
>>     Summary
>>
>> *FAILURE*
>>
>> Serious unknown changes coming with Patchwork_106589v3_full absolutely 
>> need to be
>> verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in Patchwork_106589v3_full, please notify your bug team to 
>> allow them
>> to document this new failure mode, which will reduce false positives 
>> in CI.
>>
>>
>>     Participating hosts (10 -> 12)
>>
>> Additional (2): shard-rkl shard-tglu
>>
>>
>>     Possible new issues
>>
>> Here are the unknown changes that may have been introduced in 
>> Patchwork_106589v3_full:
>>
>>
>>       IGT changes
>>
>>
>>         Possible regressions
>>
>>   *
>>
>>     igt@gem_mmap_offset@clear:
>>
>>       o
>>
>>         shard-tglb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb7/igt@gem_mmap_offset@clear.html> 
>>
>>         -> INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb1/igt@gem_mmap_offset@clear.html> 
>>
>>
> 
> I've no idea why CI is seeing a NULL deref here.
> Testing locally on my TGL board, it passes fine.
> I think I would need some help testing this on other systems to track 
> this down.

Is it possible that dma_direct_max_mapping_size can return a whole range 
of "unexpected" values akin to swiotlb_max_segment? Anything below 
PAGE_SIZE, including zero, would confuse the driver.

Oh..

   return min_t(size_t, UINT_MAX, dma_max_mapping_size(dev));

Wrap the min_t value in rounddown(..., PAGE_SIZE).

Regards,

Tvrtko

> 
>>       o
>>
>>         shard-iclb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_mmap_offset@clear.html> 
>>
>>         -> INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@gem_mmap_offset@clear.html> 
>>
>>
>>
>>         Suppressed
>>
>> The following results come from untrusted machines, tests, or statuses.
>> They do not affect the overall result.
>>
>>   *
>>
>>     igt@gem_mmap_offset@clear:
>>
>>       o
>>
>>         {shard-rkl}: NOTRUN -> INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-rkl-6/igt@gem_mmap_offset@clear.html> 
>>
>>
>>       o
>>
>>         {shard-tglu}: NOTRUN -> INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglu-1/igt@gem_mmap_offset@clear.html> 
>>
>>         +1 similar issue
>>
>>
>>     New tests
>>
>> New tests have been introduced between CI_DRM_11935_full and 
>> Patchwork_106589v3_full:
>>
>>
>>       New IGT tests (27)
>>
>>   *
>>
>>     igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.66] s
>>   *
>>
>>     igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.62] s
>>   *
>>
>>     igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.59] s
>>   *
>>
>>     igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.62] s
>>   *
>>
>>     igt@kms_flip@bo-too-big-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.39] s
>>   *
>>
>>     igt@kms_flip@bo-too-big@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.41] s
>>   *
>>
>>     igt@kms_flip@busy-flip@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.62] s
>>   *
>>
>>     igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.60] s
>>   *
>>
>>     igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [2.72] s
>>   *
>>
>>     igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [8.03] s
>>   *
>>
>>     igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.60] s
>>   *
>>
>>     igt@kms_flip@flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.57] s
>>   *
>>
>>     igt@kms_flip@flip-vs-fences-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.62] s
>>   *
>>
>>     igt@kms_flip@flip-vs-fences@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.66] s
>>   *
>>
>>     igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [30.02] s
>>   *
>>
>>     igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.60] s
>>   *
>>
>>     igt@kms_flip@flip-vs-panning@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.62] s
>>   *
>>
>>     igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.59] s
>>   *
>>
>>     igt@kms_flip@flip-vs-rmfb@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.60] s
>>   *
>>
>>     igt@kms_flip@modeset-vs-vblank-race@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [2.81] s
>>   *
>>
>>     igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.72] s
>>   *
>>
>>     igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.76] s
>>   *
>>
>>     igt@kms_flip@plain-flip-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.60] s
>>   *
>>
>>     igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.74] s
>>   *
>>
>>     
>> igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1: 
>>
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.61] s
>>   *
>>
>>     igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [0.59] s
>>   *
>>
>>     igt@kms_flip@wf_vblank-ts-check@d-hdmi-a1:
>>
>>       o Statuses : 1 pass(s)
>>       o Exec time: [7.76] s
>>
>>
>>     Known issues
>>
>> Here are the changes found in Patchwork_106589v3_full that come from 
>> known issues:
>>
>>
>>       IGT changes
>>
>>
>>         Issues hit
>>
>>   *
>>
>>     igt@feature_discovery@display-4x:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@feature_discovery@display-4x.html> 
>>
>>         (i915#1839 
>> <https://gitlab.freedesktop.org/drm/intel/issues/1839>)
>>   *
>>
>>     igt@gem_eio@unwedge-stress:
>>
>>       o shard-iclb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@gem_eio@unwedge-stress.html> 
>>
>>         -> TIMEOUT
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@unwedge-stress.html> 
>>
>>         (i915#3070 
>> <https://gitlab.freedesktop.org/drm/intel/issues/3070>)
>>   *
>>
>>     igt@gem_exec_fair@basic-deadline:
>>
>>       o shard-glk: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-deadline.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@gem_exec_fair@basic-deadline.html> 
>>
>>         (i915#2846 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2846>)
>>   *
>>
>>     igt@gem_exec_fair@basic-none@vcs1:
>>
>>       o shard-iclb: NOTRUN -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html> 
>>
>>         (i915#2842 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>>   *
>>
>>     igt@gem_exec_fair@basic-pace@vecs0:
>>
>>       o shard-kbl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html> 
>>
>>         (i915#2842
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1
>>         similar issue
>>   *
>>
>>     igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> 
>>
>>         (fdo#109313 
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109313>)
>>   *
>>
>>     igt@gem_huc_copy@huc-copy:
>>
>>       o shard-tglb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb5/igt@gem_huc_copy@huc-copy.html> 
>>
>>         -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_huc_copy@huc-copy.html> 
>>
>>         (i915#2190 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
>>   *
>>
>>     igt@gem_lmem_swapping@heavy-verify-random-ccs:
>>
>>       o shard-skl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>         i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>   *
>>
>>     igt@gem_lmem_swapping@verify-random:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_lmem_swapping@verify-random.html> 
>>
>>         (i915#4613 
>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>   *
>>
>>     igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> 
>>
>>         (i915#4270 
>> <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
>>   *
>>
>>     igt@gem_userptr_blits@coherency-unsync:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_userptr_blits@coherency-unsync.html> 
>>
>>         (i915#3297 
>> <https://gitlab.freedesktop.org/drm/intel/issues/3297>)
>>   *
>>
>>     igt@gen7_exec_parse@basic-allocation:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gen7_exec_parse@basic-allocation.html> 
>>
>>         (fdo#109289 
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
>>   *
>>
>>     igt@i915_pm_backlight@fade_with_suspend:
>>
>>       o shard-skl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@i915_pm_backlight@fade_with_suspend.html> 
>>
>>         -> INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@i915_pm_backlight@fade_with_suspend.html> 
>>
>>         (i915#4939 
>> <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
>>   *
>>
>>     igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> 
>>
>>         (fdo#111644
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111644> /
>>         i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>
>>         / i915#2411 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2411>)
>>   *
>>
>>     igt@i915_selftest@live@hangcheck:
>>
>>       o shard-iclb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb5/igt@i915_selftest@live@hangcheck.html> 
>>
>>         -> INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@i915_selftest@live@hangcheck.html> 
>>
>>         (i915#6106 
>> <https://gitlab.freedesktop.org/drm/intel/issues/6106>)
>>   *
>>
>>     igt@i915_suspend@fence-restore-tiled2untiled:
>>
>>       o shard-skl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@i915_suspend@fence-restore-tiled2untiled.html> 
>>
>>         -> INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@i915_suspend@fence-restore-tiled2untiled.html> 
>>
>>         (i915#4817
>>         <https://gitlab.freedesktop.org/drm/intel/issues/4817> /
>>         i915#4939 <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
>>   *
>>
>>     igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1:
>>
>>       o shard-skl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html> 
>>
>>         (i915#2521 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2521>)
>>   *
>>
>>     igt@kms_big_fb@4-tiled-16bpp-rotate-180:
>>
>>       o shard-kbl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +22
>>         similar issues
>>   *
>>
>>     igt@kms_big_fb@4-tiled-8bpp-rotate-180:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html> 
>>
>>         (i915#5286
>>         <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>>
>>       o shard-skl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +81
>>         similar issues
>>   *
>>
>>     igt@kms_big_fb@y-tiled-32bpp-rotate-180:
>>
>>       o
>>
>>         shard-iclb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>
>>         (i915#5138 
>> <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
>>
>>       o
>>
>>         shard-glk: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>
>>         (i915#1888
>>         <https://gitlab.freedesktop.org/drm/intel/issues/1888> /
>>         i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
>>
>>   *
>>
>>     igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>>
>>       o shard-skl: NOTRUN -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> 
>>
>>         (i915#3743 
>> <https://gitlab.freedesktop.org/drm/intel/issues/3743>)
>>   *
>>
>>     igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> 
>>
>>         (fdo#111615
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
>>
>>       o shard-skl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>         i915#3886
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3
>>         similar issues
>>   *
>>
>>     igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html> 
>>
>>         (i915#3689
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
>>         i915#3886
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html> 
>>
>>         (i915#3689
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
>>         i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>>   *
>>
>>     igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>>
>>       o shard-kbl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>         i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>>   *
>>
>>     igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html> 
>>
>>         (i915#3689
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html> 
>>
>>         (fdo#111615
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>>         i915#3689
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_chamelium@dp-hpd-after-suspend:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_chamelium@dp-hpd-after-suspend.html> 
>>
>>         (fdo#109284
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>>         fdo#111827
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3
>>         similar issues
>>   *
>>
>>     igt@kms_color_chamelium@pipe-a-ctm-negative:
>>
>>       o shard-snb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-negative.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>         fdo#111827
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
>>         similar issues
>>   *
>>
>>     igt@kms_color_chamelium@pipe-b-ctm-green-to-red:
>>
>>       o shard-kbl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>         fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
>>   *
>>
>>     igt@kms_color_chamelium@pipe-d-ctm-negative:
>>
>>       o shard-skl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_color_chamelium@pipe-d-ctm-negative.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>         fdo#111827
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
>>         similar issues
>>   *
>>
>>     igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170.html> 
>>
>>         (i915#3359
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +7
>>         similar issues
>>   *
>>
>>     igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html> 
>>
>>         (i915#4462
>>         <https://gitlab.freedesktop.org/drm/intel/issues/4462>) +7
>>         similar issues
>>   *
>>
>>     igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1:
>>
>>       o shard-apl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html> 
>>
>>         -> DMESG-WARN
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html> 
>>
>>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>>         +1 similar issue
>>   *
>>
>>     igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
>>
>>       o shard-glk: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> 
>>
>>         (i915#2346 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
>>   *
>>
>>     igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled.html> 
>>
>>         (i915#5287 
>> <https://gitlab.freedesktop.org/drm/intel/issues/5287>)
>>   *
>>
>>     igt@kms_dsc@basic-dsc:
>>
>>       o shard-snb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_dsc@basic-dsc.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +68
>>         similar issues
>>   *
>>
>>     igt@kms_fbcon_fbt@psr-suspend:
>>
>>       o shard-skl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_fbcon_fbt@psr-suspend.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_fbcon_fbt@psr-suspend.html> 
>>
>>         (i915#4767 
>> <https://gitlab.freedesktop.org/drm/intel/issues/4767>)
>>   *
>>
>>     igt@kms_flip@2x-plain-flip:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip@2x-plain-flip.html> 
>>
>>         (fdo#109274
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
>>         fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>
>>         / i915#3637
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_flip@flip-vs-suspend@a-dp1:
>>
>>       o shard-kbl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_flip@flip-vs-suspend@a-dp1.html> 
>>
>>         -> DMESG-WARN
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@kms_flip@flip-vs-suspend@a-dp1.html> 
>>
>>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>>         +8 similar issues
>>   *
>>
>>     igt@kms_flip@wf_vblank-ts-check@a-edp1:
>>
>>       o shard-skl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> 
>>
>>         (i915#2122
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2122>) +2
>>         similar issues
>>   *
>>
>>     
>> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: 
>>
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> 
>>
>>         (i915#2672 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
>>   *
>>
>>     
>> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: 
>>
>>
>>       o shard-iclb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> 
>>
>>         (i915#2672
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +7
>>         similar issues
>>   *
>>
>>     
>> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: 
>>
>>
>>       o shard-iclb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html> 
>>
>>         (i915#2672
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2672> /
>>         i915#3555
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> 
>>
>>         (fdo#109280
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109280> /
>>         fdo#111825
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +5
>>         similar issues
>>   *
>>
>>     
>> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
>>
>>       o shard-tglb: NOTRUN -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html> 
>>
>>         (i915#160 <https://gitlab.freedesktop.org/drm/intel/issues/160>)
>>         +1 similar issue
>>   *
>>
>>     igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
>>
>>       o shard-kbl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html> 
>>
>>         (i915#1188 
>> <https://gitlab.freedesktop.org/drm/intel/issues/1188>)
>>   *
>>
>>     igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
>>
>>       o shard-skl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html> 
>>
>>         -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html> 
>>
>>         (fdo#108145
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>   *
>>
>>     igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
>>
>>       o shard-skl: NOTRUN -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html> 
>>
>>         (fdo#108145
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>   *
>>
>>     igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
>>
>>       o shard-kbl: NOTRUN -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> 
>>
>>         (i915#265 <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>   *
>>
>>     igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> 
>>
>>         (i915#2920 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>>   *
>>
>>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
>>
>>       o shard-skl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_psr@psr2_primary_page_flip:
>>
>>       o shard-tglb: NOTRUN -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr@psr2_primary_page_flip.html> 
>>
>>         (i915#132 <https://gitlab.freedesktop.org/drm/intel/issues/132>
>>         / i915#3467 
>> <https://gitlab.freedesktop.org/drm/intel/issues/3467>)
>>   *
>>
>>     igt@kms_psr@psr2_sprite_blt:
>>
>>       o shard-iclb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html> 
>>
>>         -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_psr@psr2_sprite_blt.html> 
>>
>>         (fdo#109441 
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
>>   *
>>
>>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>>
>>       o shard-iclb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> 
>>
>>         -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> 
>>
>>         (i915#5519 
>> <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>>   *
>>
>>     igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> 
>>
>>         (fdo#111615
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>>         i915#5289 <https://gitlab.freedesktop.org/drm/intel/issues/5289>)
>>   *
>>
>>     igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>>
>>       o shard-skl: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> 
>>
>>         -> DMESG-WARN
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> 
>>
>>         (i915#1982 
>> <https://gitlab.freedesktop.org/drm/intel/issues/1982>)
>>   *
>>
>>     igt@kms_vblank@crtc-id:
>>
>>       o shard-snb: PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@kms_vblank@crtc-id.html> 
>>
>>         -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_vblank@crtc-id.html> 
>>
>>         (fdo#109271 
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>>   *
>>
>>     igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html> 
>>
>>         (i915#2530 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2530>)
>>   *
>>
>>     igt@prime_nv_pcopy@test3_1:
>>
>>       o shard-tglb: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@prime_nv_pcopy@test3_1.html> 
>>
>>         (fdo#109291 
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
>>   *
>>
>>     igt@sysfs_clients@recycle:
>>
>>       o shard-skl: NOTRUN -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@sysfs_clients@recycle.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>         i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>>
>>
>>         Possible fixes
>>
>>   *
>>
>>     igt@gem_busy@close-race:
>>
>>       o shard-snb: TIMEOUT
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb4/igt@gem_busy@close-race.html> 
>>
>>         (i915#5748
>>         <https://gitlab.freedesktop.org/drm/intel/issues/5748>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@gem_busy@close-race.html> 
>>
>>   *
>>
>>     igt@gem_eio@in-flight-contexts-immediate:
>>
>>       o shard-iclb: TIMEOUT
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_eio@in-flight-contexts-immediate.html> 
>>
>>         (i915#3070
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3070>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@in-flight-contexts-immediate.html> 
>>
>>   *
>>
>>     igt@gem_eio@kms:
>>
>>       o shard-tglb: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb8/igt@gem_eio@kms.html> 
>>
>>         (i915#5784
>>         <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_eio@kms.html> 
>>
>>         +1 similar issue
>>   *
>>
>>     igt@gem_exec_balancer@parallel-keep-in-fence:
>>
>>       o shard-iclb: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html> 
>>
>>         (i915#4525
>>         <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html> 
>>
>>   *
>>
>>     igt@gem_exec_fair@basic-none-share@rcs0:
>>
>>       o shard-kbl: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@gem_exec_fair@basic-none-share@rcs0.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@gem_exec_fair@basic-none-share@rcs0.html> 
>>
>>   *
>>
>>     igt@gem_exec_fair@basic-none@vcs0:
>>
>>       o shard-kbl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html> 
>>
>>         (i915#2842
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html> 
>>
>>   *
>>
>>     igt@gem_exec_fair@basic-throttle@rcs0:
>>
>>       o shard-glk: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html> 
>>
>>         (i915#2842
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html> 
>>
>>   *
>>
>>     igt@gem_workarounds@suspend-resume-fd:
>>
>>       o shard-skl: INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@gem_workarounds@suspend-resume-fd.html> 
>>
>>         (i915#5129
>>         <https://gitlab.freedesktop.org/drm/intel/issues/5129>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@gem_workarounds@suspend-resume-fd.html> 
>>
>>   *
>>
>>     igt@i915_selftest@perf@engine_cs:
>>
>>       o shard-snb: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@i915_selftest@perf@engine_cs.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@i915_selftest@perf@engine_cs.html> 
>>
>>   *
>>
>>     igt@i915_suspend@forcewake:
>>
>>       o shard-kbl: INCOMPLETE
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@i915_suspend@forcewake.html> 
>>
>>         (i915#3614
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3614> /
>>         i915#4817
>>         <https://gitlab.freedesktop.org/drm/intel/issues/4817>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@i915_suspend@forcewake.html> 
>>
>>   *
>>
>>     igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
>>
>>       o shard-skl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html> 
>>
>>         (i915#2521
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html> 
>>
>>   *
>>
>>     igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
>>
>>       o shard-glk: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html> 
>>
>>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>         -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html> 
>>
>>   *
>>
>>     igt@kms_flip@busy-flip@c-edp1:
>>
>>       o shard-skl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@busy-flip@c-edp1.html> 
>>
>>         (i915#5726
>>         <https://gitlab.freedesktop.org/drm/intel/issues/5726>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@kms_flip@busy-flip@c-edp1.html> 
>>
>>   *
>>
>>     igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
>>
>>       o shard-skl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html> 
>>
>>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>         -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html> 
>>
>>   *
>>
>>     igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
>>
>>       o shard-tglb: DMESG-WARN
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb2/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html> 
>>
>>         (i915#2411
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2411> /
>>         i915#2867
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2867>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html> 
>>
>>   *
>>
>>     igt@kms_flip@plain-flip-fb-recreate@a-edp1:
>>
>>       o shard-skl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> 
>>
>>         (i915#2122
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> 
>>
>>   *
>>
>>     igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
>>
>>       o shard-skl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html> 
>>
>>         (fdo#108145
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html> 
>>
>>   *
>>
>>     
>> igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: 
>>
>>
>>       o shard-iclb: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html> 
>>
>>         (i915#5176
>>         <https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html> 
>>
>>         +1 similar issue
>>   *
>>
>>     igt@kms_psr@psr2_sprite_mmap_cpu:
>>
>>       o shard-iclb: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_cpu.html> 
>>
>>         (fdo#109441
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html> 
>>
>>   *
>>
>>     igt@perf@polling:
>>
>>       o shard-skl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling.html> 
>>
>>         (i915#1542
>>         <https://gitlab.freedesktop.org/drm/intel/issues/1542>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@perf@polling.html> 
>>
>>   *
>>
>>     igt@perf@polling-parameterized:
>>
>>       o shard-skl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling-parameterized.html> 
>>
>>         (i915#5639
>>         <https://gitlab.freedesktop.org/drm/intel/issues/5639>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@perf@polling-parameterized.html> 
>>
>>   *
>>
>>     igt@prime_self_import@export-vs-gem_close-race:
>>
>>       o shard-tglb: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb1/igt@prime_self_import@export-vs-gem_close-race.html> 
>>
>>         (i915#6481
>>         <https://gitlab.freedesktop.org/drm/intel/issues/6481>) -> PASS
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb8/igt@prime_self_import@export-vs-gem_close-race.html> 
>>
>>
>>
>>         Warnings
>>
>>   *
>>
>>     igt@gem_exec_balancer@parallel-ordering:
>>
>>       o shard-iclb: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html> 
>>
>>         (i915#6117
>>         <https://gitlab.freedesktop.org/drm/intel/issues/6117>) -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html> 
>>
>>         (i915#4525 
>> <https://gitlab.freedesktop.org/drm/intel/issues/4525>)
>>   *
>>
>>     igt@gem_exec_fair@basic-none-rrul@rcs0:
>>
>>       o shard-iclb: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html> 
>>
>>         (i915#2852
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2852>) -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html> 
>>
>>         (i915#2842 
>> <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>>   *
>>
>>     igt@gem_exec_fair@basic-pace@vcs0:
>>
>>       o shard-kbl: FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html> 
>>
>>         (i915#2842
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html> 
>>
>>         (fdo#109271 
>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>>   *
>>
>>     igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
>>
>>       o shard-skl: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>         i915#1888
>>         <https://gitlab.freedesktop.org/drm/intel/issues/1888>) -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> 
>>
>>         (fdo#109271
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
>>
>>       o shard-iclb: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> 
>>
>>         (fdo#111068
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> 
>>
>>         (i915#2920
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) +1
>>         similar issue
>>   *
>>
>>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
>>
>>       o shard-iclb: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>
>>         (i915#2920
>>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>
>>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>         +1 similar issue
>>   *
>>
>>     igt@kms_psr2_su@page_flip-nv12:
>>
>>       o shard-iclb: SKIP
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_psr2_su@page_flip-nv12.html> 
>>
>>         (fdo#109642
>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109642> /
>>         fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068>
>>         / i915#658
>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_su@page_flip-nv12.html> 
>>
>>         (i915#5939 
>> <https://gitlab.freedesktop.org/drm/intel/issues/5939>)
>>   *
>>
>>     igt@runner@aborted:
>>
>>       o shard-kbl: (FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@runner@aborted.html>, 
>>
>>         FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@runner@aborted.html>) 
>>
>>         (i915#3002
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
>>         i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
>>         / i915#5257
>>         <https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@runner@aborted.html>, 
>>
>>         FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>
>>         FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>
>>         FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>
>>         FAIL
>>         
>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>) 
>>
>>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>
>>         / i915#3002
>>         <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
>>         i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
>>         / i915#5257 
>> <https://gitlab.freedesktop.org/drm/intel/issues/5257>)
>>
>> {name}: This element is suppressed. This means it is ignored when 
>> computing
>> the status of the difference (SUCCESS, WARNING, or FAILURE).
>>
>>
>>     Build changes
>>
>>   * Linux: CI_DRM_11935 -> Patchwork_106589v3
>>
>> CI-20190529: 20190529
>> CI_DRM_11935: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ 
>> git://anongit.freedesktop.org/gfx-ci/linux
>> IGT_6594: 326629f105459f9bd201456a0454759628e6a43d @ 
>> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>> Patchwork_106589v3: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ 
>> git://anongit.freedesktop.org/gfx-ci/linux
>> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
>> git://anongit.freedesktop.org/piglit
>>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915: stop using swiotlb (rev3)
  2022-07-25  8:23     ` Tvrtko Ursulin
@ 2022-07-25 14:13       ` Robert Beckett
  2022-07-25 14:42         ` Tvrtko Ursulin
  0 siblings, 1 reply; 10+ messages in thread
From: Robert Beckett @ 2022-07-25 14:13 UTC (permalink / raw)
  To: Tvrtko Ursulin, intel-gfx



On 25/07/2022 09:23, Tvrtko Ursulin wrote:
> 
> On 22/07/2022 20:21, Robert Beckett wrote:
>> On 22/07/2022 19:05, Patchwork wrote:
>>> *Patch Details*
>>> *Series:*    drm/i915: stop using swiotlb (rev3)
>>> *URL:*    https://patchwork.freedesktop.org/series/106589/ 
>>> <https://patchwork.freedesktop.org/series/106589/>
>>> *State:*    failure
>>> *Details:* 
>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html> 
>>>
>>>
>>>
>>>   CI Bug Log - changes from CI_DRM_11935_full -> Patchwork_106589v3_full
>>>
>>>
>>>     Summary
>>>
>>> *FAILURE*
>>>
>>> Serious unknown changes coming with Patchwork_106589v3_full 
>>> absolutely need to be
>>> verified manually.
>>>
>>> If you think the reported changes have nothing to do with the changes
>>> introduced in Patchwork_106589v3_full, please notify your bug team to 
>>> allow them
>>> to document this new failure mode, which will reduce false positives 
>>> in CI.
>>>
>>>
>>>     Participating hosts (10 -> 12)
>>>
>>> Additional (2): shard-rkl shard-tglu
>>>
>>>
>>>     Possible new issues
>>>
>>> Here are the unknown changes that may have been introduced in 
>>> Patchwork_106589v3_full:
>>>
>>>
>>>       IGT changes
>>>
>>>
>>>         Possible regressions
>>>
>>>   *
>>>
>>>     igt@gem_mmap_offset@clear:
>>>
>>>       o
>>>
>>>         shard-tglb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb7/igt@gem_mmap_offset@clear.html> 
>>>
>>>         -> INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb1/igt@gem_mmap_offset@clear.html> 
>>>
>>>
>>
>> I've no idea why CI is seeing a NULL deref here.
>> Testing locally on my TGL board, it passes fine.
>> I think I would need some help testing this on other systems to track 
>> this down.
> 
> Is it possible that dma_direct_max_mapping_size can return a whole range 
> of "unexpected" values akin to swiotlb_max_segment? Anything below 
> PAGE_SIZE, including zero, would confuse the driver.

oh really? scatterlist happily supports non page aligned segments. If 
this is an i915 restriction, it sounds like there could do with being 
some GEM_BUG_ON somewhere to catch this more obviously.

> 
> Oh..
> 
>    return min_t(size_t, UINT_MAX, dma_max_mapping_size(dev)); >
> Wrap the min_t value in rounddown(..., PAGE_SIZE).

I'll issue a v5

> 
> Regards,
> 
> Tvrtko
> 
>>
>>>       o
>>>
>>>         shard-iclb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_mmap_offset@clear.html> 
>>>
>>>         -> INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@gem_mmap_offset@clear.html> 
>>>
>>>
>>>
>>>         Suppressed
>>>
>>> The following results come from untrusted machines, tests, or statuses.
>>> They do not affect the overall result.
>>>
>>>   *
>>>
>>>     igt@gem_mmap_offset@clear:
>>>
>>>       o
>>>
>>>         {shard-rkl}: NOTRUN -> INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-rkl-6/igt@gem_mmap_offset@clear.html> 
>>>
>>>
>>>       o
>>>
>>>         {shard-tglu}: NOTRUN -> INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglu-1/igt@gem_mmap_offset@clear.html> 
>>>
>>>         +1 similar issue
>>>
>>>
>>>     New tests
>>>
>>> New tests have been introduced between CI_DRM_11935_full and 
>>> Patchwork_106589v3_full:
>>>
>>>
>>>       New IGT tests (27)
>>>
>>>   *
>>>
>>>     igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.66] s
>>>   *
>>>
>>>     igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.62] s
>>>   *
>>>
>>>     igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.59] s
>>>   *
>>>
>>>     igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.62] s
>>>   *
>>>
>>>     igt@kms_flip@bo-too-big-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.39] s
>>>   *
>>>
>>>     igt@kms_flip@bo-too-big@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.41] s
>>>   *
>>>
>>>     igt@kms_flip@busy-flip@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.62] s
>>>   *
>>>
>>>     igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.60] s
>>>   *
>>>
>>>     igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [2.72] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [8.03] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.60] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.57] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-fences-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.62] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-fences@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.66] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [30.02] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.60] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-panning@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.62] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.59] s
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-rmfb@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.60] s
>>>   *
>>>
>>>     igt@kms_flip@modeset-vs-vblank-race@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [2.81] s
>>>   *
>>>
>>>     igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.72] s
>>>   *
>>>
>>>     igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.76] s
>>>   *
>>>
>>>     igt@kms_flip@plain-flip-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.60] s
>>>   *
>>>
>>>     igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.74] s
>>>   *
>>>
>>> igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1: 
>>>
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.61] s
>>>   *
>>>
>>>     igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [0.59] s
>>>   *
>>>
>>>     igt@kms_flip@wf_vblank-ts-check@d-hdmi-a1:
>>>
>>>       o Statuses : 1 pass(s)
>>>       o Exec time: [7.76] s
>>>
>>>
>>>     Known issues
>>>
>>> Here are the changes found in Patchwork_106589v3_full that come from 
>>> known issues:
>>>
>>>
>>>       IGT changes
>>>
>>>
>>>         Issues hit
>>>
>>>   *
>>>
>>>     igt@feature_discovery@display-4x:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@feature_discovery@display-4x.html> 
>>>
>>>         (i915#1839 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/1839>)
>>>   *
>>>
>>>     igt@gem_eio@unwedge-stress:
>>>
>>>       o shard-iclb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@gem_eio@unwedge-stress.html> 
>>>
>>>         -> TIMEOUT
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@unwedge-stress.html> 
>>>
>>>         (i915#3070 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/3070>)
>>>   *
>>>
>>>     igt@gem_exec_fair@basic-deadline:
>>>
>>>       o shard-glk: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-deadline.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@gem_exec_fair@basic-deadline.html> 
>>>
>>>         (i915#2846 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2846>)
>>>   *
>>>
>>>     igt@gem_exec_fair@basic-none@vcs1:
>>>
>>>       o shard-iclb: NOTRUN -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html> 
>>>
>>>         (i915#2842 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>>>   *
>>>
>>>     igt@gem_exec_fair@basic-pace@vecs0:
>>>
>>>       o shard-kbl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html> 
>>>
>>>         (i915#2842
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> 
>>>
>>>         (fdo#109313 
>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109313>)
>>>   *
>>>
>>>     igt@gem_huc_copy@huc-copy:
>>>
>>>       o shard-tglb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb5/igt@gem_huc_copy@huc-copy.html> 
>>>
>>>         -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_huc_copy@huc-copy.html> 
>>>
>>>         (i915#2190 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
>>>   *
>>>
>>>     igt@gem_lmem_swapping@heavy-verify-random-ccs:
>>>
>>>       o shard-skl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>         i915#4613 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>>   *
>>>
>>>     igt@gem_lmem_swapping@verify-random:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_lmem_swapping@verify-random.html> 
>>>
>>>         (i915#4613 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>>   *
>>>
>>>     igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> 
>>>
>>>         (i915#4270 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
>>>   *
>>>
>>>     igt@gem_userptr_blits@coherency-unsync:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_userptr_blits@coherency-unsync.html> 
>>>
>>>         (i915#3297 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/3297>)
>>>   *
>>>
>>>     igt@gen7_exec_parse@basic-allocation:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gen7_exec_parse@basic-allocation.html> 
>>>
>>>         (fdo#109289 
>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
>>>   *
>>>
>>>     igt@i915_pm_backlight@fade_with_suspend:
>>>
>>>       o shard-skl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@i915_pm_backlight@fade_with_suspend.html> 
>>>
>>>         -> INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@i915_pm_backlight@fade_with_suspend.html> 
>>>
>>>         (i915#4939 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
>>>   *
>>>
>>>     igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> 
>>>
>>>         (fdo#111644
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111644> /
>>>         i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>
>>>         / i915#2411 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2411>)
>>>   *
>>>
>>>     igt@i915_selftest@live@hangcheck:
>>>
>>>       o shard-iclb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb5/igt@i915_selftest@live@hangcheck.html> 
>>>
>>>         -> INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@i915_selftest@live@hangcheck.html> 
>>>
>>>         (i915#6106 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/6106>)
>>>   *
>>>
>>>     igt@i915_suspend@fence-restore-tiled2untiled:
>>>
>>>       o shard-skl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@i915_suspend@fence-restore-tiled2untiled.html> 
>>>
>>>         -> INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@i915_suspend@fence-restore-tiled2untiled.html> 
>>>
>>>         (i915#4817
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/4817> /
>>>         i915#4939 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
>>>   *
>>>
>>>     igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1:
>>>
>>>       o shard-skl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html> 
>>>
>>>         (i915#2521 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2521>)
>>>   *
>>>
>>>     igt@kms_big_fb@4-tiled-16bpp-rotate-180:
>>>
>>>       o shard-kbl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +22
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_big_fb@4-tiled-8bpp-rotate-180:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html> 
>>>
>>>         (i915#5286
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>>>
>>>       o shard-skl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +81
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_big_fb@y-tiled-32bpp-rotate-180:
>>>
>>>       o
>>>
>>>         shard-iclb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>>
>>>         (i915#5138 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
>>>
>>>       o
>>>
>>>         shard-glk: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>>
>>>         (i915#1888
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/1888> /
>>>         i915#5138 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
>>>
>>>   *
>>>
>>>     igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>>>
>>>       o shard-skl: NOTRUN -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> 
>>>
>>>         (i915#3743 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/3743>)
>>>   *
>>>
>>>     igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> 
>>>
>>>         (fdo#111615
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
>>>
>>>       o shard-skl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>         i915#3886
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html> 
>>>
>>>         (i915#3689
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
>>>         i915#3886
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html> 
>>>
>>>         (i915#3689
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
>>>         i915#6095 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>>>   *
>>>
>>>     igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>>>
>>>       o shard-kbl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>         i915#3886 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>>>   *
>>>
>>>     igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html> 
>>>
>>>         (i915#3689
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html> 
>>>
>>>         (fdo#111615
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>>>         i915#3689
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_chamelium@dp-hpd-after-suspend:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_chamelium@dp-hpd-after-suspend.html> 
>>>
>>>         (fdo#109284
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>>>         fdo#111827
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_color_chamelium@pipe-a-ctm-negative:
>>>
>>>       o shard-snb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-negative.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>         fdo#111827
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_color_chamelium@pipe-b-ctm-green-to-red:
>>>
>>>       o shard-kbl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>         fdo#111827 
>>> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
>>>   *
>>>
>>>     igt@kms_color_chamelium@pipe-d-ctm-negative:
>>>
>>>       o shard-skl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_color_chamelium@pipe-d-ctm-negative.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>         fdo#111827
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170.html> 
>>>
>>>         (i915#3359
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +7
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html> 
>>>
>>>         (i915#4462
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/4462>) +7
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1:
>>>
>>>       o shard-apl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html> 
>>>
>>>         -> DMESG-WARN
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html> 
>>>
>>>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>>>         +1 similar issue
>>>   *
>>>
>>>     igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
>>>
>>>       o shard-glk: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> 
>>>
>>>         (i915#2346 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
>>>   *
>>>
>>>     igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled.html> 
>>>
>>>         (i915#5287 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/5287>)
>>>   *
>>>
>>>     igt@kms_dsc@basic-dsc:
>>>
>>>       o shard-snb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_dsc@basic-dsc.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +68
>>>         similar issues
>>>   *
>>>
>>>     igt@kms_fbcon_fbt@psr-suspend:
>>>
>>>       o shard-skl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_fbcon_fbt@psr-suspend.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_fbcon_fbt@psr-suspend.html> 
>>>
>>>         (i915#4767 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/4767>)
>>>   *
>>>
>>>     igt@kms_flip@2x-plain-flip:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip@2x-plain-flip.html> 
>>>
>>>         (fdo#109274
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
>>>         fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>
>>>         / i915#3637
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-suspend@a-dp1:
>>>
>>>       o shard-kbl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_flip@flip-vs-suspend@a-dp1.html> 
>>>
>>>         -> DMESG-WARN
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@kms_flip@flip-vs-suspend@a-dp1.html> 
>>>
>>>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>>>         +8 similar issues
>>>   *
>>>
>>>     igt@kms_flip@wf_vblank-ts-check@a-edp1:
>>>
>>>       o shard-skl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> 
>>>
>>>         (i915#2122
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2122>) +2
>>>         similar issues
>>>   *
>>>
>>> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: 
>>>
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> 
>>>
>>>         (i915#2672 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
>>>   *
>>>
>>> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: 
>>>
>>>
>>>       o shard-iclb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> 
>>>
>>>         (i915#2672
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +7
>>>         similar issues
>>>   *
>>>
>>> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: 
>>>
>>>
>>>       o shard-iclb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html> 
>>>
>>>         (i915#2672
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2672> /
>>>         i915#3555
>>>    ��    <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> 
>>>
>>>         (fdo#109280
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109280> /
>>>         fdo#111825
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +5
>>>         similar issues
>>>   *
>>>
>>> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
>>>
>>>       o shard-tglb: NOTRUN -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html> 
>>>
>>>         (i915#160 <https://gitlab.freedesktop.org/drm/intel/issues/160>)
>>>         +1 similar issue
>>>   *
>>>
>>>     igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
>>>
>>>       o shard-kbl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html> 
>>>
>>>         (i915#1188 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/1188>)
>>>   *
>>>
>>>     igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
>>>
>>>       o shard-skl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html> 
>>>
>>>         -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html> 
>>>
>>>         (fdo#108145
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>>   *
>>>
>>>     igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
>>>
>>>       o shard-skl: NOTRUN -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html> 
>>>
>>>         (fdo#108145
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>>   *
>>>
>>>     igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
>>>
>>>       o shard-kbl: NOTRUN -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> 
>>>
>>>         (i915#265 <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>>   *
>>>
>>>     igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> 
>>>
>>>         (i915#2920 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>>>   *
>>>
>>>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
>>>
>>>       o shard-skl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_psr@psr2_primary_page_flip:
>>>
>>>       o shard-tglb: NOTRUN -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr@psr2_primary_page_flip.html> 
>>>
>>>         (i915#132 <https://gitlab.freedesktop.org/drm/intel/issues/132>
>>>         / i915#3467 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/3467>)
>>>   *
>>>
>>>     igt@kms_psr@psr2_sprite_blt:
>>>
>>>       o shard-iclb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html> 
>>>
>>>         -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_psr@psr2_sprite_blt.html> 
>>>
>>>         (fdo#109441 
>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
>>>   *
>>>
>>>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>>>
>>>       o shard-iclb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> 
>>>
>>>         -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> 
>>>
>>>         (i915#5519 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>>>   *
>>>
>>>     igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> 
>>>
>>>         (fdo#111615
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>>>         i915#5289 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/5289>)
>>>   *
>>>
>>>     igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>>>
>>>       o shard-skl: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> 
>>>
>>>         -> DMESG-WARN
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> 
>>>
>>>         (i915#1982 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/1982>)
>>>   *
>>>
>>>     igt@kms_vblank@crtc-id:
>>>
>>>       o shard-snb: PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@kms_vblank@crtc-id.html> 
>>>
>>>         -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_vblank@crtc-id.html> 
>>>
>>>         (fdo#109271 
>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>>>   *
>>>
>>>     igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html> 
>>>
>>>         (i915#2530 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2530>)
>>>   *
>>>
>>>     igt@prime_nv_pcopy@test3_1:
>>>
>>>       o shard-tglb: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@prime_nv_pcopy@test3_1.html> 
>>>
>>>         (fdo#109291 
>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
>>>   *
>>>
>>>     igt@sysfs_clients@recycle:
>>>
>>>       o shard-skl: NOTRUN -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@sysfs_clients@recycle.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>         i915#2994 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>>>
>>>
>>>         Possible fixes
>>>
>>>   *
>>>
>>>     igt@gem_busy@close-race:
>>>
>>>       o shard-snb: TIMEOUT
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb4/igt@gem_busy@close-race.html> 
>>>
>>>         (i915#5748
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5748>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@gem_busy@close-race.html> 
>>>
>>>   *
>>>
>>>     igt@gem_eio@in-flight-contexts-immediate:
>>>
>>>       o shard-iclb: TIMEOUT
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_eio@in-flight-contexts-immediate.html> 
>>>
>>>         (i915#3070
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3070>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@in-flight-contexts-immediate.html> 
>>>
>>>   *
>>>
>>>     igt@gem_eio@kms:
>>>
>>>       o shard-tglb: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb8/igt@gem_eio@kms.html> 
>>>
>>>         (i915#5784
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_eio@kms.html> 
>>>
>>>         +1 similar issue
>>>   *
>>>
>>>     igt@gem_exec_balancer@parallel-keep-in-fence:
>>>
>>>       o shard-iclb: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html> 
>>>
>>>         (i915#4525
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html> 
>>>
>>>   *
>>>
>>>     igt@gem_exec_fair@basic-none-share@rcs0:
>>>
>>>       o shard-kbl: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@gem_exec_fair@basic-none-share@rcs0.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@gem_exec_fair@basic-none-share@rcs0.html> 
>>>
>>>   *
>>>
>>>     igt@gem_exec_fair@basic-none@vcs0:
>>>
>>>       o shard-kbl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html> 
>>>
>>>         (i915#2842
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html> 
>>>
>>>   *
>>>
>>>     igt@gem_exec_fair@basic-throttle@rcs0:
>>>
>>>       o shard-glk: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html> 
>>>
>>>         (i915#2842
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html> 
>>>
>>>   *
>>>
>>>     igt@gem_workarounds@suspend-resume-fd:
>>>
>>>       o shard-skl: INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@gem_workarounds@suspend-resume-fd.html> 
>>>
>>>         (i915#5129
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5129>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@gem_workarounds@suspend-resume-fd.html> 
>>>
>>>   *
>>>
>>>     igt@i915_selftest@perf@engine_cs:
>>>
>>>       o shard-snb: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@i915_selftest@perf@engine_cs.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@i915_selftest@perf@engine_cs.html> 
>>>
>>>   *
>>>
>>>     igt@i915_suspend@forcewake:
>>>
>>>       o shard-kbl: INCOMPLETE
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@i915_suspend@forcewake.html> 
>>>
>>>         (i915#3614
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3614> /
>>>         i915#4817
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/4817>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@i915_suspend@forcewake.html> 
>>>
>>>   *
>>>
>>>     igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
>>>
>>>       o shard-skl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html> 
>>>
>>>         (i915#2521
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html> 
>>>
>>>   *
>>>
>>>     igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
>>>
>>>       o shard-glk: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html> 
>>>
>>>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>>         -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html> 
>>>
>>>   *
>>>
>>>     igt@kms_flip@busy-flip@c-edp1:
>>>
>>>       o shard-skl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@busy-flip@c-edp1.html> 
>>>
>>>         (i915#5726
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5726>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@kms_flip@busy-flip@c-edp1.html> 
>>>
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
>>>
>>>       o shard-skl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html> 
>>>
>>>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>>         -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html> 
>>>
>>>   *
>>>
>>>     igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
>>>
>>>       o shard-tglb: DMESG-WARN
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb2/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html> 
>>>
>>>         (i915#2411
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2411> /
>>>         i915#2867
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2867>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html> 
>>>
>>>   *
>>>
>>>     igt@kms_flip@plain-flip-fb-recreate@a-edp1:
>>>
>>>       o shard-skl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> 
>>>
>>>         (i915#2122
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> 
>>>
>>>   *
>>>
>>>     igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
>>>
>>>       o shard-skl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html> 
>>>
>>>         (fdo#108145
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html> 
>>>
>>>   *
>>>
>>> igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: 
>>>
>>>
>>>       o shard-iclb: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html> 
>>>
>>>         (i915#5176
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html> 
>>>
>>>         +1 similar issue
>>>   *
>>>
>>>     igt@kms_psr@psr2_sprite_mmap_cpu:
>>>
>>>       o shard-iclb: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_cpu.html> 
>>>
>>>         (fdo#109441
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html> 
>>>
>>>   *
>>>
>>>     igt@perf@polling:
>>>
>>>       o shard-skl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling.html> 
>>>
>>>         (i915#1542
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/1542>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@perf@polling.html> 
>>>
>>>   *
>>>
>>>     igt@perf@polling-parameterized:
>>>
>>>       o shard-skl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling-parameterized.html> 
>>>
>>>         (i915#5639
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5639>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@perf@polling-parameterized.html> 
>>>
>>>   *
>>>
>>>     igt@prime_self_import@export-vs-gem_close-race:
>>>
>>>       o shard-tglb: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb1/igt@prime_self_import@export-vs-gem_close-race.html> 
>>>
>>>         (i915#6481
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/6481>) -> PASS
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb8/igt@prime_self_import@export-vs-gem_close-race.html> 
>>>
>>>
>>>
>>>         Warnings
>>>
>>>   *
>>>
>>>     igt@gem_exec_balancer@parallel-ordering:
>>>
>>>       o shard-iclb: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html> 
>>>
>>>         (i915#6117
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/6117>) -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html> 
>>>
>>>         (i915#4525 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/4525>)
>>>   *
>>>
>>>     igt@gem_exec_fair@basic-none-rrul@rcs0:
>>>
>>>       o shard-iclb: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html> 
>>>
>>>         (i915#2852
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2852>) -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html> 
>>>
>>>         (i915#2842 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>>>   *
>>>
>>>     igt@gem_exec_fair@basic-pace@vcs0:
>>>
>>>       o shard-kbl: FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html> 
>>>
>>>         (i915#2842
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html> 
>>>
>>>         (fdo#109271 
>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>>>   *
>>>
>>>     
>>> igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
>>>
>>>       o shard-skl: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>         i915#1888
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/1888>) -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> 
>>>
>>>         (fdo#109271
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
>>>
>>>       o shard-iclb: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> 
>>>
>>>         (fdo#111068
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> 
>>>
>>>         (i915#2920
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) +1
>>>         similar issue
>>>   *
>>>
>>>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
>>>
>>>       o shard-iclb: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>>
>>>         (i915#2920
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>>
>>>         (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>>         +1 similar issue
>>>   *
>>>
>>>     igt@kms_psr2_su@page_flip-nv12:
>>>
>>>       o shard-iclb: SKIP
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_psr2_su@page_flip-nv12.html> 
>>>
>>>         (fdo#109642
>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109642> /
>>>         fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068>
>>>         / i915#658
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_su@page_flip-nv12.html> 
>>>
>>>         (i915#5939 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/5939>)
>>>   *
>>>
>>>     igt@runner@aborted:
>>>
>>>       o shard-kbl: (FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@runner@aborted.html>, 
>>>
>>>         FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@runner@aborted.html>) 
>>>
>>>         (i915#3002
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
>>>         i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
>>>         / i915#5257
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@runner@aborted.html>, 
>>>
>>>         FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>>
>>>         FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>>
>>>         FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>>
>>>         FAIL
>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>) 
>>>
>>>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>
>>>         / i915#3002
>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
>>>         i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
>>>         / i915#5257 
>>> <https://gitlab.freedesktop.org/drm/intel/issues/5257>)
>>>
>>> {name}: This element is suppressed. This means it is ignored when 
>>> computing
>>> the status of the difference (SUCCESS, WARNING, or FAILURE).
>>>
>>>
>>>     Build changes
>>>
>>>   * Linux: CI_DRM_11935 -> Patchwork_106589v3
>>>
>>> CI-20190529: 20190529
>>> CI_DRM_11935: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ 
>>> git://anongit.freedesktop.org/gfx-ci/linux
>>> IGT_6594: 326629f105459f9bd201456a0454759628e6a43d @ 
>>> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>>> Patchwork_106589v3: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ 
>>> git://anongit.freedesktop.org/gfx-ci/linux
>>> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
>>> git://anongit.freedesktop.org/piglit
>>>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/i915: stop using swiotlb (rev3)
  2022-07-25 14:13       ` Robert Beckett
@ 2022-07-25 14:42         ` Tvrtko Ursulin
  0 siblings, 0 replies; 10+ messages in thread
From: Tvrtko Ursulin @ 2022-07-25 14:42 UTC (permalink / raw)
  To: Robert Beckett, intel-gfx


On 25/07/2022 15:13, Robert Beckett wrote:
> On 25/07/2022 09:23, Tvrtko Ursulin wrote:
>>
>> On 22/07/2022 20:21, Robert Beckett wrote:
>>> On 22/07/2022 19:05, Patchwork wrote:
>>>> *Patch Details*
>>>> *Series:*    drm/i915: stop using swiotlb (rev3)
>>>> *URL:*    https://patchwork.freedesktop.org/series/106589/ 
>>>> <https://patchwork.freedesktop.org/series/106589/>
>>>> *State:*    failure
>>>> *Details:* 
>>>> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html 
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/index.html> 
>>>>
>>>>
>>>>
>>>>   CI Bug Log - changes from CI_DRM_11935_full -> 
>>>> Patchwork_106589v3_full
>>>>
>>>>
>>>>     Summary
>>>>
>>>> *FAILURE*
>>>>
>>>> Serious unknown changes coming with Patchwork_106589v3_full 
>>>> absolutely need to be
>>>> verified manually.
>>>>
>>>> If you think the reported changes have nothing to do with the changes
>>>> introduced in Patchwork_106589v3_full, please notify your bug team 
>>>> to allow them
>>>> to document this new failure mode, which will reduce false positives 
>>>> in CI.
>>>>
>>>>
>>>>     Participating hosts (10 -> 12)
>>>>
>>>> Additional (2): shard-rkl shard-tglu
>>>>
>>>>
>>>>     Possible new issues
>>>>
>>>> Here are the unknown changes that may have been introduced in 
>>>> Patchwork_106589v3_full:
>>>>
>>>>
>>>>       IGT changes
>>>>
>>>>
>>>>         Possible regressions
>>>>
>>>>   *
>>>>
>>>>     igt@gem_mmap_offset@clear:
>>>>
>>>>       o
>>>>
>>>>         shard-tglb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb7/igt@gem_mmap_offset@clear.html> 
>>>>
>>>>         -> INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb1/igt@gem_mmap_offset@clear.html> 
>>>>
>>>>
>>>
>>> I've no idea why CI is seeing a NULL deref here.
>>> Testing locally on my TGL board, it passes fine.
>>> I think I would need some help testing this on other systems to track 
>>> this down.
>>
>> Is it possible that dma_direct_max_mapping_size can return a whole 
>> range of "unexpected" values akin to swiotlb_max_segment? Anything 
>> below PAGE_SIZE, including zero, would confuse the driver.
> 
> oh really? scatterlist happily supports non page aligned segments. If 
> this is an i915 restriction, it sounds like there could do with being 
> some GEM_BUG_ON somewhere to catch this more obviously.

Well zero or one as values returned from swiotlb_max_segment did not 
really make much sense. Hence special handling was put in 
i915_sg_segment_size to correctly interpret them.

So yes a GEM_BUG_ON to ensure value returned from dma_max_mapping_size() 
is at least PAGE_SIZE would be safest. Unless it manages to trigger, in 
which special handling needs to be put back in.

Alternatively we'd need to try to figure out possible return values from 
dma_max_mapping_size(). There doesn't seem to be kernel doc for it 
currently.

>> Oh..
>>
>>    return min_t(size_t, UINT_MAX, dma_max_mapping_size(dev)); >
>> Wrap the min_t value in rounddown(..., PAGE_SIZE).
> 
> I'll issue a v5

Or you meant if this one was a i915 limitation? I don't really remember 
and did not do a deep dive to remind myself. Just finger in the air "if 
it is a null sg entry, why would the iterator ever encounter it". So I 
was thinking some sort of a mismatch between found and expected number 
of entries, and hence suspected the lack of rounddown after the 
conversion as the other remaining difference. But as said, did not 
really think it through and checked what in the code would go wrong if 
it wasn't page aligned.

Regards,

Tvrtko

>>
>> Regards,
>>
>> Tvrtko
>>
>>>
>>>>       o
>>>>
>>>>         shard-iclb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_mmap_offset@clear.html> 
>>>>
>>>>         -> INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@gem_mmap_offset@clear.html> 
>>>>
>>>>
>>>>
>>>>         Suppressed
>>>>
>>>> The following results come from untrusted machines, tests, or statuses.
>>>> They do not affect the overall result.
>>>>
>>>>   *
>>>>
>>>>     igt@gem_mmap_offset@clear:
>>>>
>>>>       o
>>>>
>>>>         {shard-rkl}: NOTRUN -> INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-rkl-6/igt@gem_mmap_offset@clear.html> 
>>>>
>>>>
>>>>       o
>>>>
>>>>         {shard-tglu}: NOTRUN -> INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglu-1/igt@gem_mmap_offset@clear.html> 
>>>>
>>>>         +1 similar issue
>>>>
>>>>
>>>>     New tests
>>>>
>>>> New tests have been introduced between CI_DRM_11935_full and 
>>>> Patchwork_106589v3_full:
>>>>
>>>>
>>>>       New IGT tests (27)
>>>>
>>>>   *
>>>>
>>>>     igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.66] s
>>>>   *
>>>>
>>>>     igt@kms_flip@basic-flip-vs-modeset@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.62] s
>>>>   *
>>>>
>>>>     igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.59] s
>>>>   *
>>>>
>>>>     igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.62] s
>>>>   *
>>>>
>>>>     igt@kms_flip@bo-too-big-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.39] s
>>>>   *
>>>>
>>>>     igt@kms_flip@bo-too-big@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.41] s
>>>>   *
>>>>
>>>>     igt@kms_flip@busy-flip@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.62] s
>>>>   *
>>>>
>>>>     igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.60] s
>>>>   *
>>>>
>>>>     igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [2.72] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [8.03] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.60] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.57] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-fences-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.62] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-fences@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.66] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [30.02] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-panning-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.60] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-panning@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.62] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-rmfb-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.59] s
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-rmfb@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.60] s
>>>>   *
>>>>
>>>>     igt@kms_flip@modeset-vs-vblank-race@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [2.81] s
>>>>   *
>>>>
>>>>     igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.72] s
>>>>   *
>>>>
>>>>     igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.76] s
>>>>   *
>>>>
>>>>     igt@kms_flip@plain-flip-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.60] s
>>>>   *
>>>>
>>>>     igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.74] s
>>>>   *
>>>>
>>>> igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a1: 
>>>>
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.61] s
>>>>   *
>>>>
>>>>     igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [0.59] s
>>>>   *
>>>>
>>>>     igt@kms_flip@wf_vblank-ts-check@d-hdmi-a1:
>>>>
>>>>       o Statuses : 1 pass(s)
>>>>       o Exec time: [7.76] s
>>>>
>>>>
>>>>     Known issues
>>>>
>>>> Here are the changes found in Patchwork_106589v3_full that come from 
>>>> known issues:
>>>>
>>>>
>>>>       IGT changes
>>>>
>>>>
>>>>         Issues hit
>>>>
>>>>   *
>>>>
>>>>     igt@feature_discovery@display-4x:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@feature_discovery@display-4x.html> 
>>>>
>>>>         (i915#1839 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/1839>)
>>>>   *
>>>>
>>>>     igt@gem_eio@unwedge-stress:
>>>>
>>>>       o shard-iclb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@gem_eio@unwedge-stress.html> 
>>>>
>>>>         -> TIMEOUT
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@unwedge-stress.html> 
>>>>
>>>>         (i915#3070 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/3070>)
>>>>   *
>>>>
>>>>     igt@gem_exec_fair@basic-deadline:
>>>>
>>>>       o shard-glk: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-deadline.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@gem_exec_fair@basic-deadline.html> 
>>>>
>>>>         (i915#2846 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2846>)
>>>>   *
>>>>
>>>>     igt@gem_exec_fair@basic-none@vcs1:
>>>>
>>>>       o shard-iclb: NOTRUN -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@gem_exec_fair@basic-none@vcs1.html> 
>>>>
>>>>         (i915#2842 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>>>>   *
>>>>
>>>>     igt@gem_exec_fair@basic-pace@vecs0:
>>>>
>>>>       o shard-kbl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vecs0.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html> 
>>>>
>>>>         (i915#2842
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> 
>>>>
>>>>         (fdo#109313 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109313>)
>>>>   *
>>>>
>>>>     igt@gem_huc_copy@huc-copy:
>>>>
>>>>       o shard-tglb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb5/igt@gem_huc_copy@huc-copy.html> 
>>>>
>>>>         -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_huc_copy@huc-copy.html> 
>>>>
>>>>         (i915#2190 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2190>)
>>>>   *
>>>>
>>>>     igt@gem_lmem_swapping@heavy-verify-random-ccs:
>>>>
>>>>       o shard-skl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>>         i915#4613 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>>>   *
>>>>
>>>>     igt@gem_lmem_swapping@verify-random:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_lmem_swapping@verify-random.html> 
>>>>
>>>>         (i915#4613 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
>>>>   *
>>>>
>>>>     igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> 
>>>>
>>>>         (i915#4270 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
>>>>   *
>>>>
>>>>     igt@gem_userptr_blits@coherency-unsync:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gem_userptr_blits@coherency-unsync.html> 
>>>>
>>>>         (i915#3297 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/3297>)
>>>>   *
>>>>
>>>>     igt@gen7_exec_parse@basic-allocation:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@gen7_exec_parse@basic-allocation.html> 
>>>>
>>>>         (fdo#109289 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
>>>>   *
>>>>
>>>>     igt@i915_pm_backlight@fade_with_suspend:
>>>>
>>>>       o shard-skl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@i915_pm_backlight@fade_with_suspend.html> 
>>>>
>>>>         -> INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@i915_pm_backlight@fade_with_suspend.html> 
>>>>
>>>>         (i915#4939 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
>>>>   *
>>>>
>>>>     igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> 
>>>>
>>>>         (fdo#111644
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111644> /
>>>>         i915#1397 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/1397>
>>>>         / i915#2411 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2411>)
>>>>   *
>>>>
>>>>     igt@i915_selftest@live@hangcheck:
>>>>
>>>>       o shard-iclb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb5/igt@i915_selftest@live@hangcheck.html> 
>>>>
>>>>         -> INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@i915_selftest@live@hangcheck.html> 
>>>>
>>>>         (i915#6106 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/6106>)
>>>>   *
>>>>
>>>>     igt@i915_suspend@fence-restore-tiled2untiled:
>>>>
>>>>       o shard-skl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@i915_suspend@fence-restore-tiled2untiled.html> 
>>>>
>>>>         -> INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@i915_suspend@fence-restore-tiled2untiled.html> 
>>>>
>>>>         (i915#4817
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/4817> /
>>>>         i915#4939 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4939>)
>>>>   *
>>>>
>>>>     igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1:
>>>>
>>>>       o shard-skl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html> 
>>>>
>>>>         (i915#2521 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2521>)
>>>>   *
>>>>
>>>>     igt@kms_big_fb@4-tiled-16bpp-rotate-180:
>>>>
>>>>       o shard-kbl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +22
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_big_fb@4-tiled-8bpp-rotate-180:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html> 
>>>>
>>>>         (i915#5286
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>>>>
>>>>       o shard-skl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +81
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_big_fb@y-tiled-32bpp-rotate-180:
>>>>
>>>>       o
>>>>
>>>>         shard-iclb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>>>
>>>>         (i915#5138 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
>>>>
>>>>       o
>>>>
>>>>         shard-glk: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html> 
>>>>
>>>>         (i915#1888
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/1888> /
>>>>         i915#5138 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
>>>>
>>>>   *
>>>>
>>>>     igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
>>>>
>>>>       o shard-skl: NOTRUN -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html> 
>>>>
>>>>         (i915#3743 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/3743>)
>>>>   *
>>>>
>>>>     igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> 
>>>>
>>>>         (fdo#111615
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
>>>>
>>>>       o shard-skl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>>         i915#3886
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html> 
>>>>
>>>>         (i915#3689
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
>>>>         i915#3886
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html> 
>>>>
>>>>         (i915#3689
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
>>>>         i915#6095 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>>>>   *
>>>>
>>>>     igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>>>>
>>>>       o shard-kbl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>>         i915#3886 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/3886>)
>>>>   *
>>>>
>>>>     igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html> 
>>>>
>>>>         (i915#3689
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html> 
>>>>
>>>>         (fdo#111615
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>>>>         i915#3689
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_chamelium@dp-hpd-after-suspend:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_chamelium@dp-hpd-after-suspend.html> 
>>>>
>>>>         (fdo#109284
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
>>>>         fdo#111827
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_color_chamelium@pipe-a-ctm-negative:
>>>>
>>>>       o shard-snb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@kms_color_chamelium@pipe-a-ctm-negative.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>>         fdo#111827
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_color_chamelium@pipe-b-ctm-green-to-red:
>>>>
>>>>       o shard-kbl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>>         fdo#111827 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
>>>>   *
>>>>
>>>>     igt@kms_color_chamelium@pipe-d-ctm-negative:
>>>>
>>>>       o shard-skl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_color_chamelium@pipe-d-ctm-negative.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>>         fdo#111827
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x170.html> 
>>>>
>>>>         (i915#3359
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +7
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html> 
>>>>
>>>>         (i915#4462
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/4462>) +7
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1:
>>>>
>>>>       o shard-apl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-apl7/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html> 
>>>>
>>>>         -> DMESG-WARN
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-apl3/igt@kms_cursor_crc@cursor-suspend@pipe-c-dp-1.html> 
>>>>
>>>>         (i915#180 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>>>>         +1 similar issue
>>>>   *
>>>>
>>>>     igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
>>>>
>>>>       o shard-glk: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html> 
>>>>
>>>>         (i915#2346 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
>>>>   *
>>>>
>>>>     igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_draw_crc@draw-method-xrgb2101010-mmap-cpu-4tiled.html> 
>>>>
>>>>         (i915#5287 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/5287>)
>>>>   *
>>>>
>>>>     igt@kms_dsc@basic-dsc:
>>>>
>>>>       o shard-snb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_dsc@basic-dsc.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +68
>>>>         similar issues
>>>>   *
>>>>
>>>>     igt@kms_fbcon_fbt@psr-suspend:
>>>>
>>>>       o shard-skl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_fbcon_fbt@psr-suspend.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_fbcon_fbt@psr-suspend.html> 
>>>>
>>>>         (i915#4767 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4767>)
>>>>   *
>>>>
>>>>     igt@kms_flip@2x-plain-flip:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip@2x-plain-flip.html> 
>>>>
>>>>         (fdo#109274
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
>>>>         fdo#111825 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>
>>>>         / i915#3637
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-suspend@a-dp1:
>>>>
>>>>       o shard-kbl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_flip@flip-vs-suspend@a-dp1.html> 
>>>>
>>>>         -> DMESG-WARN
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@kms_flip@flip-vs-suspend@a-dp1.html> 
>>>>
>>>>         (i915#180 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/180>)
>>>>         +8 similar issues
>>>>   *
>>>>
>>>>     igt@kms_flip@wf_vblank-ts-check@a-edp1:
>>>>
>>>>       o shard-skl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_flip@wf_vblank-ts-check@a-edp1.html> 
>>>>
>>>>         (i915#2122
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2122>) +2
>>>>         similar issues
>>>>   *
>>>>
>>>> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: 
>>>>
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> 
>>>>
>>>>         (i915#2672 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
>>>>   *
>>>>
>>>> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: 
>>>>
>>>>
>>>>       o shard-iclb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html> 
>>>>
>>>>         (i915#2672
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +7
>>>>         similar issues
>>>>   *
>>>>
>>>> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: 
>>>>
>>>>
>>>>       o shard-iclb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html> 
>>>>
>>>>         (i915#2672
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2672> /
>>>>         i915#3555
>>>>    ��    <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> 
>>>>
>>>>         (fdo#109280
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109280> /
>>>>         fdo#111825
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +5
>>>>         similar issues
>>>>   *
>>>>
>>>> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
>>>>
>>>>       o shard-tglb: NOTRUN -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html> 
>>>>
>>>>         (i915#160 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/160>)
>>>>         +1 similar issue
>>>>   *
>>>>
>>>>     igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1:
>>>>
>>>>       o shard-kbl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl1/igt@kms_hdr@bpc-switch-dpms@pipe-a-dp-1.html> 
>>>>
>>>>         (i915#1188 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/1188>)
>>>>   *
>>>>
>>>>     igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
>>>>
>>>>       o shard-skl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html> 
>>>>
>>>>         -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html> 
>>>>
>>>>         (fdo#108145
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / 
>>>> i915#265
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>>>   *
>>>>
>>>>     igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
>>>>
>>>>       o shard-skl: NOTRUN -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html> 
>>>>
>>>>         (fdo#108145
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / 
>>>> i915#265
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>>>   *
>>>>
>>>>     igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
>>>>
>>>>       o shard-kbl: NOTRUN -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> 
>>>>
>>>>         (i915#265 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/265>)
>>>>   *
>>>>
>>>>     igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html> 
>>>>
>>>>         (i915#2920 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>>>>   *
>>>>
>>>>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
>>>>
>>>>       o shard-skl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / 
>>>> i915#658
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_psr@psr2_primary_page_flip:
>>>>
>>>>       o shard-tglb: NOTRUN -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_psr@psr2_primary_page_flip.html> 
>>>>
>>>>         (i915#132 <https://gitlab.freedesktop.org/drm/intel/issues/132>
>>>>         / i915#3467 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/3467>)
>>>>   *
>>>>
>>>>     igt@kms_psr@psr2_sprite_blt:
>>>>
>>>>       o shard-iclb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html> 
>>>>
>>>>         -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_psr@psr2_sprite_blt.html> 
>>>>
>>>>         (fdo#109441 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>)
>>>>   *
>>>>
>>>>     igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>>>>
>>>>       o shard-iclb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> 
>>>>
>>>>         -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> 
>>>>
>>>>         (i915#5519 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/5519>)
>>>>   *
>>>>
>>>>     igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> 
>>>>
>>>>         (fdo#111615
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
>>>>         i915#5289 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/5289>)
>>>>   *
>>>>
>>>>     igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>>>>
>>>>       o shard-skl: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> 
>>>>
>>>>         -> DMESG-WARN
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html> 
>>>>
>>>>         (i915#1982 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/1982>)
>>>>   *
>>>>
>>>>     igt@kms_vblank@crtc-id:
>>>>
>>>>       o shard-snb: PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@kms_vblank@crtc-id.html> 
>>>>
>>>>         -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@kms_vblank@crtc-id.html> 
>>>>
>>>>         (fdo#109271 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>>>>   *
>>>>
>>>>     igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html> 
>>>>
>>>>         (i915#2530 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2530>)
>>>>   *
>>>>
>>>>     igt@prime_nv_pcopy@test3_1:
>>>>
>>>>       o shard-tglb: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb5/igt@prime_nv_pcopy@test3_1.html> 
>>>>
>>>>         (fdo#109291 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
>>>>   *
>>>>
>>>>     igt@sysfs_clients@recycle:
>>>>
>>>>       o shard-skl: NOTRUN -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@sysfs_clients@recycle.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>>         i915#2994 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>>>>
>>>>
>>>>         Possible fixes
>>>>
>>>>   *
>>>>
>>>>     igt@gem_busy@close-race:
>>>>
>>>>       o shard-snb: TIMEOUT
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb4/igt@gem_busy@close-race.html> 
>>>>
>>>>         (i915#5748
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5748>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb4/igt@gem_busy@close-race.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@gem_eio@in-flight-contexts-immediate:
>>>>
>>>>       o shard-iclb: TIMEOUT
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_eio@in-flight-contexts-immediate.html> 
>>>>
>>>>         (i915#3070
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3070>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_eio@in-flight-contexts-immediate.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@gem_eio@kms:
>>>>
>>>>       o shard-tglb: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb8/igt@gem_eio@kms.html> 
>>>>
>>>>         (i915#5784
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb7/igt@gem_eio@kms.html> 
>>>>
>>>>         +1 similar issue
>>>>   *
>>>>
>>>>     igt@gem_exec_balancer@parallel-keep-in-fence:
>>>>
>>>>       o shard-iclb: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html> 
>>>>
>>>>         (i915#4525
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@gem_exec_fair@basic-none-share@rcs0:
>>>>
>>>>       o shard-kbl: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@gem_exec_fair@basic-none-share@rcs0.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@gem_exec_fair@basic-none-share@rcs0.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@gem_exec_fair@basic-none@vcs0:
>>>>
>>>>       o shard-kbl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html> 
>>>>
>>>>         (i915#2842
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@gem_exec_fair@basic-throttle@rcs0:
>>>>
>>>>       o shard-glk: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html> 
>>>>
>>>>         (i915#2842
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@gem_workarounds@suspend-resume-fd:
>>>>
>>>>       o shard-skl: INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@gem_workarounds@suspend-resume-fd.html> 
>>>>
>>>>         (i915#5129
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5129>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@gem_workarounds@suspend-resume-fd.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@i915_selftest@perf@engine_cs:
>>>>
>>>>       o shard-snb: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-snb2/igt@i915_selftest@perf@engine_cs.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-snb2/igt@i915_selftest@perf@engine_cs.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@i915_suspend@forcewake:
>>>>
>>>>       o shard-kbl: INCOMPLETE
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@i915_suspend@forcewake.html> 
>>>>
>>>>         (i915#3614
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3614> /
>>>>         i915#4817
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/4817>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@i915_suspend@forcewake.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
>>>>
>>>>       o shard-skl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html> 
>>>>
>>>>         (i915#2521
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
>>>>
>>>>       o shard-glk: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html> 
>>>>
>>>>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>>>         -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@kms_flip@busy-flip@c-edp1:
>>>>
>>>>       o shard-skl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@busy-flip@c-edp1.html> 
>>>>
>>>>         (i915#5726
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5726>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl6/igt@kms_flip@busy-flip@c-edp1.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
>>>>
>>>>       o shard-skl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html> 
>>>>
>>>>         (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
>>>>         -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl9/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
>>>>
>>>>       o shard-tglb: DMESG-WARN
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb2/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html> 
>>>>
>>>>         (i915#2411
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2411> /
>>>>         i915#2867
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2867>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@kms_flip@plain-flip-fb-recreate@a-edp1:
>>>>
>>>>       o shard-skl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> 
>>>>
>>>>         (i915#2122
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
>>>>
>>>>       o shard-skl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html> 
>>>>
>>>>         (fdo#108145
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / 
>>>> i915#265
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/265>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html> 
>>>>
>>>>   *
>>>>
>>>> igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: 
>>>>
>>>>
>>>>       o shard-iclb: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html> 
>>>>
>>>>         (i915#5176
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5176>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html> 
>>>>
>>>>         +1 similar issue
>>>>   *
>>>>
>>>>     igt@kms_psr@psr2_sprite_mmap_cpu:
>>>>
>>>>       o shard-iclb: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_cpu.html> 
>>>>
>>>>         (fdo#109441
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@perf@polling:
>>>>
>>>>       o shard-skl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling.html> 
>>>>
>>>>         (i915#1542
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/1542>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl1/igt@perf@polling.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@perf@polling-parameterized:
>>>>
>>>>       o shard-skl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl9/igt@perf@polling-parameterized.html> 
>>>>
>>>>         (i915#5639
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5639>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl10/igt@perf@polling-parameterized.html> 
>>>>
>>>>   *
>>>>
>>>>     igt@prime_self_import@export-vs-gem_close-race:
>>>>
>>>>       o shard-tglb: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-tglb1/igt@prime_self_import@export-vs-gem_close-race.html> 
>>>>
>>>>         (i915#6481
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/6481>) -> PASS
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-tglb8/igt@prime_self_import@export-vs-gem_close-race.html> 
>>>>
>>>>
>>>>
>>>>         Warnings
>>>>
>>>>   *
>>>>
>>>>     igt@gem_exec_balancer@parallel-ordering:
>>>>
>>>>       o shard-iclb: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html> 
>>>>
>>>>         (i915#6117
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/6117>) -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html> 
>>>>
>>>>         (i915#4525 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4525>)
>>>>   *
>>>>
>>>>     igt@gem_exec_fair@basic-none-rrul@rcs0:
>>>>
>>>>       o shard-iclb: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb7/igt@gem_exec_fair@basic-none-rrul@rcs0.html> 
>>>>
>>>>         (i915#2852
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2852>) -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb5/igt@gem_exec_fair@basic-none-rrul@rcs0.html> 
>>>>
>>>>         (i915#2842 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
>>>>   *
>>>>
>>>>     igt@gem_exec_fair@basic-pace@vcs0:
>>>>
>>>>       o shard-kbl: FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html> 
>>>>
>>>>         (i915#2842
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html> 
>>>>
>>>>         (fdo#109271 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>)
>>>>   *
>>>>
>>>> igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
>>>>
>>>>       o shard-skl: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
>>>>         i915#1888
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/1888>) -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-skl7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> 
>>>>
>>>>         (fdo#109271
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
>>>>
>>>>       o shard-iclb: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> 
>>>>
>>>>         (fdo#111068
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / 
>>>> i915#658
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> 
>>>>
>>>>         (i915#2920
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) +1
>>>>         similar issue
>>>>   *
>>>>
>>>>     igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
>>>>
>>>>       o shard-iclb: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>>>
>>>>         (i915#2920
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html> 
>>>>
>>>>         (i915#658 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>>>>         +1 similar issue
>>>>   *
>>>>
>>>>     igt@kms_psr2_su@page_flip-nv12:
>>>>
>>>>       o shard-iclb: SKIP
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-iclb1/igt@kms_psr2_su@page_flip-nv12.html> 
>>>>
>>>>         (fdo#109642
>>>>         <https://bugs.freedesktop.org/show_bug.cgi?id=109642> /
>>>>         fdo#111068 
>>>> <https://bugs.freedesktop.org/show_bug.cgi?id=111068>
>>>>         / i915#658
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/658>) -> FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-iclb2/igt@kms_psr2_su@page_flip-nv12.html> 
>>>>
>>>>         (i915#5939 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/5939>)
>>>>   *
>>>>
>>>>     igt@runner@aborted:
>>>>
>>>>       o shard-kbl: (FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl6/igt@runner@aborted.html>, 
>>>>
>>>>         FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11935/shard-kbl4/igt@runner@aborted.html>) 
>>>>
>>>>         (i915#3002
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
>>>>         i915#4312 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4312>
>>>>         / i915#5257
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> 
>>>> (FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl4/igt@runner@aborted.html>, 
>>>>
>>>>         FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>>>
>>>>         FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>>>
>>>>         FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>, 
>>>>
>>>>         FAIL
>>>> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106589v3/shard-kbl7/igt@runner@aborted.html>) 
>>>>
>>>>         (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>
>>>>         / i915#3002
>>>>         <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
>>>>         i915#4312 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/4312>
>>>>         / i915#5257 
>>>> <https://gitlab.freedesktop.org/drm/intel/issues/5257>)
>>>>
>>>> {name}: This element is suppressed. This means it is ignored when 
>>>> computing
>>>> the status of the difference (SUCCESS, WARNING, or FAILURE).
>>>>
>>>>
>>>>     Build changes
>>>>
>>>>   * Linux: CI_DRM_11935 -> Patchwork_106589v3
>>>>
>>>> CI-20190529: 20190529
>>>> CI_DRM_11935: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ 
>>>> git://anongit.freedesktop.org/gfx-ci/linux
>>>> IGT_6594: 326629f105459f9bd201456a0454759628e6a43d @ 
>>>> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>>>> Patchwork_106589v3: 2df3752997eeeba0843b7b1b9a27204a4e831355 @ 
>>>> git://anongit.freedesktop.org/gfx-ci/linux
>>>> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ 
>>>> git://anongit.freedesktop.org/piglit
>>>>

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-07-25 14:42 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-22 15:12 [PATCH v3] drm/i915: stop using swiotlb Robert Beckett
2022-07-22 15:12 ` [Intel-gfx] " Robert Beckett
2022-07-22 15:12 ` Robert Beckett
2022-07-22 15:53 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: stop using swiotlb (rev3) Patchwork
2022-07-22 16:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-07-22 18:05 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-07-22 19:21   ` Robert Beckett
2022-07-25  8:23     ` Tvrtko Ursulin
2022-07-25 14:13       ` Robert Beckett
2022-07-25 14:42         ` Tvrtko Ursulin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.