All of lore.kernel.org
 help / color / mirror / Atom feed
* [CI 0/2] drm/mm: Add an iterator to optimally walk over holes suitable for an allocation
@ 2022-02-28 19:04 ` Vivek Kasireddy
  0 siblings, 0 replies; 16+ messages in thread
From: Vivek Kasireddy @ 2022-02-28 19:04 UTC (permalink / raw)
  To: intel-gfx, dri-devel

The first patch is a drm core patch that replaces the for loop in
drm_mm_insert_node_in_range() with the iterator and would not
cause any functional changes. The second patch is a i915 driver
specific patch that also uses the iterator but solves a different
problem.

v2:
- Added a new patch to this series to fix a potential NULL
  dereference.
- Fixed a typo associated with the iterator introduced in the
  drm core patch.
- Added locking around the snippet in the i915 patch that
  traverses the GGTT hole nodes.

v3: (Tvrtko)
- Replaced mutex_lock with mutex_lock_interruptible_nested() in
  the i915 patch.

v4: (Tvrtko)
- Dropped the patch added in v2 as it was deemed unnecessary.

v5: (Tvrtko)
- Fixed yet another typo in the drm core patch: should have
  passed caller_mode instead of mode to the iterator.

Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Nirmoy Das <nirmoy.das@intel.com>
Cc: Christian König <christian.koenig@amd.com>

Vivek Kasireddy (2):
  drm/mm: Add an iterator to optimally walk over holes for an allocation
    (v5)
  drm/i915/gem: Don't try to map and fence large scanout buffers (v9)

 drivers/gpu/drm/drm_mm.c        |  32 ++++----
 drivers/gpu/drm/i915/i915_gem.c | 128 +++++++++++++++++++++++---------
 include/drm/drm_mm.h            |  36 +++++++++
 3 files changed, 145 insertions(+), 51 deletions(-)

-- 
2.34.1


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

* [Intel-gfx] [CI 0/2] drm/mm: Add an iterator to optimally walk over holes suitable for an allocation
@ 2022-02-28 19:04 ` Vivek Kasireddy
  0 siblings, 0 replies; 16+ messages in thread
From: Vivek Kasireddy @ 2022-02-28 19:04 UTC (permalink / raw)
  To: intel-gfx, dri-devel

The first patch is a drm core patch that replaces the for loop in
drm_mm_insert_node_in_range() with the iterator and would not
cause any functional changes. The second patch is a i915 driver
specific patch that also uses the iterator but solves a different
problem.

v2:
- Added a new patch to this series to fix a potential NULL
  dereference.
- Fixed a typo associated with the iterator introduced in the
  drm core patch.
- Added locking around the snippet in the i915 patch that
  traverses the GGTT hole nodes.

v3: (Tvrtko)
- Replaced mutex_lock with mutex_lock_interruptible_nested() in
  the i915 patch.

v4: (Tvrtko)
- Dropped the patch added in v2 as it was deemed unnecessary.

v5: (Tvrtko)
- Fixed yet another typo in the drm core patch: should have
  passed caller_mode instead of mode to the iterator.

Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Nirmoy Das <nirmoy.das@intel.com>
Cc: Christian König <christian.koenig@amd.com>

Vivek Kasireddy (2):
  drm/mm: Add an iterator to optimally walk over holes for an allocation
    (v5)
  drm/i915/gem: Don't try to map and fence large scanout buffers (v9)

 drivers/gpu/drm/drm_mm.c        |  32 ++++----
 drivers/gpu/drm/i915/i915_gem.c | 128 +++++++++++++++++++++++---------
 include/drm/drm_mm.h            |  36 +++++++++
 3 files changed, 145 insertions(+), 51 deletions(-)

-- 
2.34.1


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

* [CI 1/2] drm/mm: Add an iterator to optimally walk over holes for an allocation (v5)
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
@ 2022-02-28 19:04   ` Vivek Kasireddy
  -1 siblings, 0 replies; 16+ messages in thread
From: Vivek Kasireddy @ 2022-02-28 19:04 UTC (permalink / raw)
  To: intel-gfx, dri-devel

This iterator relies on drm_mm_first_hole() and drm_mm_next_hole()
functions to identify suitable holes for an allocation of a given
size by efficiently traversing the rbtree associated with the given
allocator.

It replaces the for loop in drm_mm_insert_node_in_range() and can
also be used by drm drivers to quickly identify holes of a certain
size within a given range.

v2: (Tvrtko)
- Prepend a double underscore for the newly exported first/next_hole
- s/each_best_hole/each_suitable_hole/g
- Mask out DRM_MM_INSERT_ONCE from the mode before calling
  first/next_hole and elsewhere.

v3: (Tvrtko)
- Reduce the number of hunks by retaining the "mode" variable name

v4:
- Typo: s/__drm_mm_next_hole(.., hole/__drm_mm_next_hole(.., pos

v5: (Tvrtko)
- Fixed another typo: should pass caller_mode instead of mode to
  the iterator in drm_mm_insert_node_in_range().

Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Acked-by: Christian König <christian.koenig@amd.com>
Suggested-by: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Signed-off-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
---
 drivers/gpu/drm/drm_mm.c | 32 +++++++++++++++-----------------
 include/drm/drm_mm.h     | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+), 17 deletions(-)

diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c
index 8257f9d4f619..6ff98a0e4df3 100644
--- a/drivers/gpu/drm/drm_mm.c
+++ b/drivers/gpu/drm/drm_mm.c
@@ -352,10 +352,10 @@ static struct drm_mm_node *find_hole_addr(struct drm_mm *mm, u64 addr, u64 size)
 	return node;
 }
 
-static struct drm_mm_node *
-first_hole(struct drm_mm *mm,
-	   u64 start, u64 end, u64 size,
-	   enum drm_mm_insert_mode mode)
+struct drm_mm_node *
+__drm_mm_first_hole(struct drm_mm *mm,
+		    u64 start, u64 end, u64 size,
+		    enum drm_mm_insert_mode mode)
 {
 	switch (mode) {
 	default:
@@ -374,6 +374,7 @@ first_hole(struct drm_mm *mm,
 						hole_stack);
 	}
 }
+EXPORT_SYMBOL(__drm_mm_first_hole);
 
 /**
  * DECLARE_NEXT_HOLE_ADDR - macro to declare next hole functions
@@ -410,11 +411,11 @@ static struct drm_mm_node *name(struct drm_mm_node *entry, u64 size)	\
 DECLARE_NEXT_HOLE_ADDR(next_hole_high_addr, rb_left, rb_right)
 DECLARE_NEXT_HOLE_ADDR(next_hole_low_addr, rb_right, rb_left)
 
-static struct drm_mm_node *
-next_hole(struct drm_mm *mm,
-	  struct drm_mm_node *node,
-	  u64 size,
-	  enum drm_mm_insert_mode mode)
+struct drm_mm_node *
+__drm_mm_next_hole(struct drm_mm *mm,
+		   struct drm_mm_node *node,
+		   u64 size,
+		   enum drm_mm_insert_mode mode)
 {
 	switch (mode) {
 	default:
@@ -432,6 +433,7 @@ next_hole(struct drm_mm *mm,
 		return &node->hole_stack == &mm->hole_stack ? NULL : node;
 	}
 }
+EXPORT_SYMBOL(__drm_mm_next_hole);
 
 /**
  * drm_mm_reserve_node - insert an pre-initialized node
@@ -516,11 +518,11 @@ int drm_mm_insert_node_in_range(struct drm_mm * const mm,
 				u64 size, u64 alignment,
 				unsigned long color,
 				u64 range_start, u64 range_end,
-				enum drm_mm_insert_mode mode)
+				enum drm_mm_insert_mode caller_mode)
 {
 	struct drm_mm_node *hole;
 	u64 remainder_mask;
-	bool once;
+	enum drm_mm_insert_mode mode = caller_mode & ~DRM_MM_INSERT_ONCE;
 
 	DRM_MM_BUG_ON(range_start > range_end);
 
@@ -533,13 +535,9 @@ int drm_mm_insert_node_in_range(struct drm_mm * const mm,
 	if (alignment <= 1)
 		alignment = 0;
 
-	once = mode & DRM_MM_INSERT_ONCE;
-	mode &= ~DRM_MM_INSERT_ONCE;
-
 	remainder_mask = is_power_of_2(alignment) ? alignment - 1 : 0;
-	for (hole = first_hole(mm, range_start, range_end, size, mode);
-	     hole;
-	     hole = once ? NULL : next_hole(mm, hole, size, mode)) {
+	drm_mm_for_each_suitable_hole(hole, mm, range_start, range_end,
+				      size, caller_mode) {
 		u64 hole_start = __drm_mm_hole_node_start(hole);
 		u64 hole_end = hole_start + hole->hole_size;
 		u64 adj_start, adj_end;
diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h
index ac33ba1b18bc..dff6db627807 100644
--- a/include/drm/drm_mm.h
+++ b/include/drm/drm_mm.h
@@ -400,6 +400,42 @@ static inline u64 drm_mm_hole_node_end(const struct drm_mm_node *hole_node)
 	     1 : 0; \
 	     pos = list_next_entry(pos, hole_stack))
 
+struct drm_mm_node *
+__drm_mm_first_hole(struct drm_mm *mm,
+		    u64 start, u64 end, u64 size,
+		    enum drm_mm_insert_mode mode);
+
+struct drm_mm_node *
+__drm_mm_next_hole(struct drm_mm *mm,
+		   struct drm_mm_node *node,
+		   u64 size,
+		   enum drm_mm_insert_mode mode);
+
+/**
+ * drm_mm_for_each_suitable_hole - iterator to optimally walk over all
+ * holes that can fit an allocation of the given @size.
+ * @pos: &drm_mm_node used internally to track progress
+ * @mm: &drm_mm allocator to walk
+ * @range_start: start of the allowed range for the allocation
+ * @range_end: end of the allowed range for the allocation
+ * @size: size of the allocation
+ * @mode: fine-tune the allocation search
+ *
+ * This iterator walks over all holes suitable for the allocation of given
+ * @size in a very efficient manner. It is implemented by calling
+ * drm_mm_first_hole() and drm_mm_next_hole() which identify the
+ * appropriate holes within the given range by efficiently traversing the
+ * rbtree associated with @mm.
+ */
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))
+
 /*
  * Basic range manager support (drm_mm.c)
  */
-- 
2.34.1


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

* [Intel-gfx] [CI 1/2] drm/mm: Add an iterator to optimally walk over holes for an allocation (v5)
@ 2022-02-28 19:04   ` Vivek Kasireddy
  0 siblings, 0 replies; 16+ messages in thread
From: Vivek Kasireddy @ 2022-02-28 19:04 UTC (permalink / raw)
  To: intel-gfx, dri-devel

This iterator relies on drm_mm_first_hole() and drm_mm_next_hole()
functions to identify suitable holes for an allocation of a given
size by efficiently traversing the rbtree associated with the given
allocator.

It replaces the for loop in drm_mm_insert_node_in_range() and can
also be used by drm drivers to quickly identify holes of a certain
size within a given range.

v2: (Tvrtko)
- Prepend a double underscore for the newly exported first/next_hole
- s/each_best_hole/each_suitable_hole/g
- Mask out DRM_MM_INSERT_ONCE from the mode before calling
  first/next_hole and elsewhere.

v3: (Tvrtko)
- Reduce the number of hunks by retaining the "mode" variable name

v4:
- Typo: s/__drm_mm_next_hole(.., hole/__drm_mm_next_hole(.., pos

v5: (Tvrtko)
- Fixed another typo: should pass caller_mode instead of mode to
  the iterator in drm_mm_insert_node_in_range().

Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Acked-by: Christian König <christian.koenig@amd.com>
Suggested-by: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Signed-off-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
---
 drivers/gpu/drm/drm_mm.c | 32 +++++++++++++++-----------------
 include/drm/drm_mm.h     | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 51 insertions(+), 17 deletions(-)

diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c
index 8257f9d4f619..6ff98a0e4df3 100644
--- a/drivers/gpu/drm/drm_mm.c
+++ b/drivers/gpu/drm/drm_mm.c
@@ -352,10 +352,10 @@ static struct drm_mm_node *find_hole_addr(struct drm_mm *mm, u64 addr, u64 size)
 	return node;
 }
 
-static struct drm_mm_node *
-first_hole(struct drm_mm *mm,
-	   u64 start, u64 end, u64 size,
-	   enum drm_mm_insert_mode mode)
+struct drm_mm_node *
+__drm_mm_first_hole(struct drm_mm *mm,
+		    u64 start, u64 end, u64 size,
+		    enum drm_mm_insert_mode mode)
 {
 	switch (mode) {
 	default:
@@ -374,6 +374,7 @@ first_hole(struct drm_mm *mm,
 						hole_stack);
 	}
 }
+EXPORT_SYMBOL(__drm_mm_first_hole);
 
 /**
  * DECLARE_NEXT_HOLE_ADDR - macro to declare next hole functions
@@ -410,11 +411,11 @@ static struct drm_mm_node *name(struct drm_mm_node *entry, u64 size)	\
 DECLARE_NEXT_HOLE_ADDR(next_hole_high_addr, rb_left, rb_right)
 DECLARE_NEXT_HOLE_ADDR(next_hole_low_addr, rb_right, rb_left)
 
-static struct drm_mm_node *
-next_hole(struct drm_mm *mm,
-	  struct drm_mm_node *node,
-	  u64 size,
-	  enum drm_mm_insert_mode mode)
+struct drm_mm_node *
+__drm_mm_next_hole(struct drm_mm *mm,
+		   struct drm_mm_node *node,
+		   u64 size,
+		   enum drm_mm_insert_mode mode)
 {
 	switch (mode) {
 	default:
@@ -432,6 +433,7 @@ next_hole(struct drm_mm *mm,
 		return &node->hole_stack == &mm->hole_stack ? NULL : node;
 	}
 }
+EXPORT_SYMBOL(__drm_mm_next_hole);
 
 /**
  * drm_mm_reserve_node - insert an pre-initialized node
@@ -516,11 +518,11 @@ int drm_mm_insert_node_in_range(struct drm_mm * const mm,
 				u64 size, u64 alignment,
 				unsigned long color,
 				u64 range_start, u64 range_end,
-				enum drm_mm_insert_mode mode)
+				enum drm_mm_insert_mode caller_mode)
 {
 	struct drm_mm_node *hole;
 	u64 remainder_mask;
-	bool once;
+	enum drm_mm_insert_mode mode = caller_mode & ~DRM_MM_INSERT_ONCE;
 
 	DRM_MM_BUG_ON(range_start > range_end);
 
@@ -533,13 +535,9 @@ int drm_mm_insert_node_in_range(struct drm_mm * const mm,
 	if (alignment <= 1)
 		alignment = 0;
 
-	once = mode & DRM_MM_INSERT_ONCE;
-	mode &= ~DRM_MM_INSERT_ONCE;
-
 	remainder_mask = is_power_of_2(alignment) ? alignment - 1 : 0;
-	for (hole = first_hole(mm, range_start, range_end, size, mode);
-	     hole;
-	     hole = once ? NULL : next_hole(mm, hole, size, mode)) {
+	drm_mm_for_each_suitable_hole(hole, mm, range_start, range_end,
+				      size, caller_mode) {
 		u64 hole_start = __drm_mm_hole_node_start(hole);
 		u64 hole_end = hole_start + hole->hole_size;
 		u64 adj_start, adj_end;
diff --git a/include/drm/drm_mm.h b/include/drm/drm_mm.h
index ac33ba1b18bc..dff6db627807 100644
--- a/include/drm/drm_mm.h
+++ b/include/drm/drm_mm.h
@@ -400,6 +400,42 @@ static inline u64 drm_mm_hole_node_end(const struct drm_mm_node *hole_node)
 	     1 : 0; \
 	     pos = list_next_entry(pos, hole_stack))
 
+struct drm_mm_node *
+__drm_mm_first_hole(struct drm_mm *mm,
+		    u64 start, u64 end, u64 size,
+		    enum drm_mm_insert_mode mode);
+
+struct drm_mm_node *
+__drm_mm_next_hole(struct drm_mm *mm,
+		   struct drm_mm_node *node,
+		   u64 size,
+		   enum drm_mm_insert_mode mode);
+
+/**
+ * drm_mm_for_each_suitable_hole - iterator to optimally walk over all
+ * holes that can fit an allocation of the given @size.
+ * @pos: &drm_mm_node used internally to track progress
+ * @mm: &drm_mm allocator to walk
+ * @range_start: start of the allowed range for the allocation
+ * @range_end: end of the allowed range for the allocation
+ * @size: size of the allocation
+ * @mode: fine-tune the allocation search
+ *
+ * This iterator walks over all holes suitable for the allocation of given
+ * @size in a very efficient manner. It is implemented by calling
+ * drm_mm_first_hole() and drm_mm_next_hole() which identify the
+ * appropriate holes within the given range by efficiently traversing the
+ * rbtree associated with @mm.
+ */
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))
+
 /*
  * Basic range manager support (drm_mm.c)
  */
-- 
2.34.1


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

* [CI 2/2] drm/i915/gem: Don't try to map and fence large scanout buffers (v9)
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
@ 2022-02-28 19:04   ` Vivek Kasireddy
  -1 siblings, 0 replies; 16+ messages in thread
From: Vivek Kasireddy @ 2022-02-28 19:04 UTC (permalink / raw)
  To: intel-gfx, dri-devel

On platforms capable of allowing 8K (7680 x 4320) modes, pinning 2 or
more framebuffers/scanout buffers results in only one that is mappable/
fenceable. Therefore, pageflipping between these 2 FBs where only one
is mappable/fenceable creates latencies large enough to miss alternate
vblanks thereby producing less optimal framerate.

This mainly happens because when i915_gem_object_pin_to_display_plane()
is called to pin one of the FB objs, the associated vma is identified
as misplaced and therefore i915_vma_unbind() is called which unbinds and
evicts it. This misplaced vma gets subseqently pinned only when
i915_gem_object_ggtt_pin_ww() is called without PIN_MAPPABLE. This
results in a latency of ~10ms and happens every other vblank/repaint cycle.
Therefore, to fix this issue, we try to see if there is space to map
at-least two objects of a given size and return early if there isn't. This
would ensure that we do not try with PIN_MAPPABLE for any objects that
are too big to map thereby preventing unncessary unbind.

Testcase:
Running Weston and weston-simple-egl on an Alderlake_S (ADLS) platform
with a 8K@60 mode results in only ~40 FPS. Since upstream Weston submits
a frame ~7ms before the next vblank, the latencies seen between atomic
commit and flip event are 7, 24 (7 + 16.66), 7, 24..... suggesting that
it misses the vblank every other frame.

Here is the ftrace snippet that shows the source of the ~10ms latency:
              i915_gem_object_pin_to_display_plane() {
0.102 us   |    i915_gem_object_set_cache_level();
                i915_gem_object_ggtt_pin_ww() {
0.390 us   |      i915_vma_instance();
0.178 us   |      i915_vma_misplaced();
                  i915_vma_unbind() {
                  __i915_active_wait() {
0.082 us   |        i915_active_acquire_if_busy();
0.475 us   |      }
                  intel_runtime_pm_get() {
0.087 us   |        intel_runtime_pm_acquire();
0.259 us   |      }
                  __i915_active_wait() {
0.085 us   |        i915_active_acquire_if_busy();
0.240 us   |      }
                  __i915_vma_evict() {
                    ggtt_unbind_vma() {
                      gen8_ggtt_clear_range() {
10507.255 us |        }
10507.689 us |      }
10508.516 us |   }

v2: Instead of using bigjoiner checks, determine whether a scanout
    buffer is too big by checking to see if it is possible to map
    two of them into the ggtt.

v3 (Ville):
- Count how many fb objects can be fit into the available holes
  instead of checking for a hole twice the object size.
- Take alignment constraints into account.
- Limit this large scanout buffer check to >= Gen 11 platforms.

v4:
- Remove existing heuristic that checks just for size. (Ville)
- Return early if we find space to map at-least two objects. (Tvrtko)
- Slightly update the commit message.

v5: (Tvrtko)
- Rename the function to indicate that the object may be too big to
  map into the aperture.
- Account for guard pages while calculating the total size required
  for the object.
- Do not subject all objects to the heuristic check and instead
  consider objects only of a certain size.
- Do the hole walk using the rbtree.
- Preserve the existing PIN_NONBLOCK logic.
- Drop the PIN_MAPPABLE check while pinning the VMA.

v6: (Tvrtko)
- Return 0 on success and the specific error code on failure to
  preserve the existing behavior.

v7: (Ville)
- Drop the HAS_GMCH(i915), DISPLAY_VER(i915) < 11 and
  size < ggtt->mappable_end / 4 checks.
- Drop the redundant check that is based on previous heuristic.

v8:
- Make sure that we are holding the mutex associated with ggtt vm
  as we traverse the hole nodes.

v9: (Tvrtko)
- Use mutex_lock_interruptible_nested() instead of mutex_lock().

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Manasi Navare <manasi.d.navare@intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
---
 drivers/gpu/drm/i915/i915_gem.c | 128 +++++++++++++++++++++++---------
 1 file changed, 94 insertions(+), 34 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 2e10187cd0a0..4bef9eaa8b2e 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -49,6 +49,7 @@
 #include "gem/i915_gem_pm.h"
 #include "gem/i915_gem_region.h"
 #include "gem/i915_gem_userptr.h"
+#include "gem/i915_gem_tiling.h"
 #include "gt/intel_engine_user.h"
 #include "gt/intel_gt.h"
 #include "gt/intel_gt_pm.h"
@@ -879,6 +880,96 @@ static void discard_ggtt_vma(struct i915_vma *vma)
 	spin_unlock(&obj->vma.lock);
 }
 
+static int
+i915_gem_object_fits_in_aperture(struct drm_i915_gem_object *obj,
+				 u64 alignment, u64 flags)
+{
+	struct drm_i915_private *i915 = to_i915(obj->base.dev);
+	struct i915_ggtt *ggtt = to_gt(i915)->ggtt;
+	struct drm_mm_node *hole;
+	u64 hole_start, hole_end, start, end;
+	u64 fence_size, fence_alignment;
+	unsigned int count = 0;
+	int err = 0;
+
+	/*
+	 * If the required space is larger than the available
+	 * aperture, we will not able to find a slot for the
+	 * object and unbinding the object now will be in
+	 * vain. Worse, doing so may cause us to ping-pong
+	 * the object in and out of the Global GTT and
+	 * waste a lot of cycles under the mutex.
+	 */
+	if (obj->base.size > ggtt->mappable_end)
+		return -E2BIG;
+
+	/*
+	 * If NONBLOCK is set the caller is optimistically
+	 * trying to cache the full object within the mappable
+	 * aperture, and *must* have a fallback in place for
+	 * situations where we cannot bind the object. We
+	 * can be a little more lax here and use the fallback
+	 * more often to avoid costly migrations of ourselves
+	 * and other objects within the aperture.
+	 */
+	if (!(flags & PIN_NONBLOCK))
+		return 0;
+
+	/*
+	 * Other objects such as batchbuffers are fairly small compared
+	 * to FBs and are unlikely to exahust the aperture space.
+	 * Therefore, return early if this obj is not an FB.
+	 */
+	if (!i915_gem_object_is_framebuffer(obj))
+		return 0;
+
+	fence_size = i915_gem_fence_size(i915, obj->base.size,
+					 i915_gem_object_get_tiling(obj),
+					 i915_gem_object_get_stride(obj));
+
+	if (i915_vm_has_cache_coloring(&ggtt->vm))
+		fence_size += 2 * I915_GTT_PAGE_SIZE;
+
+	fence_alignment = i915_gem_fence_alignment(i915, obj->base.size,
+						   i915_gem_object_get_tiling(obj),
+						   i915_gem_object_get_stride(obj));
+	alignment = max_t(u64, alignment, fence_alignment);
+
+	err = mutex_lock_interruptible_nested(&ggtt->vm.mutex, 0);
+	if (err)
+		return err;
+
+	/*
+	 * Assuming this object is a large scanout buffer, we try to find
+	 * out if there is room to map at-least two of them. There could
+	 * be space available to map one but to be consistent, we try to
+	 * avoid mapping/fencing any of them.
+	 */
+	drm_mm_for_each_suitable_hole(hole, &ggtt->vm.mm, 0, ggtt->mappable_end,
+				      fence_size, DRM_MM_INSERT_LOW) {
+		hole_start = drm_mm_hole_node_start(hole);
+		hole_end = hole_start + hole->hole_size;
+
+		do {
+			start = round_up(hole_start, alignment);
+			end = min_t(u64, hole_end, ggtt->mappable_end);
+
+			if (range_overflows(start, fence_size, end))
+				break;
+
+			if (++count >= 2) {
+				mutex_unlock(&ggtt->vm.mutex);
+				return 0;
+			}
+
+			hole_start = start + fence_size;
+		} while (1);
+	}
+
+	mutex_unlock(&ggtt->vm.mutex);
+	return -ENOSPC;
+}
+
 struct i915_vma *
 i915_gem_object_ggtt_pin_ww(struct drm_i915_gem_object *obj,
 			    struct i915_gem_ww_ctx *ww,
@@ -894,36 +985,9 @@ i915_gem_object_ggtt_pin_ww(struct drm_i915_gem_object *obj,
 
 	if (flags & PIN_MAPPABLE &&
 	    (!view || view->type == I915_GGTT_VIEW_NORMAL)) {
-		/*
-		 * If the required space is larger than the available
-		 * aperture, we will not able to find a slot for the
-		 * object and unbinding the object now will be in
-		 * vain. Worse, doing so may cause us to ping-pong
-		 * the object in and out of the Global GTT and
-		 * waste a lot of cycles under the mutex.
-		 */
-		if (obj->base.size > ggtt->mappable_end)
-			return ERR_PTR(-E2BIG);
-
-		/*
-		 * If NONBLOCK is set the caller is optimistically
-		 * trying to cache the full object within the mappable
-		 * aperture, and *must* have a fallback in place for
-		 * situations where we cannot bind the object. We
-		 * can be a little more lax here and use the fallback
-		 * more often to avoid costly migrations of ourselves
-		 * and other objects within the aperture.
-		 *
-		 * Half-the-aperture is used as a simple heuristic.
-		 * More interesting would to do search for a free
-		 * block prior to making the commitment to unbind.
-		 * That caters for the self-harm case, and with a
-		 * little more heuristics (e.g. NOFAULT, NOEVICT)
-		 * we could try to minimise harm to others.
-		 */
-		if (flags & PIN_NONBLOCK &&
-		    obj->base.size > ggtt->mappable_end / 2)
-			return ERR_PTR(-ENOSPC);
+		ret = i915_gem_object_fits_in_aperture(obj, alignment, flags);
+		if (ret)
+			return ERR_PTR(ret);
 	}
 
 new_vma:
@@ -935,10 +999,6 @@ i915_gem_object_ggtt_pin_ww(struct drm_i915_gem_object *obj,
 		if (flags & PIN_NONBLOCK) {
 			if (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))
 				return ERR_PTR(-ENOSPC);
-
-			if (flags & PIN_MAPPABLE &&
-			    vma->fence_size > ggtt->mappable_end / 2)
-				return ERR_PTR(-ENOSPC);
 		}
 
 		if (i915_vma_is_pinned(vma) || i915_vma_is_active(vma)) {
-- 
2.34.1


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

* [Intel-gfx] [CI 2/2] drm/i915/gem: Don't try to map and fence large scanout buffers (v9)
@ 2022-02-28 19:04   ` Vivek Kasireddy
  0 siblings, 0 replies; 16+ messages in thread
From: Vivek Kasireddy @ 2022-02-28 19:04 UTC (permalink / raw)
  To: intel-gfx, dri-devel

On platforms capable of allowing 8K (7680 x 4320) modes, pinning 2 or
more framebuffers/scanout buffers results in only one that is mappable/
fenceable. Therefore, pageflipping between these 2 FBs where only one
is mappable/fenceable creates latencies large enough to miss alternate
vblanks thereby producing less optimal framerate.

This mainly happens because when i915_gem_object_pin_to_display_plane()
is called to pin one of the FB objs, the associated vma is identified
as misplaced and therefore i915_vma_unbind() is called which unbinds and
evicts it. This misplaced vma gets subseqently pinned only when
i915_gem_object_ggtt_pin_ww() is called without PIN_MAPPABLE. This
results in a latency of ~10ms and happens every other vblank/repaint cycle.
Therefore, to fix this issue, we try to see if there is space to map
at-least two objects of a given size and return early if there isn't. This
would ensure that we do not try with PIN_MAPPABLE for any objects that
are too big to map thereby preventing unncessary unbind.

Testcase:
Running Weston and weston-simple-egl on an Alderlake_S (ADLS) platform
with a 8K@60 mode results in only ~40 FPS. Since upstream Weston submits
a frame ~7ms before the next vblank, the latencies seen between atomic
commit and flip event are 7, 24 (7 + 16.66), 7, 24..... suggesting that
it misses the vblank every other frame.

Here is the ftrace snippet that shows the source of the ~10ms latency:
              i915_gem_object_pin_to_display_plane() {
0.102 us   |    i915_gem_object_set_cache_level();
                i915_gem_object_ggtt_pin_ww() {
0.390 us   |      i915_vma_instance();
0.178 us   |      i915_vma_misplaced();
                  i915_vma_unbind() {
                  __i915_active_wait() {
0.082 us   |        i915_active_acquire_if_busy();
0.475 us   |      }
                  intel_runtime_pm_get() {
0.087 us   |        intel_runtime_pm_acquire();
0.259 us   |      }
                  __i915_active_wait() {
0.085 us   |        i915_active_acquire_if_busy();
0.240 us   |      }
                  __i915_vma_evict() {
                    ggtt_unbind_vma() {
                      gen8_ggtt_clear_range() {
10507.255 us |        }
10507.689 us |      }
10508.516 us |   }

v2: Instead of using bigjoiner checks, determine whether a scanout
    buffer is too big by checking to see if it is possible to map
    two of them into the ggtt.

v3 (Ville):
- Count how many fb objects can be fit into the available holes
  instead of checking for a hole twice the object size.
- Take alignment constraints into account.
- Limit this large scanout buffer check to >= Gen 11 platforms.

v4:
- Remove existing heuristic that checks just for size. (Ville)
- Return early if we find space to map at-least two objects. (Tvrtko)
- Slightly update the commit message.

v5: (Tvrtko)
- Rename the function to indicate that the object may be too big to
  map into the aperture.
- Account for guard pages while calculating the total size required
  for the object.
- Do not subject all objects to the heuristic check and instead
  consider objects only of a certain size.
- Do the hole walk using the rbtree.
- Preserve the existing PIN_NONBLOCK logic.
- Drop the PIN_MAPPABLE check while pinning the VMA.

v6: (Tvrtko)
- Return 0 on success and the specific error code on failure to
  preserve the existing behavior.

v7: (Ville)
- Drop the HAS_GMCH(i915), DISPLAY_VER(i915) < 11 and
  size < ggtt->mappable_end / 4 checks.
- Drop the redundant check that is based on previous heuristic.

v8:
- Make sure that we are holding the mutex associated with ggtt vm
  as we traverse the hole nodes.

v9: (Tvrtko)
- Use mutex_lock_interruptible_nested() instead of mutex_lock().

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Manasi Navare <manasi.d.navare@intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Signed-off-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
---
 drivers/gpu/drm/i915/i915_gem.c | 128 +++++++++++++++++++++++---------
 1 file changed, 94 insertions(+), 34 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 2e10187cd0a0..4bef9eaa8b2e 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -49,6 +49,7 @@
 #include "gem/i915_gem_pm.h"
 #include "gem/i915_gem_region.h"
 #include "gem/i915_gem_userptr.h"
+#include "gem/i915_gem_tiling.h"
 #include "gt/intel_engine_user.h"
 #include "gt/intel_gt.h"
 #include "gt/intel_gt_pm.h"
@@ -879,6 +880,96 @@ static void discard_ggtt_vma(struct i915_vma *vma)
 	spin_unlock(&obj->vma.lock);
 }
 
+static int
+i915_gem_object_fits_in_aperture(struct drm_i915_gem_object *obj,
+				 u64 alignment, u64 flags)
+{
+	struct drm_i915_private *i915 = to_i915(obj->base.dev);
+	struct i915_ggtt *ggtt = to_gt(i915)->ggtt;
+	struct drm_mm_node *hole;
+	u64 hole_start, hole_end, start, end;
+	u64 fence_size, fence_alignment;
+	unsigned int count = 0;
+	int err = 0;
+
+	/*
+	 * If the required space is larger than the available
+	 * aperture, we will not able to find a slot for the
+	 * object and unbinding the object now will be in
+	 * vain. Worse, doing so may cause us to ping-pong
+	 * the object in and out of the Global GTT and
+	 * waste a lot of cycles under the mutex.
+	 */
+	if (obj->base.size > ggtt->mappable_end)
+		return -E2BIG;
+
+	/*
+	 * If NONBLOCK is set the caller is optimistically
+	 * trying to cache the full object within the mappable
+	 * aperture, and *must* have a fallback in place for
+	 * situations where we cannot bind the object. We
+	 * can be a little more lax here and use the fallback
+	 * more often to avoid costly migrations of ourselves
+	 * and other objects within the aperture.
+	 */
+	if (!(flags & PIN_NONBLOCK))
+		return 0;
+
+	/*
+	 * Other objects such as batchbuffers are fairly small compared
+	 * to FBs and are unlikely to exahust the aperture space.
+	 * Therefore, return early if this obj is not an FB.
+	 */
+	if (!i915_gem_object_is_framebuffer(obj))
+		return 0;
+
+	fence_size = i915_gem_fence_size(i915, obj->base.size,
+					 i915_gem_object_get_tiling(obj),
+					 i915_gem_object_get_stride(obj));
+
+	if (i915_vm_has_cache_coloring(&ggtt->vm))
+		fence_size += 2 * I915_GTT_PAGE_SIZE;
+
+	fence_alignment = i915_gem_fence_alignment(i915, obj->base.size,
+						   i915_gem_object_get_tiling(obj),
+						   i915_gem_object_get_stride(obj));
+	alignment = max_t(u64, alignment, fence_alignment);
+
+	err = mutex_lock_interruptible_nested(&ggtt->vm.mutex, 0);
+	if (err)
+		return err;
+
+	/*
+	 * Assuming this object is a large scanout buffer, we try to find
+	 * out if there is room to map at-least two of them. There could
+	 * be space available to map one but to be consistent, we try to
+	 * avoid mapping/fencing any of them.
+	 */
+	drm_mm_for_each_suitable_hole(hole, &ggtt->vm.mm, 0, ggtt->mappable_end,
+				      fence_size, DRM_MM_INSERT_LOW) {
+		hole_start = drm_mm_hole_node_start(hole);
+		hole_end = hole_start + hole->hole_size;
+
+		do {
+			start = round_up(hole_start, alignment);
+			end = min_t(u64, hole_end, ggtt->mappable_end);
+
+			if (range_overflows(start, fence_size, end))
+				break;
+
+			if (++count >= 2) {
+				mutex_unlock(&ggtt->vm.mutex);
+				return 0;
+			}
+
+			hole_start = start + fence_size;
+		} while (1);
+	}
+
+	mutex_unlock(&ggtt->vm.mutex);
+	return -ENOSPC;
+}
+
 struct i915_vma *
 i915_gem_object_ggtt_pin_ww(struct drm_i915_gem_object *obj,
 			    struct i915_gem_ww_ctx *ww,
@@ -894,36 +985,9 @@ i915_gem_object_ggtt_pin_ww(struct drm_i915_gem_object *obj,
 
 	if (flags & PIN_MAPPABLE &&
 	    (!view || view->type == I915_GGTT_VIEW_NORMAL)) {
-		/*
-		 * If the required space is larger than the available
-		 * aperture, we will not able to find a slot for the
-		 * object and unbinding the object now will be in
-		 * vain. Worse, doing so may cause us to ping-pong
-		 * the object in and out of the Global GTT and
-		 * waste a lot of cycles under the mutex.
-		 */
-		if (obj->base.size > ggtt->mappable_end)
-			return ERR_PTR(-E2BIG);
-
-		/*
-		 * If NONBLOCK is set the caller is optimistically
-		 * trying to cache the full object within the mappable
-		 * aperture, and *must* have a fallback in place for
-		 * situations where we cannot bind the object. We
-		 * can be a little more lax here and use the fallback
-		 * more often to avoid costly migrations of ourselves
-		 * and other objects within the aperture.
-		 *
-		 * Half-the-aperture is used as a simple heuristic.
-		 * More interesting would to do search for a free
-		 * block prior to making the commitment to unbind.
-		 * That caters for the self-harm case, and with a
-		 * little more heuristics (e.g. NOFAULT, NOEVICT)
-		 * we could try to minimise harm to others.
-		 */
-		if (flags & PIN_NONBLOCK &&
-		    obj->base.size > ggtt->mappable_end / 2)
-			return ERR_PTR(-ENOSPC);
+		ret = i915_gem_object_fits_in_aperture(obj, alignment, flags);
+		if (ret)
+			return ERR_PTR(ret);
 	}
 
 new_vma:
@@ -935,10 +999,6 @@ i915_gem_object_ggtt_pin_ww(struct drm_i915_gem_object *obj,
 		if (flags & PIN_NONBLOCK) {
 			if (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))
 				return ERR_PTR(-ENOSPC);
-
-			if (flags & PIN_MAPPABLE &&
-			    vma->fence_size > ggtt->mappable_end / 2)
-				return ERR_PTR(-ENOSPC);
 		}
 
 		if (i915_vma_is_pinned(vma) || i915_vma_is_active(vma)) {
-- 
2.34.1


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

* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
                   ` (2 preceding siblings ...)
  (?)
@ 2022-02-28 23:57 ` Patchwork
  -1 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2022-02-28 23:57 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation
URL   : https://patchwork.freedesktop.org/series/100847/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
0ae83c35ff14 drm/mm: Add an iterator to optimally walk over holes for an allocation (v5)
-:157: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'pos' - possible side-effects?
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

-:157: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'mm' - possible side-effects?
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

-:157: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'size' - possible side-effects?
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

-:157: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'mode' - possible side-effects?
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

-:157: CHECK:MACRO_ARG_PRECEDENCE: Macro argument 'mode' may be better as '(mode)' to avoid precedence issues
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

total: 0 errors, 0 warnings, 5 checks, 114 lines checked
81e2ccf8eadb drm/i915/gem: Don't try to map and fence large scanout buffers (v9)



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

* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
                   ` (3 preceding siblings ...)
  (?)
@ 2022-02-28 23:59 ` Patchwork
  -1 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2022-02-28 23:59 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation
URL   : https://patchwork.freedesktop.org/series/100847/
State : warning

== Summary ==

$ dim sparse --fast origin/drm-tip
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.



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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
                   ` (4 preceding siblings ...)
  (?)
@ 2022-03-01  0:31 ` Patchwork
  -1 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2022-03-01  0:31 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

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

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation
URL   : https://patchwork.freedesktop.org/series/100847/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11300 -> Patchwork_22439
====================================================

Summary
-------

  **FAILURE**

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

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

Participating hosts (46 -> 42)
------------------------------

  Additional (1): bat-jsl-2 
  Missing    (5): shard-tglu fi-bsw-cyan shard-rkl shard-dg1 fi-bdw-samus 

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_rpm@module-reload:
    - bat-adlp-4:         [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/bat-adlp-4/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/bat-adlp-4/igt@i915_pm_rpm@module-reload.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@fork-compute0:
    - fi-blb-e6850:       NOTRUN -> [SKIP][3] ([fdo#109271]) +17 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/fi-blb-e6850/igt@amdgpu/amd_cs_nop@fork-compute0.html

  * igt@i915_pm_rps@basic-api:
    - bat-dg1-5:          [PASS][4] -> [FAIL][5] ([i915#4032])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/bat-dg1-5/igt@i915_pm_rps@basic-api.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/bat-dg1-5/igt@i915_pm_rps@basic-api.html

  * igt@kms_flip@basic-plain-flip@a-edp1:
    - bat-adlp-4:         [PASS][6] -> [DMESG-WARN][7] ([i915#3576])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/bat-adlp-4/igt@kms_flip@basic-plain-flip@a-edp1.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/bat-adlp-4/igt@kms_flip@basic-plain-flip@a-edp1.html

  * igt@prime_vgem@basic-userptr:
    - fi-skl-6600u:       NOTRUN -> [SKIP][8] ([fdo#109271]) +18 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/fi-skl-6600u/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - bat-adlp-4:         NOTRUN -> [FAIL][9] ([i915#4312])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/bat-adlp-4/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-glk-dsi:         [DMESG-FAIL][10] ([i915#541]) -> [PASS][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-glk-dsi/igt@i915_selftest@live@gt_heartbeat.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/fi-glk-dsi/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@requests:
    - fi-blb-e6850:       [DMESG-FAIL][12] ([i915#5026]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-blb-e6850/igt@i915_selftest@live@requests.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/fi-blb-e6850/igt@i915_selftest@live@requests.html

  * igt@kms_flip@basic-flip-vs-modeset@a-edp1:
    - bat-adlp-4:         [DMESG-WARN][14] ([i915#3576]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/bat-adlp-4/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/bat-adlp-4/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html

  * igt@kms_force_connector_basic@force-connector-state:
    - fi-cfl-8109u:       [DMESG-WARN][16] ([i915#165]) -> [PASS][17] +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-cfl-8109u/igt@kms_force_connector_basic@force-connector-state.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/fi-cfl-8109u/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-b:
    - fi-cfl-8109u:       [DMESG-WARN][18] ([i915#165] / [i915#295]) -> [PASS][19] +13 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc-pipe-b.html

  * igt@kms_psr@primary_page_flip:
    - fi-skl-6600u:       [FAIL][20] ([i915#4547]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11300/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22439/fi-skl-6600u/igt@kms_psr@primary_page_flip.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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#165]: https://gitlab.freedesktop.org/drm/intel/issues/165
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#295]: https://gitlab.freedesktop.org/drm/intel/issues/295
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4898]: https://gitlab.freedesktop.org/drm/intel/issues/4898
  [i915#5026]: https://gitlab.freedesktop.org/drm/intel/issues/5026
  [i915#5068]: https://gitlab.freedesktop.org/drm/intel/issues/5068
  [i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541


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

  * Linux: CI_DRM_11300 -> Patchwork_22439

  CI-20190529: 20190529
  CI_DRM_11300: 10eb9bc8729d3da3fe8f53c8e5b70b8a9a52b6e0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6361: 2372a4beb6a33c5f0799a4a8ccbb93794f52dbca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_22439: 81e2ccf8eadbd5227809b761f9be2f8e95852b4e @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

81e2ccf8eadb drm/i915/gem: Don't try to map and fence large scanout buffers (v9)
0ae83c35ff14 drm/mm: Add an iterator to optimally walk over holes for an allocation (v5)

== Logs ==

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

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

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

* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
                   ` (5 preceding siblings ...)
  (?)
@ 2022-03-01 12:01 ` Patchwork
  -1 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2022-03-01 12:01 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
URL   : https://patchwork.freedesktop.org/series/100847/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
fa72da567471 drm/mm: Add an iterator to optimally walk over holes for an allocation (v5)
-:157: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'pos' - possible side-effects?
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

-:157: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'mm' - possible side-effects?
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

-:157: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'size' - possible side-effects?
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

-:157: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'mode' - possible side-effects?
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

-:157: CHECK:MACRO_ARG_PRECEDENCE: Macro argument 'mode' may be better as '(mode)' to avoid precedence issues
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

total: 0 errors, 0 warnings, 5 checks, 114 lines checked
123152f2c12b drm/i915/gem: Don't try to map and fence large scanout buffers (v9)



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

* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
                   ` (6 preceding siblings ...)
  (?)
@ 2022-03-01 12:03 ` Patchwork
  -1 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2022-03-01 12:03 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
URL   : https://patchwork.freedesktop.org/series/100847/
State : warning

== Summary ==

$ dim sparse --fast origin/drm-tip
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.



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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
                   ` (7 preceding siblings ...)
  (?)
@ 2022-03-01 12:32 ` Patchwork
  -1 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2022-03-01 12:32 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

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

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
URL   : https://patchwork.freedesktop.org/series/100847/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11302 -> Patchwork_22447
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (49 -> 43)
------------------------------

  Additional (1): fi-pnv-d510 
  Missing    (7): shard-tglu fi-bsw-cyan fi-icl-u2 fi-kbl-guc shard-rkl shard-dg1 fi-bdw-samus 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - fi-skl-6600u:       [PASS][1] -> [INCOMPLETE][2] ([i915#4547])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/fi-skl-6600u/igt@gem_exec_suspend@basic-s3@smem.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/fi-skl-6600u/igt@gem_exec_suspend@basic-s3@smem.html
    - fi-bdw-5557u:       [PASS][3] -> [INCOMPLETE][4] ([i915#146])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@gem_huc_copy@huc-copy:
    - fi-pnv-d510:        NOTRUN -> [SKIP][5] ([fdo#109271]) +57 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/fi-pnv-d510/igt@gem_huc_copy@huc-copy.html

  
#### Possible fixes ####

  * igt@kms_flip@basic-flip-vs-modeset@a-edp1:
    - bat-adlp-4:         [DMESG-WARN][6] ([i915#3576]) -> [PASS][7] +1 similar issue
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/bat-adlp-4/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/bat-adlp-4/igt@kms_flip@basic-flip-vs-modeset@a-edp1.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
  [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146
  [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
  [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547


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

  * Linux: CI_DRM_11302 -> Patchwork_22447

  CI-20190529: 20190529
  CI_DRM_11302: 680d0d26eca3df6dc7c9cac1c7cbe7404a255c7e @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6361: 2372a4beb6a33c5f0799a4a8ccbb93794f52dbca @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_22447: 123152f2c12b7f327cccf2feb9edac56f5b7bbf0 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

123152f2c12b drm/i915/gem: Don't try to map and fence large scanout buffers (v9)
fa72da567471 drm/mm: Add an iterator to optimally walk over holes for an allocation (v5)

== Logs ==

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

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

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
  2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
                   ` (8 preceding siblings ...)
  (?)
@ 2022-03-01 19:23 ` Patchwork
  2022-03-02  8:41   ` Tvrtko Ursulin
  -1 siblings, 1 reply; 16+ messages in thread
From: Patchwork @ 2022-03-01 19:23 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

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

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
URL   : https://patchwork.freedesktop.org/series/100847/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_11302_full -> Patchwork_22447_full
====================================================

Summary
-------

  **FAILURE**

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

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@drm_mm@all@replace:
    - shard-skl:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-skl10/igt@drm_mm@all@replace.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl5/igt@drm_mm@all@replace.html

  * igt@gem_exec_schedule@preemptive-hang@vecs0:
    - shard-glk:          NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk9/igt@gem_exec_schedule@preemptive-hang@vecs0.html

  * igt@gem_exec_schedule@submit-early-slice@bcs0:
    - shard-glk:          [PASS][4] -> [INCOMPLETE][5] +2 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/igt@gem_exec_schedule@submit-early-slice@bcs0.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk7/igt@gem_exec_schedule@submit-early-slice@bcs0.html

  * igt@kms_rotation_crc@primary-rotation-180:
    - shard-kbl:          [PASS][6] -> [INCOMPLETE][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-kbl6/igt@kms_rotation_crc@primary-rotation-180.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-kbl6/igt@kms_rotation_crc@primary-rotation-180.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-glk:          [SKIP][8] ([fdo#109271]) -> [INCOMPLETE][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/igt@gem_exec_balancer@parallel-balancer.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk8/igt@gem_exec_balancer@parallel-balancer.html

  * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][10] ([i915#2122]) -> [INCOMPLETE][11]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html

  
#### Suppressed ####

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

  * {igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-1-planes-downscale}:
    - {shard-tglu}:       NOTRUN -> [SKIP][12] +15 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-1-planes-downscale.html

  * {igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-hdmi-a-2-scaler-with-pixel-format}:
    - shard-glk:          [PASS][13] -> [INCOMPLETE][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk2/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-hdmi-a-2-scaler-with-pixel-format.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk5/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-hdmi-a-2-scaler-with-pixel-format.html

  * {igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-3-scaler-with-rotation}:
    - {shard-dg1}:        NOTRUN -> [SKIP][15] +3 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-dg1-18/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-3-scaler-with-rotation.html

  * {igt@kms_plane_scaling@upscale-with-rotation-20x20}:
    - {shard-rkl}:        NOTRUN -> [SKIP][16] +8 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-5/igt@kms_plane_scaling@upscale-with-rotation-20x20.html

  
New tests
---------

  New tests have been introduced between CI_DRM_11302_full and Patchwork_22447_full:

### New IGT tests (126) ###

  * igt@gem_create@create-clear:
    - Statuses : 9 pass(s)
    - Exec time: [32.65, 37.06] s

  * igt@gem_ctx_engines@none:
    - Statuses : 8 pass(s)
    - Exec time: [0.00] s

  * igt@gem_ctx_exec@basic-norecovery:
    - Statuses : 9 pass(s)
    - Exec time: [0.01, 0.26] s

  * igt@gem_ctx_sseu@mmap-args:
    - Statuses : 4 skip(s)
    - Exec time: [0.0] s

  * igt@gem_eio@context-create:
    - Statuses : 7 pass(s)
    - Exec time: [0.02, 0.28] s

  * igt@gem_exec_create@forked:
    - Statuses :
    - Exec time: [None] s

  * igt@gem_exec_reloc@basic-scanout@bcs0:
    - Statuses : 8 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.34] s

  * igt@gem_exec_reloc@basic-scanout@rcs0:
    - Statuses : 8 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.57] s

  * igt@gem_exec_reloc@basic-scanout@vcs0:
    - Statuses : 8 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.36] s

  * igt@gem_exec_reloc@basic-scanout@vcs1:
    - Statuses : 4 pass(s)
    - Exec time: [0.10, 0.18] s

  * igt@gem_exec_reloc@basic-scanout@vecs0:
    - Statuses : 7 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.32] s

  * igt@gem_exec_suspend@basic:
    - Statuses :
    - Exec time: [None] s

  * igt@gem_exec_whisper@basic-contexts:
    - Statuses : 6 pass(s)
    - Exec time: [1.39, 22.89] s

  * igt@gem_exec_whisper@basic-contexts-all:
    - Statuses : 9 pass(s)
    - Exec time: [1.60, 21.84] s

  * igt@gem_exec_whisper@basic-contexts-forked:
    - Statuses : 7 pass(s)
    - Exec time: [5.18, 26.73] s

  * igt@gem_exec_whisper@basic-contexts-forked-all:
    - Statuses : 8 pass(s)
    - Exec time: [18.93, 34.05] s

  * igt@gem_exec_whisper@basic-contexts-priority:
    - Statuses :
    - Exec time: [None] s

  * igt@gem_exec_whisper@basic-contexts-priority-all:
    - Statuses : 7 pass(s) 1 skip(s)
    - Exec time: [0.00, 24.87] s

  * igt@gem_exec_whisper@basic-fds:
    - Statuses : 9 pass(s)
    - Exec time: [2.06, 12.59] s

  * igt@gem_exec_whisper@basic-fds-all:
    - Statuses : 7 pass(s)
    - Exec time: [2.55, 23.90] s

  * igt@gem_exec_whisper@basic-fds-forked:
    - Statuses : 6 pass(s)
    - Exec time: [6.01, 24.95] s

  * igt@gem_exec_whisper@basic-fds-forked-all:
    - Statuses :
    - Exec time: [None] s

  * igt@gem_exec_whisper@basic-fds-priority:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.00, 25.40] s

  * igt@gem_exec_whisper@basic-fds-priority-all:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.00, 33.68] s

  * igt@gem_exec_whisper@basic-forked:
    - Statuses : 8 pass(s)
    - Exec time: [3.48, 22.11] s

  * igt@gem_exec_whisper@basic-forked-all:
    - Statuses :
    - Exec time: [None] s

  * igt@gem_exec_whisper@basic-normal:
    - Statuses : 9 pass(s)
    - Exec time: [0.95, 16.87] s

  * igt@gem_exec_whisper@basic-normal-all:
    - Statuses : 9 pass(s)
    - Exec time: [1.28, 22.17] s

  * igt@gem_exec_whisper@basic-queues:
    - Statuses : 7 pass(s) 1 skip(s)
    - Exec time: [0.00, 22.56] s

  * igt@gem_exec_whisper@basic-queues-all:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.00, 12.49] s

  * igt@gem_exec_whisper@basic-queues-forked:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.00, 25.30] s

  * igt@gem_exec_whisper@basic-queues-forked-all:
    - Statuses : 9 pass(s) 1 skip(s)
    - Exec time: [0.00, 29.98] s

  * igt@gem_exec_whisper@basic-queues-priority:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.00, 25.27] s

  * igt@gem_exec_whisper@basic-queues-priority-all:
    - Statuses :
    - Exec time: [None] s

  * igt@gem_exec_whisper@basic-sync:
    - Statuses : 6 pass(s)
    - Exec time: [1.16, 21.73] s

  * igt@gem_exec_whisper@basic-sync-all:
    - Statuses : 7 pass(s)
    - Exec time: [1.34, 22.12] s

  * igt@gem_render_copy@linear:
    - Statuses :
    - Exec time: [None] s

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_backlight@bad-brightness:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.01] s

  * igt@i915_pm_backlight@fade:
    - Statuses : 2 pass(s) 6 skip(s)
    - Exec time: [0.0, 2.36] s

  * igt@i915_pm_backlight@fade_with_dpms:
    - Statuses : 3 pass(s) 6 skip(s)
    - Exec time: [0.0, 5.12] s

  * igt@i915_pm_backlight@fade_with_suspend:
    - Statuses : 3 pass(s) 5 skip(s)
    - Exec time: [0.0, 5.04] s

  * igt@i915_pm_lpsp@screens-disabled:
    - Statuses : 8 skip(s)
    - Exec time: [0.0, 0.06] s

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - Statuses : 9 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.00] s

  * igt@i915_pm_rpm@cursor:
    - Statuses : 5 pass(s) 2 skip(s)
    - Exec time: [0.0, 36.01] s

  * igt@i915_pm_rpm@cursor-dpms:
    - Statuses : 7 pass(s) 1 skip(s)
    - Exec time: [0.0, 40.79] s

  * igt@i915_pm_rpm@debugfs-forcewake-user:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 14.34] s

  * igt@i915_pm_rpm@dpms-lpsp:
    - Statuses : 4 pass(s) 6 skip(s)
    - Exec time: [0.0, 0.68] s

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - Statuses : 4 pass(s) 6 skip(s)
    - Exec time: [0.0, 9.32] s

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - Statuses : 2 pass(s) 7 skip(s)
    - Exec time: [0.0, 4.75] s

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - Statuses : 2 pass(s) 6 skip(s)
    - Exec time: [0.0, 0.23] s

  * igt@i915_pm_rpm@drm-resources-equal:
    - Statuses : 5 pass(s) 2 skip(s)
    - Exec time: [0.0, 5.84] s

  * igt@i915_pm_rpm@fences:
    - Statuses : 6 pass(s) 2 skip(s)
    - Exec time: [0.0, 17.03] s

  * igt@i915_pm_rpm@fences-dpms:
    - Statuses : 6 pass(s) 2 skip(s)
    - Exec time: [0.0, 16.80] s

  * igt@i915_pm_rpm@gem-evict-pwrite:
    - Statuses : 4 pass(s) 2 skip(s)
    - Exec time: [0.0, 3.76] s

  * igt@i915_pm_rpm@gem-execbuf:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@gem-execbuf-stress:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - Statuses : 7 skip(s)
    - Exec time: [0.0, 0.09] s

  * igt@i915_pm_rpm@gem-idle:
    - Statuses : 7 pass(s) 1 skip(s)
    - Exec time: [0.0, 8.72] s

  * igt@i915_pm_rpm@gem-mmap-type:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_rpm@gem-mmap-type@gtt:
    - Statuses : 6 pass(s)
    - Exec time: [2.17, 22.92] s

  * igt@i915_pm_rpm@gem-mmap-type@uc:
    - Statuses : 6 pass(s)
    - Exec time: [1.02, 7.02] s

  * igt@i915_pm_rpm@gem-mmap-type@wb:
    - Statuses : 6 pass(s)
    - Exec time: [1.03, 6.49] s

  * igt@i915_pm_rpm@gem-mmap-type@wc:
    - Statuses : 6 pass(s)
    - Exec time: [1.04, 3.45] s

  * igt@i915_pm_rpm@gem-pread:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 6.25] s

  * igt@i915_pm_rpm@i2c:
    - Statuses : 6 pass(s) 2 skip(s)
    - Exec time: [0.0, 11.04] s

  * igt@i915_pm_rpm@legacy-planes:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@modeset-lpsp:
    - Statuses : 4 pass(s) 5 skip(s)
    - Exec time: [0.0, 4.85] s

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 46.16] s

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - Statuses : 4 pass(s) 5 skip(s)
    - Exec time: [0.0, 14.40] s

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - Statuses : 2 pass(s) 6 skip(s)
    - Exec time: [0.0, 3.62] s

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - Statuses : 3 pass(s) 6 skip(s)
    - Exec time: [0.0, 7.16] s

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - Statuses : 2 pass(s) 7 skip(s)
    - Exec time: [0.0, 4.89] s

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - Statuses : 7 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_rpm@pc8-residency:
    - Statuses : 8 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_rpm@pm-caching:
    - Statuses : 5 pass(s) 2 skip(s)
    - Exec time: [0.0, 19.04] s

  * igt@i915_pm_rpm@pm-tiling:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@reg-read-ioctl:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 7.94] s

  * igt@i915_pm_rpm@sysfs-read:
    - Statuses : 5 pass(s) 1 skip(s)
    - Exec time: [0.0, 4.01] s

  * igt@i915_pm_rpm@system-suspend:
    - Statuses : 7 pass(s) 1 skip(s)
    - Exec time: [0.0, 13.04] s

  * igt@i915_pm_rpm@system-suspend-devices:
    - Statuses : 9 pass(s) 1 skip(s)
    - Exec time: [0.0, 13.58] s

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - Statuses : 7 pass(s) 1 skip(s)
    - Exec time: [0.0, 86.65] s

  * igt@i915_pm_rpm@system-suspend-modeset:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rpm@universal-planes-dpms:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_pm_rps@min-max-config-idle:
    - Statuses : 1 fail(s) 8 pass(s)
    - Exec time: [0.14, 2.58] s

  * igt@i915_pm_rps@min-max-config-loaded:
    - Statuses : 8 pass(s)
    - Exec time: [0.33, 0.64] s

  * igt@i915_pm_rps@reset:
    - Statuses : 1 fail(s) 7 pass(s)
    - Exec time: [3.52, 3.76] s

  * igt@i915_pm_rps@waitboost:
    - Statuses : 8 pass(s)
    - Exec time: [2.52, 2.77] s

  * igt@i915_pm_sseu@full-enable:
    - Statuses : 3 pass(s) 4 skip(s)
    - Exec time: [0.0, 0.05] s

  * igt@kms_atomic_interruptible@atomic-setmode:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_content_protection@atomic-dpms:
    - Statuses : 3 skip(s) 2 timeout(s)
    - Exec time: [0.0, 121.44] s

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - Statuses : 9 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_content_protection@dp-mst-lic-type-1:
    - Statuses : 7 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_content_protection@dp-mst-type-0:
    - Statuses : 9 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_content_protection@dp-mst-type-1:
    - Statuses : 8 skip(s)
    - Exec time: [0.0] s

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

  * igt@kms_flip@basic-plain-flip@d-hdmi-a3:
    - Statuses : 1 pass(s)
    - Exec time: [0.65] s

  * igt@kms_flip@flip-vs-dpms-off-vs-modeset:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@flip-vs-modeset-vs-hang:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@nonexisting-fb:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@nonexisting-fb-interruptible@d-hdmi-a3:
    - Statuses : 1 pass(s)
    - Exec time: [0.62] s

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

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

  * igt@kms_hdr@bpc-switch:
    - Statuses : 1 fail(s) 6 pass(s) 2 skip(s)
    - Exec time: [0.0, 4.85] s

  * igt@kms_hdr@bpc-switch-dpms:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 5.81] s

  * igt@kms_hdr@bpc-switch-suspend:
    - Statuses : 5 pass(s) 2 skip(s)
    - Exec time: [0.0, 5.76] s

  * igt@kms_hdr@static-swap:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_hdr@static-toggle:
    - Statuses : 1 pass(s) 7 skip(s)
    - Exec time: [0.0, 3.74] s

  * igt@kms_hdr@static-toggle-dpms:
    - Statuses : 9 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_hdr@static-toggle-suspend:
    - Statuses : 8 skip(s)
    - Exec time: [0.0] s

  * igt@kms_lease@implicit-plane-lease:
    - Statuses : 6 pass(s)
    - Exec time: [0.00, 0.01] s

  * igt@kms_lease@invalid-create-leases:
    - Statuses : 8 pass(s)
    - Exec time: [0.00, 0.03] s

  * igt@kms_lease@lease-uevent:
    - Statuses : 8 pass(s)
    - Exec time: [1.01, 1.06] s

  * igt@kms_lease@lease_invalid_plane:
    - Statuses : 8 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@kms_lease@master-vs-lease:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_lease@multimaster-lease:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_lease@possible-crtcs-filtering:
    - Statuses : 6 pass(s)
    - Exec time: [0.00, 0.02] s

  * igt@kms_mmap_write_crc@main:
    - Statuses : 1 fail(s) 7 pass(s)
    - Exec time: [0.26, 23.60] s

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d-edp-1-planes-upscale-downscale:
    - Statuses : 1 pass(s)
    - Exec time: [1.28] s

  * igt@prime_mmap@test_correct:
    - Statuses :
    - Exec time: [None] s

  * igt@prime_mmap@test_userptr:
    - Statuses :
    - Exec time: [None] s

  * igt@prime_vgem@basic-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@prime_vgem@basic-fence-blt:
    - Statuses : 7 pass(s)
    - Exec time: [0.08, 0.33] s

  * igt@prime_vgem@coherency-blt:
    - Statuses : 6 pass(s)
    - Exec time: [0.55, 18.55] s

  

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

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

### CI changes ###

#### Possible fixes ####

  * boot:
    - shard-glk:          ([PASS][17], [FAIL][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41]) ([i915#4392]) -> ([PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/boot.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/boot.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/boot.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/boot.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk8/boot.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk8/boot.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk8/boot.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk7/boot.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk7/boot.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk7/boot.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/boot.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/boot.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/boot.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/boot.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk5/boot.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk5/boot.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk5/boot.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk3/boot.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk3/boot.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk3/boot.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk2/boot.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk2/boot.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk2/boot.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk1/boot.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk1/boot.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk9/boot.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk9/boot.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk9/boot.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk8/boot.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk8/boot.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk8/boot.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk7/boot.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk7/boot.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk7/boot.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk6/boot.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk6/boot.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk5/boot.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk5/boot.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk5/boot.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk4/boot.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk4/boot.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk3/boot.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk3/boot.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk3/boot.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk2/boot.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk2/boot.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk2/boot.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk1/boot.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk1/boot.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk1/boot.html

  

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [PASS][67] -> [TIMEOUT][68] ([i915#3063] / [i915#3648])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-tglb6/igt@gem_eio@unwedge-stress.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-tglb6/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-iclb:         [PASS][69] -> [SKIP][70] ([i915#4525])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb3/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_balancer@parallel-out-fence:
    - shard-kbl:          NOTRUN -> [DMESG-WARN][71] ([i915#5076]) +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-kbl1/igt@gem_exec_balancer@parallel-out-fence.html

  * igt@gem_exec_capture@pi@vcs0:
    - shard-skl:          NOTRUN -> [INCOMPLETE][72] ([i915#4547])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl1/igt@gem_exec_capture@pi@vcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          [PASS][73] -> [FAIL][74] ([i915#2842]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace@vecs0:
    - shard-kbl:          NOTRUN -> [FAIL][75] ([i915#2842]) +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         NOTRUN -> [FAIL][76] ([i915#2849])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_lmem_swapping@verify-random:
    - shard-skl:          NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#4613]) +3 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl4/igt@gem_lmem_swapping@verify-random.html

  * igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
    - shard-iclb:         NOTRUN -> [SKIP][78] ([i915#4270])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html

  * igt@gem_render_copy@yf-tiled-to-vebox-linear:
    - shard-iclb:         NOTRUN -> [SKIP][79] ([i915#768])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb6/igt@gem_render_copy@yf-tiled-to-vebox-linear.html

  * igt@gem_softpin@allocator-evict-all-engines:
    - shard-glk:          [PASS][80] -> [FAIL][81] ([i915#4171])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk7/igt@gem_softpin@allocator-evict-all-engines.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk4/igt@gem_softpin@allocator-evict-all-engines.html

  * igt@gem_softpin@noreloc-s3:
    - shard-apl:          [PASS][82] -> [DMESG-WARN][83] ([i915#180]) +2 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-apl3/igt@gem_softpin@noreloc-s3.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-apl8/igt@gem_softpin@noreloc-s3.html

  * igt@gem_userptr_blits@input-checking:
    - shard-skl:          NOTRUN -> [DMESG-WARN][84] ([i915#4991])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl6/igt@gem_userptr_blits@input-checking.html

  * igt@gen7_exec_parse@oacontrol-tracking:
    - shard-iclb:         NOTRUN -> [SKIP][85] ([fdo#109289])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb3/igt@gen7_exec_parse@oacontrol-tracking.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-tglb:         NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-tglb3/igt@gen9_exec_parse@shadow-peek.html

  * igt@i915_pm_backlight@fade_with_dpms (NEW):
    - {shard-tglu}:       NOTRUN -> [SKIP][87] ([i915#1155])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-tglu-3/igt@i915_pm_backlight@fade_with_dpms.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-iclb:         [PASS][88] -> [SKIP][89] ([i915#4281])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
    - shard-apl:          NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#1937])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-apl2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html

  * igt@i915_pm_lpsp@screens-disabled (NEW):
    - {shard-rkl}:        NOTRUN -> [SKIP][91] ([i915#1902])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-6/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         NOTRUN -> [WARN][92] ([i915#2684])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@drm-resources-equal (NEW):
    - {shard-rkl}:        NOTRUN -> [SKIP][93] ([fdo#109308])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-1/igt@i915_pm_rpm@drm-resources-equal.html

  * igt@i915_pm_rpm@fences (NEW):
    - {shard-rkl}:        NOTRUN -> [SKIP][94] ([i915#1849])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-4/igt@i915_pm_rpm@fences.html

  * igt@i915_pm_rpm@pm-caching (NEW):
    - {shard-dg1}:        NOTRUN -> [SKIP][95] ([i915#4077])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-dg1-16/igt@i915_pm_rpm@pm-caching.html

  * igt@i915_pm_rps@reset (NEW):
    - {shard-dg1}:        [PASS][96] -> [FAIL][97] ([i915#3719])
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-dg1-16/igt@i915_pm_rps@reset.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-dg1-13/igt@i915_pm_rps@reset.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-skl:          [PASS][98] -> [FAIL][99] ([i915#2521])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-skl5/igt@kms_async_flips@alternate-sync-async-flip.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl4/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_atomic_interruptible@atomic-setmode (NEW):
    - {shard-rkl}:        NOTRUN -> [SKIP][100] ([i915#1845]) +1 similar issue
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-1/igt@kms_atomic_interruptible@atomic-setmode.html

  * igt@kms_big_fb@linear-64bpp-rotate-270:
    - shard-iclb:         NOTRUN -> [SKIP][101] ([fdo#110725] / [fdo#111614])
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb6/igt@kms_big_fb@linear-64bpp-rotate-270.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - shard-kbl:          NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#3777])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-kbl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
    - shard-apl:          NOTRUN -> [SKIP][

== Logs ==

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

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

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
  2022-03-01 19:23 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-03-02  8:41   ` Tvrtko Ursulin
  0 siblings, 0 replies; 16+ messages in thread
From: Tvrtko Ursulin @ 2022-03-02  8:41 UTC (permalink / raw)
  To: intel-gfx, Patchwork, Vivek Kasireddy


Hi Vivek,

On 01/03/2022 19:23, Patchwork wrote:
> *Patch Details*
> *Series:*	drm/mm: Add an iterator to optimally walk over holes suitable 
> for an allocation (rev2)
> *URL:*	https://patchwork.freedesktop.org/series/100847/ 
> <https://patchwork.freedesktop.org/series/100847/>
> *State:*	failure
> *Details:* 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/index.html 
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/index.html>
> 
> 
>   CI Bug Log - changes from CI_DRM_11302_full -> Patchwork_22447_full
> 
> 
>     Summary
> 
> *FAILURE*
> 
> Serious unknown changes coming with Patchwork_22447_full absolutely need 
> to be
> verified manually.
> 
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_22447_full, please notify your bug team to allow 
> them
> to document this new failure mode, which will reduce false positives in CI.
> 
> 
>     Participating hosts (13 -> 13)
> 
> No changes in participating hosts
> 
> 
>     Possible new issues
> 
> Here are the unknown changes that may have been introduced in 
> Patchwork_22447_full:
> 
> 
>       IGT changes
> 
> 
>         Possible regressions
> 
>   *
> 
>     igt@drm_mm@all@replace:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-skl10/igt@drm_mm@all@replace.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl5/igt@drm_mm@all@replace.html>

This looked like a suspicious fail. But from test time to until it is terminated due exceeding the timeout is only a sub-second.
  	
<6> [539.988360] [IGT] drm_mm: starting dynamic subtest replace
<6> [540.010576] drm_mm: Testing DRM range manager (struct drm_mm), with random_seed=0x19e51e55 max_iterations=8192 max_prime=128
<4> [540.051192] [IGT] Per-test timeout exceeded. Killing the current test with SIGQUIT.
...
<6> [540.427965] task:drm_mm          state:R  running task     stack:13128 pid: 6896 ppid:  1037 flags:0x00004000
<6> [540.428142] Call Trace:
<6> [540.428164]  <TASK>
<6> [540.428300]  ? asm_sysvec_apic_timer_interrupt+0x12/0x20
<6> [540.428355]  ? lockdep_hardirqs_on+0xbf/0x130
<6> [540.428409]  ? rm_hole+0x7e/0x310
<6> [540.428476]  ? drm_mm_insert_node_in_range+0x2b3/0x3a0
<6> [540.428649]  ? expect_insert.isra.10+0x2f/0x80 [test_drm_mm]
<6> [540.428712]  ? assert_continuous+0x83/0x120 [test_drm_mm]
<6> [540.428842]  ? __igt_insert+0x2b5/0x560 [test_drm_mm]
<6> [540.429338]  ? tick_nohz_tick_stopped+0xd/0x30
<6> [540.429431]  ? wake_up_klogd.part.31+0x4a/0x60
<6> [540.429613]  ? igt_replace+0x46/0xb0 [test_drm_mm]
<6> [540.429678]  ? 0xffffffffa004b000
<6> [540.429736]  ? test_drm_mm_init+0xab/0x1000 [test_drm_mm]
<6> [540.429800]  ? 0xffffffffa004b000
<6> [540.429835]  ? do_one_initcall+0x56/0x2e0
<6> [540.429869]  ? do_init_module+0x1d/0x1e0
<6> [540.429919]  ? rcu_read_lock_sched_held+0x4d/0x80
<6> [540.429973]  ? kmem_cache_alloc_trace+0x1de/0x250
<6> [540.430202]  ? do_init_module+0x45/0x1e0
<6> [540.430259]  ? load_module+0x2740/0x29d0
<6> [540.430578]  ? __do_sys_finit_module+0xaf/0x120
<6> [540.430617]  ? __do_sys_finit_module+0xaf/0x120
<6> [540.430833]  ? do_syscall_64+0x3a/0xb0
<6> [540.430883]  ? entry_SYSCALL_64_after_hwframe+0x44/0xae
<6> [540.431171]  </TASK>

Looking at the test runner log we have this:

Starting dynamic subtest: insert
Dynamic subtest insert: SUCCESS (120.029s)
[540.455651] Per-test timeout exceeded. Killing the current test with SIGQUIT.
Starting dynamic subtest: replace

So actually insert test is the one which took long, but not that much longer than it can take in other CI runs as far as I could see. At least I randomly found one instance where it took >110s in the past.

CI history does not show the test as failing in the (visible) past though. Neither I can find anything in the issue tracker. But I don't think it is this patch at fault. No idea..

One thing you could still tweak would be to put the mode macro argument in drm_mm_for_each_suitable_hole into braces, as per checkpatch suggestion:

-:157: CHECK:MACRO_ARG_PRECEDENCE: Macro argument 'mode' may be better as '(mode)' to avoid precedence issues
#157: FILE: include/drm/drm_mm.h:430:
+#define drm_mm_for_each_suitable_hole(pos, mm, range_start, range_end, \
+				      size, mode) \
+	for (pos = __drm_mm_first_hole(mm, range_start, range_end, size, \
+				       mode & ~DRM_MM_INSERT_ONCE); \
+	     pos; \
+	     pos = mode & DRM_MM_INSERT_ONCE ? \
+	     NULL : __drm_mm_next_hole(mm, pos, size, \
+				       mode & ~DRM_MM_INSERT_ONCE))

Ending up with two instances of "(mode) & ~DRM_MM_INSERT_ONCE" and one "(mode) & DRM_MM_INSERT_ONCE".

Regards,

Tvrtko

>   *
> 
>     igt@gem_exec_schedule@preemptive-hang@vecs0:
> 
>       o shard-glk: NOTRUN -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk9/igt@gem_exec_schedule@preemptive-hang@vecs0.html>
>   *
> 
>     igt@gem_exec_schedule@submit-early-slice@bcs0:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/igt@gem_exec_schedule@submit-early-slice@bcs0.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk7/igt@gem_exec_schedule@submit-early-slice@bcs0.html>
>         +2 similar issues
>   *
> 
>     igt@kms_rotation_crc@primary-rotation-180:
> 
>       o shard-kbl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-kbl6/igt@kms_rotation_crc@primary-rotation-180.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-kbl6/igt@kms_rotation_crc@primary-rotation-180.html>
> 
>         Warnings
> 
>   *
> 
>     igt@gem_exec_balancer@parallel-balancer:
> 
>       o shard-glk: SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/igt@gem_exec_balancer@parallel-balancer.html>
>         ([fdo#109271]) -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk8/igt@gem_exec_balancer@parallel-balancer.html>
>   *
> 
>     igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
> 
>       o shard-glk: FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk5/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html>
>         ([i915#2122]) -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html>
> 
> 
>         Suppressed
> 
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
> 
>   *
> 
>     {igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-1-planes-downscale}:
> 
>       o {shard-tglu}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-1-planes-downscale.html>
>         +15 similar issues
>   *
> 
>     {igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-hdmi-a-2-scaler-with-pixel-format}:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk2/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-hdmi-a-2-scaler-with-pixel-format.html>
>         -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk5/igt@kms_plane_scaling@scaler-with-pixel-format-unity-scaling@pipe-b-hdmi-a-2-scaler-with-pixel-format.html>
>   *
> 
>     {igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-3-scaler-with-rotation}:
> 
>       o {shard-dg1}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-dg1-18/igt@kms_plane_scaling@scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-3-scaler-with-rotation.html>
>         +3 similar issues
>   *
> 
>     {igt@kms_plane_scaling@upscale-with-rotation-20x20}:
> 
>       o {shard-rkl}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-5/igt@kms_plane_scaling@upscale-with-rotation-20x20.html>
>         +8 similar issues
> 
> 
>     New tests
> 
> New tests have been introduced between CI_DRM_11302_full and 
> Patchwork_22447_full:
> 
> 
>       New IGT tests (126)
> 
>   *
> 
>     igt@gem_create@create-clear:
> 
>       o Statuses : 9 pass(s)
>       o Exec time: [32.65, 37.06] s
>   *
> 
>     igt@gem_ctx_engines@none:
> 
>       o Statuses : 8 pass(s)
>       o Exec time: [0.00] s
>   *
> 
>     igt@gem_ctx_exec@basic-norecovery:
> 
>       o Statuses : 9 pass(s)
>       o Exec time: [0.01, 0.26] s
>   *
> 
>     igt@gem_ctx_sseu@mmap-args:
> 
>       o Statuses : 4 skip(s)
>       o Exec time: [0.0] s
>   *
> 
>     igt@gem_eio@context-create:
> 
>       o Statuses : 7 pass(s)
>       o Exec time: [0.02, 0.28] s
>   *
> 
>     igt@gem_exec_create@forked:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@gem_exec_reloc@basic-scanout@bcs0:
> 
>       o Statuses : 8 pass(s) 1 skip(s)
>       o Exec time: [0.0, 0.34] s
>   *
> 
>     igt@gem_exec_reloc@basic-scanout@rcs0:
> 
>       o Statuses : 8 pass(s) 1 skip(s)
>       o Exec time: [0.0, 0.57] s
>   *
> 
>     igt@gem_exec_reloc@basic-scanout@vcs0:
> 
>       o Statuses : 8 pass(s) 1 skip(s)
>       o Exec time: [0.0, 0.36] s
>   *
> 
>     igt@gem_exec_reloc@basic-scanout@vcs1:
> 
>       o Statuses : 4 pass(s)
>       o Exec time: [0.10, 0.18] s
>   *
> 
>     igt@gem_exec_reloc@basic-scanout@vecs0:
> 
>       o Statuses : 7 pass(s) 1 skip(s)
>       o Exec time: [0.0, 0.32] s
>   *
> 
>     igt@gem_exec_suspend@basic:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@gem_exec_whisper@basic-contexts:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [1.39, 22.89] s
>   *
> 
>     igt@gem_exec_whisper@basic-contexts-all:
> 
>       o Statuses : 9 pass(s)
>       o Exec time: [1.60, 21.84] s
>   *
> 
>     igt@gem_exec_whisper@basic-contexts-forked:
> 
>       o Statuses : 7 pass(s)
>       o Exec time: [5.18, 26.73] s
>   *
> 
>     igt@gem_exec_whisper@basic-contexts-forked-all:
> 
>       o Statuses : 8 pass(s)
>       o Exec time: [18.93, 34.05] s
>   *
> 
>     igt@gem_exec_whisper@basic-contexts-priority:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@gem_exec_whisper@basic-contexts-priority-all:
> 
>       o Statuses : 7 pass(s) 1 skip(s)
>       o Exec time: [0.00, 24.87] s
>   *
> 
>     igt@gem_exec_whisper@basic-fds:
> 
>       o Statuses : 9 pass(s)
>       o Exec time: [2.06, 12.59] s
>   *
> 
>     igt@gem_exec_whisper@basic-fds-all:
> 
>       o Statuses : 7 pass(s)
>       o Exec time: [2.55, 23.90] s
>   *
> 
>     igt@gem_exec_whisper@basic-fds-forked:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [6.01, 24.95] s
>   *
> 
>     igt@gem_exec_whisper@basic-fds-forked-all:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@gem_exec_whisper@basic-fds-priority:
> 
>       o Statuses : 5 pass(s) 1 skip(s)
>       o Exec time: [0.00, 25.40] s
>   *
> 
>     igt@gem_exec_whisper@basic-fds-priority-all:
> 
>       o Statuses : 5 pass(s) 1 skip(s)
>       o Exec time: [0.00, 33.68] s
>   *
> 
>     igt@gem_exec_whisper@basic-forked:
> 
>       o Statuses : 8 pass(s)
>       o Exec time: [3.48, 22.11] s
>   *
> 
>     igt@gem_exec_whisper@basic-forked-all:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@gem_exec_whisper@basic-normal:
> 
>       o Statuses : 9 pass(s)
>       o Exec time: [0.95, 16.87] s
>   *
> 
>     igt@gem_exec_whisper@basic-normal-all:
> 
>       o Statuses : 9 pass(s)
>       o Exec time: [1.28, 22.17] s
>   *
> 
>     igt@gem_exec_whisper@basic-queues:
> 
>       o Statuses : 7 pass(s) 1 skip(s)
>       o Exec time: [0.00, 22.56] s
>   *
> 
>     igt@gem_exec_whisper@basic-queues-all:
> 
>       o Statuses : 5 pass(s) 1 skip(s)
>       o Exec time: [0.00, 12.49] s
>   *
> 
>     igt@gem_exec_whisper@basic-queues-forked:
> 
>       o Statuses : 6 pass(s) 1 skip(s)
>       o Exec time: [0.00, 25.30] s
>   *
> 
>     igt@gem_exec_whisper@basic-queues-forked-all:
> 
>       o Statuses : 9 pass(s) 1 skip(s)
>       o Exec time: [0.00, 29.98] s
>   *
> 
>     igt@gem_exec_whisper@basic-queues-priority:
> 
>       o Statuses : 3 pass(s) 1 skip(s)
>       o Exec time: [0.00, 25.27] s
>   *
> 
>     igt@gem_exec_whisper@basic-queues-priority-all:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@gem_exec_whisper@basic-sync:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [1.16, 21.73] s
>   *
> 
>     igt@gem_exec_whisper@basic-sync-all:
> 
>       o Statuses : 7 pass(s)
>       o Exec time: [1.34, 22.12] s
>   *
> 
>     igt@gem_render_copy@linear:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@i915_pm_backlight@bad-brightness:
> 
>       o Statuses : 2 pass(s) 3 skip(s)
>       o Exec time: [0.0, 0.01] s
>   *
> 
>     igt@i915_pm_backlight@fade:
> 
>       o Statuses : 2 pass(s) 6 skip(s)
>       o Exec time: [0.0, 2.36] s
>   *
> 
>     igt@i915_pm_backlight@fade_with_dpms:
> 
>       o Statuses : 3 pass(s) 6 skip(s)
>       o Exec time: [0.0, 5.12] s
>   *
> 
>     igt@i915_pm_backlight@fade_with_suspend:
> 
>       o Statuses : 3 pass(s) 5 skip(s)
>       o Exec time: [0.0, 5.04] s
>   *
> 
>     igt@i915_pm_lpsp@screens-disabled:
> 
>       o Statuses : 8 skip(s)
>       o Exec time: [0.0, 0.06] s
>   *
> 
>     igt@i915_pm_rc6_residency@media-rc6-accuracy:
> 
>       o Statuses : 5 skip(s)
>       o Exec time: [0.0] s
>   *
> 
>     igt@i915_pm_rc6_residency@rc6-accuracy:
> 
>       o Statuses : 9 pass(s) 1 skip(s)
>       o Exec time: [0.0, 3.00] s
>   *
> 
>     igt@i915_pm_rpm@cursor:
> 
>       o Statuses : 5 pass(s) 2 skip(s)
>       o Exec time: [0.0, 36.01] s
>   *
> 
>     igt@i915_pm_rpm@cursor-dpms:
> 
>       o Statuses : 7 pass(s) 1 skip(s)
>       o Exec time: [0.0, 40.79] s
>   *
> 
>     igt@i915_pm_rpm@debugfs-forcewake-user:
> 
>       o Statuses : 6 pass(s) 1 skip(s)
>       o Exec time: [0.0, 14.34] s
>   *
> 
>     igt@i915_pm_rpm@dpms-lpsp:
> 
>       o Statuses : 4 pass(s) 6 skip(s)
>       o Exec time: [0.0, 0.68] s
>   *
> 
>     igt@i915_pm_rpm@dpms-mode-unset-lpsp:
> 
>       o Statuses : 4 pass(s) 6 skip(s)
>       o Exec time: [0.0, 9.32] s
>   *
> 
>     igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> 
>       o Statuses : 2 pass(s) 7 skip(s)
>       o Exec time: [0.0, 4.75] s
>   *
> 
>     igt@i915_pm_rpm@dpms-non-lpsp:
> 
>       o Statuses : 2 pass(s) 6 skip(s)
>       o Exec time: [0.0, 0.23] s
>   *
> 
>     igt@i915_pm_rpm@drm-resources-equal:
> 
>       o Statuses : 5 pass(s) 2 skip(s)
>       o Exec time: [0.0, 5.84] s
>   *
> 
>     igt@i915_pm_rpm@fences:
> 
>       o Statuses : 6 pass(s) 2 skip(s)
>       o Exec time: [0.0, 17.03] s
>   *
> 
>     igt@i915_pm_rpm@fences-dpms:
> 
>       o Statuses : 6 pass(s) 2 skip(s)
>       o Exec time: [0.0, 16.80] s
>   *
> 
>     igt@i915_pm_rpm@gem-evict-pwrite:
> 
>       o Statuses : 4 pass(s) 2 skip(s)
>       o Exec time: [0.0, 3.76] s
>   *
> 
>     igt@i915_pm_rpm@gem-execbuf:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@i915_pm_rpm@gem-execbuf-stress:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@i915_pm_rpm@gem-execbuf-stress-pc8:
> 
>       o Statuses : 7 skip(s)
>       o Exec time: [0.0, 0.09] s
>   *
> 
>     igt@i915_pm_rpm@gem-idle:
> 
>       o Statuses : 7 pass(s) 1 skip(s)
>       o Exec time: [0.0, 8.72] s
>   *
> 
>     igt@i915_pm_rpm@gem-mmap-type:
> 
>       o Statuses : 1 skip(s)
>       o Exec time: [0.0] s
>   *
> 
>     igt@i915_pm_rpm@gem-mmap-type@gtt:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [2.17, 22.92] s
>   *
> 
>     igt@i915_pm_rpm@gem-mmap-type@uc:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [1.02, 7.02] s
>   *
> 
>     igt@i915_pm_rpm@gem-mmap-type@wb:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [1.03, 6.49] s
>   *
> 
>     igt@i915_pm_rpm@gem-mmap-type@wc:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [1.04, 3.45] s
>   *
> 
>     igt@i915_pm_rpm@gem-pread:
> 
>       o Statuses : 6 pass(s) 1 skip(s)
>       o Exec time: [0.0, 6.25] s
>   *
> 
>     igt@i915_pm_rpm@i2c:
> 
>       o Statuses : 6 pass(s) 2 skip(s)
>       o Exec time: [0.0, 11.04] s
>   *
> 
>     igt@i915_pm_rpm@legacy-planes:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@i915_pm_rpm@modeset-lpsp:
> 
>       o Statuses : 4 pass(s) 5 skip(s)
>       o Exec time: [0.0, 4.85] s
>   *
> 
>     igt@i915_pm_rpm@modeset-lpsp-stress:
> 
>       o Statuses : 3 pass(s) 3 skip(s)
>       o Exec time: [0.0, 46.16] s
>   *
> 
>     igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
> 
>       o Statuses : 4 pass(s) 5 skip(s)
>       o Exec time: [0.0, 14.40] s
>   *
> 
>     igt@i915_pm_rpm@modeset-non-lpsp:
> 
>       o Statuses : 2 pass(s) 6 skip(s)
>       o Exec time: [0.0, 3.62] s
>   *
> 
>     igt@i915_pm_rpm@modeset-non-lpsp-stress:
> 
>       o Statuses : 3 pass(s) 6 skip(s)
>       o Exec time: [0.0, 7.16] s
>   *
> 
>     igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
> 
>       o Statuses : 2 pass(s) 7 skip(s)
>       o Exec time: [0.0, 4.89] s
>   *
> 
>     igt@i915_pm_rpm@modeset-pc8-residency-stress:
> 
>       o Statuses : 7 skip(s)
>       o Exec time: [0.0] s
>   *
> 
>     igt@i915_pm_rpm@pc8-residency:
> 
>       o Statuses : 8 skip(s)
>       o Exec time: [0.0] s
>   *
> 
>     igt@i915_pm_rpm@pm-caching:
> 
>       o Statuses : 5 pass(s) 2 skip(s)
>       o Exec time: [0.0, 19.04] s
>   *
> 
>     igt@i915_pm_rpm@pm-tiling:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@i915_pm_rpm@reg-read-ioctl:
> 
>       o Statuses : 6 pass(s) 1 skip(s)
>       o Exec time: [0.0, 7.94] s
>   *
> 
>     igt@i915_pm_rpm@sysfs-read:
> 
>       o Statuses : 5 pass(s) 1 skip(s)
>       o Exec time: [0.0, 4.01] s
>   *
> 
>     igt@i915_pm_rpm@system-suspend:
> 
>       o Statuses : 7 pass(s) 1 skip(s)
>       o Exec time: [0.0, 13.04] s
>   *
> 
>     igt@i915_pm_rpm@system-suspend-devices:
> 
>       o Statuses : 9 pass(s) 1 skip(s)
>       o Exec time: [0.0, 13.58] s
>   *
> 
>     igt@i915_pm_rpm@system-suspend-execbuf:
> 
>       o Statuses : 7 pass(s) 1 skip(s)
>       o Exec time: [0.0, 86.65] s
>   *
> 
>     igt@i915_pm_rpm@system-suspend-modeset:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@i915_pm_rpm@universal-planes-dpms:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@i915_pm_rps@min-max-config-idle:
> 
>       o Statuses : 1 fail(s) 8 pass(s)
>       o Exec time: [0.14, 2.58] s
>   *
> 
>     igt@i915_pm_rps@min-max-config-loaded:
> 
>       o Statuses : 8 pass(s)
>       o Exec time: [0.33, 0.64] s
>   *
> 
>     igt@i915_pm_rps@reset:
> 
>       o Statuses : 1 fail(s) 7 pass(s)
>       o Exec time: [3.52, 3.76] s
>   *
> 
>     igt@i915_pm_rps@waitboost:
> 
>       o Statuses : 8 pass(s)
>       o Exec time: [2.52, 2.77] s
>   *
> 
>     igt@i915_pm_sseu@full-enable:
> 
>       o Statuses : 3 pass(s) 4 skip(s)
>       o Exec time: [0.0, 0.05] s
>   *
> 
>     igt@kms_atomic_interruptible@atomic-setmode:
> 
>       o Statuses : 1 skip(s)
>       o Exec time: [0.0] s
>   *
> 
>     igt@kms_atomic_transition@plane-use-after-nonblocking-unbind:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@kms_content_protection@atomic-dpms:
> 
>       o Statuses : 3 skip(s) 2 timeout(s)
>       o Exec time: [0.0, 121.44] s
>   *
> 
>     igt@kms_content_protection@dp-mst-lic-type-0:
> 
>       o Statuses : 9 skip(s)
>       o Exec time: [0.0, 0.00] s
>   *
> 
>     igt@kms_content_protection@dp-mst-lic-type-1:
> 
>       o Statuses : 7 skip(s)
>       o Exec time: [0.0, 0.00] s
>   *
> 
>     igt@kms_content_protection@dp-mst-type-0:
> 
>       o Statuses : 9 skip(s)
>       o Exec time: [0.0, 0.00] s
>   *
> 
>     igt@kms_content_protection@dp-mst-type-1:
> 
>       o Statuses : 8 skip(s)
>       o Exec time: [0.0] s
>   *
> 
>     igt@kms_flip@absolute-wf_vblank@d-hdmi-a3:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.82] s
>   *
> 
>     igt@kms_flip@basic-plain-flip@d-hdmi-a3:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.65] s
>   *
> 
>     igt@kms_flip@flip-vs-dpms-off-vs-modeset:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@kms_flip@flip-vs-modeset-vs-hang:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@kms_flip@nonexisting-fb:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@kms_flip@nonexisting-fb-interruptible@d-hdmi-a3:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [0.62] s
>   *
> 
>     igt@kms_flip@plain-flip-fb-recreate-interruptible@d-hdmi-a3:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [7.95] s
>   *
> 
>     igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a3:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [8.07] s
>   *
> 
>     igt@kms_hdr@bpc-switch:
> 
>       o Statuses : 1 fail(s) 6 pass(s) 2 skip(s)
>       o Exec time: [0.0, 4.85] s
>   *
> 
>     igt@kms_hdr@bpc-switch-dpms:
> 
>       o Statuses : 3 pass(s) 3 skip(s)
>       o Exec time: [0.0, 5.81] s
>   *
> 
>     igt@kms_hdr@bpc-switch-suspend:
> 
>       o Statuses : 5 pass(s) 2 skip(s)
>       o Exec time: [0.0, 5.76] s
>   *
> 
>     igt@kms_hdr@static-swap:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@kms_hdr@static-toggle:
> 
>       o Statuses : 1 pass(s) 7 skip(s)
>       o Exec time: [0.0, 3.74] s
>   *
> 
>     igt@kms_hdr@static-toggle-dpms:
> 
>       o Statuses : 9 skip(s)
>       o Exec time: [0.0, 0.00] s
>   *
> 
>     igt@kms_hdr@static-toggle-suspend:
> 
>       o Statuses : 8 skip(s)
>       o Exec time: [0.0] s
>   *
> 
>     igt@kms_lease@implicit-plane-lease:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [0.00, 0.01] s
>   *
> 
>     igt@kms_lease@invalid-create-leases:
> 
>       o Statuses : 8 pass(s)
>       o Exec time: [0.00, 0.03] s
>   *
> 
>     igt@kms_lease@lease-uevent:
> 
>       o Statuses : 8 pass(s)
>       o Exec time: [1.01, 1.06] s
>   *
> 
>     igt@kms_lease@lease_invalid_plane:
> 
>       o Statuses : 8 pass(s) 1 skip(s)
>       o Exec time: [0.0, 0.00] s
>   *
> 
>     igt@kms_lease@master-vs-lease:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@kms_lease@multimaster-lease:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@kms_lease@possible-crtcs-filtering:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [0.00, 0.02] s
>   *
> 
>     igt@kms_mmap_write_crc@main:
> 
>       o Statuses : 1 fail(s) 7 pass(s)
>       o Exec time: [0.26, 23.60] s
>   *
> 
>     igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-d-edp-1-planes-upscale-downscale:
> 
>       o Statuses : 1 pass(s)
>       o Exec time: [1.28] s
>   *
> 
>     igt@prime_mmap@test_correct:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@prime_mmap@test_userptr:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@prime_vgem@basic-blt:
> 
>       o Statuses :
>       o Exec time: [None] s
>   *
> 
>     igt@prime_vgem@basic-fence-blt:
> 
>       o Statuses : 7 pass(s)
>       o Exec time: [0.08, 0.33] s
>   *
> 
>     igt@prime_vgem@coherency-blt:
> 
>       o Statuses : 6 pass(s)
>       o Exec time: [0.55, 18.55] s
> 
> 
>     Known issues
> 
> Here are the changes found in Patchwork_22447_full that come from known 
> issues:
> 
> 
>       CI changes
> 
> 
>         Possible fixes
> 
>   * boot:
>       o shard-glk: (PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/boot.html>,
>         FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk9/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk8/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk8/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk8/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk7/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk7/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk7/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk6/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk5/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk5/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk5/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk3/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk3/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk3/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk2/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk2/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk2/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk1/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk1/boot.html>)
>         ([i915#4392]) -> (PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk9/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk9/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk9/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk8/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk8/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk8/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk7/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk7/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk7/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk6/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk6/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk5/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk5/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk5/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk4/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk4/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk3/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk3/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk3/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk2/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk2/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk2/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk1/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk1/boot.html>,
>         PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk1/boot.html>)
> 
> 
>       IGT changes
> 
> 
>         Issues hit
> 
>   *
> 
>     igt@gem_eio@unwedge-stress:
> 
>       o shard-tglb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-tglb6/igt@gem_eio@unwedge-stress.html>
>         -> TIMEOUT
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-tglb6/igt@gem_eio@unwedge-stress.html>
>         ([i915#3063] / [i915#3648])
>   *
> 
>     igt@gem_exec_balancer@parallel-balancer:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-iclb1/igt@gem_exec_balancer@parallel-balancer.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb3/igt@gem_exec_balancer@parallel-balancer.html>
>         ([i915#4525])
>   *
> 
>     igt@gem_exec_balancer@parallel-out-fence:
> 
>       o shard-kbl: NOTRUN -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-kbl1/igt@gem_exec_balancer@parallel-out-fence.html>
>         ([i915#5076]) +1 similar issue
>   *
> 
>     igt@gem_exec_capture@pi@vcs0:
> 
>       o shard-skl: NOTRUN -> INCOMPLETE
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl1/igt@gem_exec_capture@pi@vcs0.html>
>         ([i915#4547])
>   *
> 
>     igt@gem_exec_fair@basic-none@vcs0:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-apl4/igt@gem_exec_fair@basic-none@vcs0.html>
>         ([i915#2842]) +1 similar issue
>   *
> 
>     igt@gem_exec_fair@basic-pace@vecs0:
> 
>       o shard-kbl: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-kbl1/igt@gem_exec_fair@basic-pace@vecs0.html>
>         ([i915#2842]) +1 similar issue
>   *
> 
>     igt@gem_exec_fair@basic-throttle@rcs0:
> 
>       o shard-iclb: NOTRUN -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html>
>         ([i915#2849])
>   *
> 
>     igt@gem_lmem_swapping@verify-random:
> 
>       o shard-skl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl4/igt@gem_lmem_swapping@verify-random.html>
>         ([fdo#109271] / [i915#4613]) +3 similar issues
>   *
> 
>     igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html>
>         ([i915#4270])
>   *
> 
>     igt@gem_render_copy@yf-tiled-to-vebox-linear:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb6/igt@gem_render_copy@yf-tiled-to-vebox-linear.html>
>         ([i915#768])
>   *
> 
>     igt@gem_softpin@allocator-evict-all-engines:
> 
>       o shard-glk: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-glk7/igt@gem_softpin@allocator-evict-all-engines.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-glk4/igt@gem_softpin@allocator-evict-all-engines.html>
>         ([i915#4171])
>   *
> 
>     igt@gem_softpin@noreloc-s3:
> 
>       o shard-apl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-apl3/igt@gem_softpin@noreloc-s3.html>
>         -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-apl8/igt@gem_softpin@noreloc-s3.html>
>         ([i915#180]) +2 similar issues
>   *
> 
>     igt@gem_userptr_blits@input-checking:
> 
>       o shard-skl: NOTRUN -> DMESG-WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl6/igt@gem_userptr_blits@input-checking.html>
>         ([i915#4991])
>   *
> 
>     igt@gen7_exec_parse@oacontrol-tracking:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb3/igt@gen7_exec_parse@oacontrol-tracking.html>
>         ([fdo#109289])
>   *
> 
>     igt@gen9_exec_parse@shadow-peek:
> 
>       o shard-tglb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-tglb3/igt@gen9_exec_parse@shadow-peek.html>
>         ([i915#2527] / [i915#2856])
>   *
> 
>     igt@i915_pm_backlight@fade_with_dpms (NEW):
> 
>       o {shard-tglu}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-tglu-3/igt@i915_pm_backlight@fade_with_dpms.html>
>         ([i915#1155])
>   *
> 
>     igt@i915_pm_dc@dc9-dpms:
> 
>       o shard-iclb: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html>
>         -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html>
>         ([i915#4281])
>   *
> 
>     igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
> 
>       o shard-apl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-apl2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html>
>         ([fdo#109271] / [i915#1937])
>   *
> 
>     igt@i915_pm_lpsp@screens-disabled (NEW):
> 
>       o {shard-rkl}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-6/igt@i915_pm_lpsp@screens-disabled.html>
>         ([i915#1902])
>   *
> 
>     igt@i915_pm_rc6_residency@rc6-idle:
> 
>       o shard-iclb: NOTRUN -> WARN
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html>
>         ([i915#2684])
>   *
> 
>     igt@i915_pm_rpm@drm-resources-equal (NEW):
> 
>       o {shard-rkl}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-1/igt@i915_pm_rpm@drm-resources-equal.html>
>         ([fdo#109308])
>   *
> 
>     igt@i915_pm_rpm@fences (NEW):
> 
>       o {shard-rkl}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-4/igt@i915_pm_rpm@fences.html>
>         ([i915#1849])
>   *
> 
>     igt@i915_pm_rpm@pm-caching (NEW):
> 
>       o {shard-dg1}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-dg1-16/igt@i915_pm_rpm@pm-caching.html>
>         ([i915#4077])
>   *
> 
>     igt@i915_pm_rps@reset (NEW):
> 
>       o {shard-dg1}: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-dg1-16/igt@i915_pm_rps@reset.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-dg1-13/igt@i915_pm_rps@reset.html>
>         ([i915#3719])
>   *
> 
>     igt@kms_async_flips@alternate-sync-async-flip:
> 
>       o shard-skl: PASS
>         <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11302/shard-skl5/igt@kms_async_flips@alternate-sync-async-flip.html>
>         -> FAIL
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-skl4/igt@kms_async_flips@alternate-sync-async-flip.html>
>         ([i915#2521])
>   *
> 
>     igt@kms_atomic_interruptible@atomic-setmode (NEW):
> 
>       o {shard-rkl}: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-rkl-1/igt@kms_atomic_interruptible@atomic-setmode.html>
>         ([i915#1845]) +1 similar issue
>   *
> 
>     igt@kms_big_fb@linear-64bpp-rotate-270:
> 
>       o shard-iclb: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-iclb6/igt@kms_big_fb@linear-64bpp-rotate-270.html>
>         ([fdo#110725] / [fdo#111614])
>   *
> 
>     igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
> 
>       o shard-kbl: NOTRUN -> SKIP
>         <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22447/shard-kbl4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html>
>         ([fdo#109271] / [i915#3777])
>   *
> 
>     igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
> 
>       o shard-apl: NOTRUN -> [SKIP][
> 

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
  2022-03-07 20:21 [PATCH v6 0/2] drm/mm: Add an iterator to optimally walk over holes suitable for an allocation Vivek Kasireddy
@ 2022-03-09 19:31 ` Patchwork
  0 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2022-03-09 19:31 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

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

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
URL   : https://patchwork.freedesktop.org/series/101123/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11346 -> Patchwork_22523
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (43 -> 35)
------------------------------

  Additional (1): fi-icl-u2 
  Missing    (9): bat-dg1-6 bat-dg1-5 bat-dg2-9 fi-bsw-cyan bat-adlp-6 bat-adlp-4 fi-ctg-p8600 bat-jsl-2 bat-jsl-1 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@fork-gfx0:
    - fi-icl-u2:          NOTRUN -> [SKIP][1] ([fdo#109315]) +17 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html

  * igt@gem_huc_copy@huc-copy:
    - fi-icl-u2:          NOTRUN -> [SKIP][2] ([i915#2190])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-icl-u2/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - fi-icl-u2:          NOTRUN -> [SKIP][3] ([i915#4613]) +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-icl-u2/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-kbl-soraka:      [PASS][4] -> [DMESG-FAIL][5] ([i915#541])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11346/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@hangcheck:
    - fi-hsw-4770:        [PASS][6] -> [INCOMPLETE][7] ([i915#4785])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11346/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-icl-u2:          NOTRUN -> [SKIP][8] ([fdo#111827]) +8 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-icl-u2:          NOTRUN -> [SKIP][9] ([fdo#109278]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-icl-u2:          NOTRUN -> [SKIP][10] ([fdo#109285])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - fi-icl-u2:          NOTRUN -> [SKIP][11] ([i915#3555])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-userptr:
    - fi-icl-u2:          NOTRUN -> [SKIP][12] ([i915#3301])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-icl-u2/igt@prime_vgem@basic-userptr.html

  * igt@runner@aborted:
    - fi-hsw-4770:        NOTRUN -> [FAIL][13] ([fdo#109271] / [i915#1436] / [i915#4312])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-hsw-4770/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-blb-e6850:       [FAIL][14] ([i915#3194]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11346/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22523/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#3194]: https://gitlab.freedesktop.org/drm/intel/issues/3194
  [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785
  [i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541


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

  * Linux: CI_DRM_11346 -> Patchwork_22523

  CI-20190529: 20190529
  CI_DRM_11346: ab6456d23719e60c20e8cef05a5f322eea134b88 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6373: 82306f1903c0fee8371f43a156d8b63163ca61c1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_22523: f39e77441008478397537bb4d081b3627f66897b @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

f39e77441008 drm/i915/gem: Don't try to map and fence large scanout buffers (v9)
14d91959f9bf drm/mm: Add an iterator to optimally walk over holes for an allocation (v6)

== Logs ==

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

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

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
  2022-02-17  7:50 [PATCH v2 0/3] drm/mm: Add an iterator to optimally walk over holes suitable for an allocation Vivek Kasireddy
@ 2022-02-17 19:13 ` Patchwork
  0 siblings, 0 replies; 16+ messages in thread
From: Patchwork @ 2022-02-17 19:13 UTC (permalink / raw)
  To: Vivek Kasireddy; +Cc: intel-gfx

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

== Series Details ==

Series: drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2)
URL   : https://patchwork.freedesktop.org/series/100136/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_11241 -> Patchwork_22310
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (46 -> 43)
------------------------------

  Additional (1): fi-pnv-d510 
  Missing    (4): fi-kbl-soraka bat-dg2-8 shard-tglu fi-bsw-cyan 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_huc_copy@huc-copy:
    - fi-skl-6600u:       NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html
    - fi-pnv-d510:        NOTRUN -> [SKIP][2] ([fdo#109271]) +57 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-pnv-d510/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@verify-random:
    - fi-skl-6600u:       NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-skl-6600u/igt@gem_lmem_swapping@verify-random.html

  * igt@i915_selftest@live@hangcheck:
    - bat-dg1-6:          [PASS][4] -> [DMESG-FAIL][5] ([i915#4494] / [i915#4957])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11241/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
    - bat-dg1-5:          [PASS][6] -> [DMESG-FAIL][7] ([i915#4494] / [i915#4957])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11241/bat-dg1-5/igt@i915_selftest@live@hangcheck.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/bat-dg1-5/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@late_gt_pm:
    - fi-bsw-n3050:       [PASS][8] -> [DMESG-FAIL][9] ([i915#2927] / [i915#3428])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11241/fi-bsw-n3050/igt@i915_selftest@live@late_gt_pm.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-bsw-n3050/igt@i915_selftest@live@late_gt_pm.html

  * igt@kms_chamelium@vga-edid-read:
    - fi-skl-6600u:       NOTRUN -> [SKIP][10] ([fdo#109271] / [fdo#111827]) +8 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-skl-6600u:       NOTRUN -> [SKIP][11] ([fdo#109271]) +2 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-skl-6600u/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
    - fi-skl-6600u:       NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#533])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html

  * igt@kms_psr@primary_page_flip:
    - fi-skl-6600u:       NOTRUN -> [FAIL][13] ([i915#4547])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-skl-6600u/igt@kms_psr@primary_page_flip.html

  * igt@runner@aborted:
    - fi-bsw-n3050:       NOTRUN -> [FAIL][14] ([fdo#109271] / [i915#1436] / [i915#3428] / [i915#4312])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-bsw-n3050/igt@runner@aborted.html
    - fi-bdw-5557u:       NOTRUN -> [FAIL][15] ([i915#2426] / [i915#4312])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-bdw-5557u/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - fi-bdw-5557u:       [INCOMPLETE][16] ([i915#146]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11241/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@gem_flink_basic@bad-flink:
    - fi-skl-6600u:       [FAIL][18] ([i915#4547]) -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11241/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html

  * igt@i915_selftest@live@gt_pm:
    - fi-tgl-1115g4:      [DMESG-FAIL][20] ([i915#3987]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11241/fi-tgl-1115g4/igt@i915_selftest@live@gt_pm.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22310/fi-tgl-1115g4/igt@i915_selftest@live@gt_pm.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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
  [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
  [i915#2927]: https://gitlab.freedesktop.org/drm/intel/issues/2927
  [i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428
  [i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
  [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
  [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
  [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4897]: https://gitlab.freedesktop.org/drm/intel/issues/4897
  [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533


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

  * Linux: CI_DRM_11241 -> Patchwork_22310

  CI-20190529: 20190529
  CI_DRM_11241: cb239fa15d6782735c7b8df0c0a3075947de7eef @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6347: 37ea4c86f97c0e05fcb6b04cff72ec927930536e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_22310: 116d1b29f88477642239b116006e4d70c6eae7fd @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

116d1b29f884 drm/i915/gem: Don't try to map and fence large scanout buffers (v8)
f5597ffa1e23 drm/mm: Add an iterator to optimally walk over holes for an allocation (v4)
19844014c61e drm/mm: Ensure that the entry is not NULL before extracting rb_node

== Logs ==

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

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

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

end of thread, other threads:[~2022-03-09 19:31 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-28 19:04 [CI 0/2] drm/mm: Add an iterator to optimally walk over holes suitable for an allocation Vivek Kasireddy
2022-02-28 19:04 ` [Intel-gfx] " Vivek Kasireddy
2022-02-28 19:04 ` [CI 1/2] drm/mm: Add an iterator to optimally walk over holes for an allocation (v5) Vivek Kasireddy
2022-02-28 19:04   ` [Intel-gfx] " Vivek Kasireddy
2022-02-28 19:04 ` [CI 2/2] drm/i915/gem: Don't try to map and fence large scanout buffers (v9) Vivek Kasireddy
2022-02-28 19:04   ` [Intel-gfx] " Vivek Kasireddy
2022-02-28 23:57 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation Patchwork
2022-02-28 23:59 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-03-01  0:31 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2022-03-01 12:01 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2) Patchwork
2022-03-01 12:03 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-03-01 12:32 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-03-01 19:23 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-03-02  8:41   ` Tvrtko Ursulin
  -- strict thread matches above, loose matches on Subject: below --
2022-03-07 20:21 [PATCH v6 0/2] drm/mm: Add an iterator to optimally walk over holes suitable for an allocation Vivek Kasireddy
2022-03-09 19:31 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2) Patchwork
2022-02-17  7:50 [PATCH v2 0/3] drm/mm: Add an iterator to optimally walk over holes suitable for an allocation Vivek Kasireddy
2022-02-17 19:13 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/mm: Add an iterator to optimally walk over holes suitable for an allocation (rev2) Patchwork

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.