* [CI 0/9] For CI only
@ 2025-08-07 23:01 Rodrigo Vivi
2025-08-07 23:01 ` [CI 1/9] drm/i915: Move struct_mutex to drm_i915_private Rodrigo Vivi
` (10 more replies)
0 siblings, 11 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi
Please keep the review of this series in the original
https://lore.kernel.org/intel-gfx/20250807170212.285385-1-luiz.mello@estudante.ufscar.br
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Luiz Otavio Mello (9):
drm/i915: Move struct_mutex to drm_i915_private
drm/i915: Remove struct_mutex in i915_irq.c
drm/i915: Change mutex initialization in intel_guc_log
drm/i915: Replace struct_mutex in intel_guc_log.c
drm/i915/gem: Clean-up outdated struct_mutex comments
drm/i915/display: Remove outdated struct_mutex comments
drm/i915: Clean-up outdated struct_mutex comments
drm/i915: Remove unused struct_mutex from drm_i915_private
drm/i915: Remove todo and comments about struct_mutex
Documentation/gpu/i915.rst | 7 ------
Documentation/gpu/todo.rst | 25 -------------------
drivers/gpu/drm/drm_drv.c | 2 --
drivers/gpu/drm/i915/display/intel_fbc.c | 6 +----
.../gpu/drm/i915/gem/i915_gem_execbuffer.c | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_object.c | 4 +--
drivers/gpu/drm/i915/gem/i915_gem_shrinker.c | 4 +--
drivers/gpu/drm/i915/gem/i915_gem_wait.c | 8 +++---
drivers/gpu/drm/i915/gt/intel_reset_types.h | 2 +-
drivers/gpu/drm/i915/gt/uc/intel_guc_log.c | 12 ++++++---
drivers/gpu/drm/i915/gt/uc/intel_guc_log.h | 8 ++++++
drivers/gpu/drm/i915/i915_drv.h | 6 +++--
drivers/gpu/drm/i915/i915_gem.c | 3 +--
drivers/gpu/drm/i915/i915_irq.c | 6 -----
include/drm/drm_device.h | 10 --------
15 files changed, 33 insertions(+), 72 deletions(-)
--
2.50.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [CI 1/9] drm/i915: Move struct_mutex to drm_i915_private
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-07 23:01 ` [CI 2/9] drm/i915: Remove struct_mutex in i915_irq.c Rodrigo Vivi
` (9 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Move legacy BKL struct_mutex from drm_device to drm_i915_private, which
is the last remaining user.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/drm_drv.c | 2 --
drivers/gpu/drm/i915/gt/uc/intel_guc_log.c | 4 ++--
drivers/gpu/drm/i915/i915_driver.c | 2 ++
drivers/gpu/drm/i915/i915_drv.h | 11 +++++++++++
drivers/gpu/drm/i915/i915_irq.c | 4 ++--
include/drm/drm_device.h | 10 ----------
6 files changed, 17 insertions(+), 16 deletions(-)
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
index cdd591b11488..ad3aee354ba3 100644
--- a/drivers/gpu/drm/drm_drv.c
+++ b/drivers/gpu/drm/drm_drv.c
@@ -694,7 +694,6 @@ static void drm_dev_init_release(struct drm_device *dev, void *res)
mutex_destroy(&dev->master_mutex);
mutex_destroy(&dev->clientlist_mutex);
mutex_destroy(&dev->filelist_mutex);
- mutex_destroy(&dev->struct_mutex);
}
static int drm_dev_init(struct drm_device *dev,
@@ -735,7 +734,6 @@ static int drm_dev_init(struct drm_device *dev,
INIT_LIST_HEAD(&dev->vblank_event_list);
spin_lock_init(&dev->event_lock);
- mutex_init(&dev->struct_mutex);
mutex_init(&dev->filelist_mutex);
mutex_init(&dev->clientlist_mutex);
mutex_init(&dev->master_mutex);
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
index e8a04e476c57..7135fdb0ebb4 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
@@ -678,7 +678,7 @@ int intel_guc_log_set_level(struct intel_guc_log *log, u32 level)
if (level < GUC_LOG_LEVEL_DISABLED || level > GUC_LOG_LEVEL_MAX)
return -EINVAL;
- mutex_lock(&i915->drm.struct_mutex);
+ mutex_lock(&i915->struct_mutex);
if (log->level == level)
goto out_unlock;
@@ -696,7 +696,7 @@ int intel_guc_log_set_level(struct intel_guc_log *log, u32 level)
log->level = level;
out_unlock:
- mutex_unlock(&i915->drm.struct_mutex);
+ mutex_unlock(&i915->struct_mutex);
return ret;
}
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index c6263c6d3384..d1559fd8ad3d 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -233,6 +233,7 @@ static int i915_driver_early_probe(struct drm_i915_private *dev_priv)
intel_sbi_init(display);
vlv_iosf_sb_init(dev_priv);
+ mutex_init(&dev_priv->struct_mutex);
mutex_init(&dev_priv->sb_lock);
i915_memcpy_init_early(dev_priv);
@@ -291,6 +292,7 @@ static void i915_driver_late_release(struct drm_i915_private *dev_priv)
i915_workqueues_cleanup(dev_priv);
mutex_destroy(&dev_priv->sb_lock);
+ mutex_destroy(&dev_priv->struct_mutex);
vlv_iosf_sb_fini(dev_priv);
intel_sbi_fini(display);
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 4e4e89746aa6..15f66a7d496d 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -222,6 +222,17 @@ struct drm_i915_private {
bool irqs_enabled;
+ /*
+ * Currently, struct_mutex is only used by the i915 driver as a replacement
+ * for BKL.
+ *
+ * For this reason, it is no longer part of struct drm_device.
+ */
+ struct mutex struct_mutex;
+
+ /* LPT/WPT IOSF sideband protection */
+ struct mutex sbi_lock;
+
/* VLV/CHV IOSF sideband */
struct {
struct mutex lock; /* protect sideband access */
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index 191ed8bb1d9c..cdfb09464134 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -167,7 +167,7 @@ static void ivb_parity_work(struct work_struct *work)
* In order to prevent a get/put style interface, acquire struct mutex
* any time we access those registers.
*/
- mutex_lock(&dev_priv->drm.struct_mutex);
+ mutex_lock(&dev_priv->struct_mutex);
/* If we've screwed up tracking, just let the interrupt fire again */
if (drm_WARN_ON(&dev_priv->drm, !dev_priv->l3_parity.which_slice))
@@ -225,7 +225,7 @@ static void ivb_parity_work(struct work_struct *work)
gen5_gt_enable_irq(gt, GT_PARITY_ERROR(dev_priv));
spin_unlock_irq(gt->irq_lock);
- mutex_unlock(&dev_priv->drm.struct_mutex);
+ mutex_unlock(&dev_priv->struct_mutex);
}
static irqreturn_t valleyview_irq_handler(int irq, void *arg)
diff --git a/include/drm/drm_device.h b/include/drm/drm_device.h
index a33aedd5e9ec..016df5529d46 100644
--- a/include/drm/drm_device.h
+++ b/include/drm/drm_device.h
@@ -188,16 +188,6 @@ struct drm_device {
/** @unique: Unique name of the device */
char *unique;
- /**
- * @struct_mutex:
- *
- * Lock for others (not &drm_minor.master and &drm_file.is_master)
- *
- * TODO: This lock used to be the BKL of the DRM subsystem. Move the
- * lock into i915, which is the only remaining user.
- */
- struct mutex struct_mutex;
-
/**
* @master_mutex:
*
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [CI 2/9] drm/i915: Remove struct_mutex in i915_irq.c
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
2025-08-07 23:01 ` [CI 1/9] drm/i915: Move struct_mutex to drm_i915_private Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-07 23:01 ` [CI 3/9] drm/i915: Change mutex initialization in intel_guc_log Rodrigo Vivi
` (8 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Remove struct_mutex from ivb_parity_work() function.
The ivb_parity_work runs in a workqueue so it cannot race with itself.
Also, it is not protecting anything with the other remaining usage of
struct_mutex.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Suggested-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/i915_irq.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index cdfb09464134..83b08dacd194 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -163,11 +163,6 @@ static void ivb_parity_work(struct work_struct *work)
u32 misccpctl;
u8 slice = 0;
- /* We must turn off DOP level clock gating to access the L3 registers.
- * In order to prevent a get/put style interface, acquire struct mutex
- * any time we access those registers.
- */
- mutex_lock(&dev_priv->struct_mutex);
/* If we've screwed up tracking, just let the interrupt fire again */
if (drm_WARN_ON(&dev_priv->drm, !dev_priv->l3_parity.which_slice))
@@ -225,7 +220,6 @@ static void ivb_parity_work(struct work_struct *work)
gen5_gt_enable_irq(gt, GT_PARITY_ERROR(dev_priv));
spin_unlock_irq(gt->irq_lock);
- mutex_unlock(&dev_priv->struct_mutex);
}
static irqreturn_t valleyview_irq_handler(int irq, void *arg)
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [CI 3/9] drm/i915: Change mutex initialization in intel_guc_log
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
2025-08-07 23:01 ` [CI 1/9] drm/i915: Move struct_mutex to drm_i915_private Rodrigo Vivi
2025-08-07 23:01 ` [CI 2/9] drm/i915: Remove struct_mutex in i915_irq.c Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-07 23:01 ` [CI 4/9] drm/i915: Replace struct_mutex in intel_guc_log.c Rodrigo Vivi
` (7 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
The intel_guc_log->relay.lock is currently initialized in
intel_guc_log_init_early(), but it lacks a corresponding destructor,
which can lead to a memory leak.
This patch replaces the use of mutex_init() with drmm_mutex_init(),
which ensures the lock is properly destroyed when the driver is
unloaded.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/gt/uc/intel_guc_log.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
index 7135fdb0ebb4..469173791394 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
@@ -6,6 +6,8 @@
#include <linux/debugfs.h>
#include <linux/string_helpers.h>
+#include <drm/drm_managed.h>
+
#include "gt/intel_gt.h"
#include "i915_drv.h"
#include "i915_irq.h"
@@ -512,7 +514,10 @@ static void guc_log_relay_unmap(struct intel_guc_log *log)
void intel_guc_log_init_early(struct intel_guc_log *log)
{
- mutex_init(&log->relay.lock);
+ struct intel_guc *guc = log_to_guc(log);
+ struct drm_i915_private *i915 = guc_to_i915(guc);
+
+ drmm_mutex_init(&i915->drm, &log->relay.lock);
INIT_WORK(&log->relay.flush_work, copy_debug_logs_work);
log->relay.started = false;
}
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [CI 4/9] drm/i915: Replace struct_mutex in intel_guc_log.c
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
` (2 preceding siblings ...)
2025-08-07 23:01 ` [CI 3/9] drm/i915: Change mutex initialization in intel_guc_log Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-07 23:01 ` [CI 5/9] drm/i915/gem: Clean-up outdated struct_mutex comments Rodrigo Vivi
` (6 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Remove the use of struct_mutex from intel_guc_log.c and replace it with
a dedicated lock, guc_lock, defined within the intel_guc_log struct.
The struct_mutex was previously used to protect concurrent access and
modification of intel_guc_log->level in intel_guc_log_set_level().
However, it was suggested that the lock should reside within the
intel_guc_log struct itself.
Initialize the new guc_lock in intel_guc_log_init_early(), alongside the
existing relay.lock. The lock is initialized using drmm_mutex_init(),
which also ensures it is properly destroyed when the driver is unloaded.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Suggested-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/gt/uc/intel_guc_log.c | 5 +++--
drivers/gpu/drm/i915/gt/uc/intel_guc_log.h | 8 ++++++++
2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
index 469173791394..0104fffd5852 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
@@ -518,6 +518,7 @@ void intel_guc_log_init_early(struct intel_guc_log *log)
struct drm_i915_private *i915 = guc_to_i915(guc);
drmm_mutex_init(&i915->drm, &log->relay.lock);
+ drmm_mutex_init(&i915->drm, &log->guc_lock);
INIT_WORK(&log->relay.flush_work, copy_debug_logs_work);
log->relay.started = false;
}
@@ -683,7 +684,7 @@ int intel_guc_log_set_level(struct intel_guc_log *log, u32 level)
if (level < GUC_LOG_LEVEL_DISABLED || level > GUC_LOG_LEVEL_MAX)
return -EINVAL;
- mutex_lock(&i915->struct_mutex);
+ mutex_lock(&log->guc_lock);
if (log->level == level)
goto out_unlock;
@@ -701,7 +702,7 @@ int intel_guc_log_set_level(struct intel_guc_log *log, u32 level)
log->level = level;
out_unlock:
- mutex_unlock(&i915->struct_mutex);
+ mutex_unlock(&log->guc_lock);
return ret;
}
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.h b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.h
index 02127703be80..13cb93ad0710 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.h
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.h
@@ -42,6 +42,14 @@ enum {
struct intel_guc_log {
u32 level;
+ /*
+ * Protects concurrent access and modification of intel_guc_log->level.
+ *
+ * This lock replaces the legacy struct_mutex usage in
+ * intel_guc_log system.
+ */
+ struct mutex guc_lock;
+
/* Allocation settings */
struct {
s32 bytes; /* Size in bytes */
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [CI 5/9] drm/i915/gem: Clean-up outdated struct_mutex comments
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
` (3 preceding siblings ...)
2025-08-07 23:01 ` [CI 4/9] drm/i915: Replace struct_mutex in intel_guc_log.c Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-07 23:01 ` [CI 6/9] drm/i915/display: Remove " Rodrigo Vivi
` (5 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
The struct_mutex will be removed from the DRM subsystem, as it was a
legacy BKL that was only used by i915 driver. After review, it was
concluded that its usage was no longer necessary
This patch updates various comments in the i915/gem and i915/gt
codebase to either remove or clarify references to struct_mutex, in
order to prevent future misunderstandings.
* i915_gem_execbuffer.c: Replace reference to struct_mutex with
vm->mutex, as noted in the eb_reserve() function, which states that
vm->mutex handles deadlocks.
* i915_gem_object.c: Change struct_mutex by
drm_i915_gem_object->vma.lock. i915_gem_object_unbind() in i915_gem.c
states that this lock is who actually protects the unbind.
* i915_gem_shrinker.c: The correct lock is actually i915->mm.obj, as
already documented in its declaration.
* i915_gem_wait.c: The existing comment already mentioned that
struct_mutex was no longer necessary. Updated to refer to a generic
global lock instead.
* intel_reset_types.h: Cleaned up the comment text. Updated to refer to
a generic global lock instead.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_object.c | 4 ++--
drivers/gpu/drm/i915/gem/i915_gem_shrinker.c | 4 ++--
drivers/gpu/drm/i915/gem/i915_gem_wait.c | 8 ++++----
drivers/gpu/drm/i915/gt/intel_reset_types.h | 2 +-
5 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
index f243f8a5215d..39c7c32e1e74 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
@@ -182,7 +182,7 @@ enum {
* the object. Simple! ... The relocation entries are stored in user memory
* and so to access them we have to copy them into a local buffer. That copy
* has to avoid taking any pagefaults as they may lead back to a GEM object
- * requiring the struct_mutex (i.e. recursive deadlock). So once again we split
+ * requiring the vm->mutex (i.e. recursive deadlock). So once again we split
* the relocation into multiple passes. First we try to do everything within an
* atomic context (avoid the pagefaults) which requires that we never wait. If
* we detect that we may wait, or if we need to fault, then we have to fallback
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_object.c b/drivers/gpu/drm/i915/gem/i915_gem_object.c
index 1f38e367c60b..478011e5ecb3 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_object.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_object.c
@@ -459,8 +459,8 @@ static void i915_gem_free_object(struct drm_gem_object *gem_obj)
atomic_inc(&i915->mm.free_count);
/*
- * Since we require blocking on struct_mutex to unbind the freed
- * object from the GPU before releasing resources back to the
+ * Since we require blocking on drm_i915_gem_object->vma.lock to unbind
+ * the freed object from the GPU before releasing resources back to the
* system, we can not do that directly from the RCU callback (which may
* be a softirq context), but must instead then defer that work onto a
* kthread. We use the RCU callback rather than move the freed object
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_shrinker.c b/drivers/gpu/drm/i915/gem/i915_gem_shrinker.c
index b81e67504bbe..7a3e74a6676e 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_shrinker.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_shrinker.c
@@ -170,7 +170,7 @@ i915_gem_shrink(struct i915_gem_ww_ctx *ww,
* Also note that although these lists do not hold a reference to
* the object we can safely grab one here: The final object
* unreferencing and the bound_list are both protected by the
- * dev->struct_mutex and so we won't ever be able to observe an
+ * i915->mm.obj_lock and so we won't ever be able to observe an
* object on the bound_list with a reference count equals 0.
*/
for (phase = phases; phase->list; phase++) {
@@ -185,7 +185,7 @@ i915_gem_shrink(struct i915_gem_ww_ctx *ww,
/*
* We serialize our access to unreferenced objects through
- * the use of the struct_mutex. While the objects are not
+ * the use of the obj_lock. While the objects are not
* yet freed (due to RCU then a workqueue) we still want
* to be able to shrink their pages, so they remain on
* the unbound/bound list until actually freed.
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_wait.c b/drivers/gpu/drm/i915/gem/i915_gem_wait.c
index 991666fd9f85..54829801d3f7 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_wait.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_wait.c
@@ -217,10 +217,10 @@ static unsigned long to_wait_timeout(s64 timeout_ns)
*
* The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
* non-zero timeout parameter the wait ioctl will wait for the given number of
- * nanoseconds on an object becoming unbusy. Since the wait itself does so
- * without holding struct_mutex the object may become re-busied before this
- * function completes. A similar but shorter * race condition exists in the busy
- * ioctl
+ * nanoseconds on an object becoming unbusy. Since the wait occurs without
+ * holding a global or exclusive lock the object may become re-busied before
+ * this function completes. A similar but shorter * race condition exists
+ * in the busy ioctl
*/
int
i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
diff --git a/drivers/gpu/drm/i915/gt/intel_reset_types.h b/drivers/gpu/drm/i915/gt/intel_reset_types.h
index 4f5fd393af6f..ee4eb574a219 100644
--- a/drivers/gpu/drm/i915/gt/intel_reset_types.h
+++ b/drivers/gpu/drm/i915/gt/intel_reset_types.h
@@ -20,7 +20,7 @@ struct intel_reset {
* FENCE registers).
*
* #I915_RESET_ENGINE[num_engines] - Since the driver doesn't need to
- * acquire the struct_mutex to reset an engine, we need an explicit
+ * acquire a global lock to reset an engine, we need an explicit
* flag to prevent two concurrent reset attempts in the same engine.
* As the number of engines continues to grow, allocate the flags from
* the most significant bits.
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [CI 6/9] drm/i915/display: Remove outdated struct_mutex comments
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
` (4 preceding siblings ...)
2025-08-07 23:01 ` [CI 5/9] drm/i915/gem: Clean-up outdated struct_mutex comments Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-07 23:01 ` [CI 7/9] drm/i915: Clean-up " Rodrigo Vivi
` (4 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
The struct_mutex will be removed from the DRM subsystem, as it was a
legacy BKL that was only used by i915 driver. After review, it was
concluded that its usage was no longer necessary
This patch update a comment about struct_mutex in i915/display, in order
to prevent future misunderstandings.
* intel_fbc.c: Removed the statement that intel_fbc->lock is the inner
lock when overlapping with struct_mutex, since struct_mutex is no
longer used anywhere in the driver.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index d4c5deff9cbe..aaaabba77b88 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -98,11 +98,7 @@ struct intel_fbc {
struct intel_display *display;
const struct intel_fbc_funcs *funcs;
- /*
- * This is always the inner lock when overlapping with
- * struct_mutex and it's the outer lock when overlapping
- * with stolen_lock.
- */
+ /* This is always the outer lock when overlapping with stolen_lock */
struct mutex lock;
unsigned int busy_bits;
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [CI 7/9] drm/i915: Clean-up outdated struct_mutex comments
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
` (5 preceding siblings ...)
2025-08-07 23:01 ` [CI 6/9] drm/i915/display: Remove " Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-07 23:01 ` [CI 8/9] drm/i915: Remove unused struct_mutex from drm_i915_private Rodrigo Vivi
` (3 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
The struct_mutex will be removed from the DRM subsystem, as it was a
legacy BKL that was only used by i915 driver. After review, it was
concluded that its usage was no longer necessary
This patch updates various comments in the i915 codebase to
either remove or clarify references to struct_mutex, in order to
prevent future misunderstandings.
* i915_drv.h: Removed the statement that stolen_lock is the inner lock
when overlaps with struct_mutex, since struct_mutex is no longer used
in the driver.
* i915_gem.c: Removed parentheses suggesting usage of struct_mutex, which
which is no longer used.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/i915_drv.h | 3 +--
drivers/gpu/drm/i915/i915_gem.c | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 15f66a7d496d..63fef3873a38 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -114,8 +114,7 @@ struct i915_gem_mm {
struct intel_memory_region *stolen_region;
/** Memory allocator for GTT stolen memory */
struct drm_mm stolen;
- /** Protects the usage of the GTT stolen memory allocator. This is
- * always the inner lock when overlapping with struct_mutex. */
+ /** Protects the usage of the GTT stolen memory allocator */
struct mutex stolen_lock;
/* Protects bound_list/unbound_list and #drm_i915_gem_object.mm.link */
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 8c8d43451f35..e14a0c3db999 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -847,8 +847,7 @@ void i915_gem_runtime_suspend(struct drm_i915_private *i915)
/*
* Only called during RPM suspend. All users of the userfault_list
* must be holding an RPM wakeref to ensure that this can not
- * run concurrently with themselves (and use the struct_mutex for
- * protection between themselves).
+ * run concurrently with themselves.
*/
list_for_each_entry_safe(obj, on,
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [CI 8/9] drm/i915: Remove unused struct_mutex from drm_i915_private
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
` (6 preceding siblings ...)
2025-08-07 23:01 ` [CI 7/9] drm/i915: Clean-up " Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-07 23:01 ` [CI 9/9] drm/i915: Remove todo and comments about struct_mutex Rodrigo Vivi
` (2 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
The struct_mutex field in drm_i915_private is no longer used anywhere in
the driver. This patch removes it completely to clean up unused code and
avoid confusion.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/i915_driver.c | 2 --
drivers/gpu/drm/i915/i915_drv.h | 8 --------
2 files changed, 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index d1559fd8ad3d..c6263c6d3384 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -233,7 +233,6 @@ static int i915_driver_early_probe(struct drm_i915_private *dev_priv)
intel_sbi_init(display);
vlv_iosf_sb_init(dev_priv);
- mutex_init(&dev_priv->struct_mutex);
mutex_init(&dev_priv->sb_lock);
i915_memcpy_init_early(dev_priv);
@@ -292,7 +291,6 @@ static void i915_driver_late_release(struct drm_i915_private *dev_priv)
i915_workqueues_cleanup(dev_priv);
mutex_destroy(&dev_priv->sb_lock);
- mutex_destroy(&dev_priv->struct_mutex);
vlv_iosf_sb_fini(dev_priv);
intel_sbi_fini(display);
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 63fef3873a38..5a8ac1a52849 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -221,14 +221,6 @@ struct drm_i915_private {
bool irqs_enabled;
- /*
- * Currently, struct_mutex is only used by the i915 driver as a replacement
- * for BKL.
- *
- * For this reason, it is no longer part of struct drm_device.
- */
- struct mutex struct_mutex;
-
/* LPT/WPT IOSF sideband protection */
struct mutex sbi_lock;
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [CI 9/9] drm/i915: Remove todo and comments about struct_mutex
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
` (7 preceding siblings ...)
2025-08-07 23:01 ` [CI 8/9] drm/i915: Remove unused struct_mutex from drm_i915_private Rodrigo Vivi
@ 2025-08-07 23:01 ` Rodrigo Vivi
2025-08-08 1:09 ` ✓ i915.CI.BAT: success for For CI only Patchwork
2025-08-08 3:55 ` ✗ i915.CI.Full: failure " Patchwork
10 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2025-08-07 23:01 UTC (permalink / raw)
To: intel-gfx; +Cc: Luiz Otavio Mello, Rodrigo Vivi
From: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
This patch completes the removal of struct_mutex from the driver.
Remove the related TODO item, as the transition away from struct_mutex
is now complete.
Also clean up references to struct_mutex in i915.rst to avoid outdated
documentation.
Signed-off-by: Luiz Otavio Mello <luiz.mello@estudante.ufscar.br>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
Documentation/gpu/i915.rst | 7 -------
Documentation/gpu/todo.rst | 25 -------------------------
2 files changed, 32 deletions(-)
diff --git a/Documentation/gpu/i915.rst b/Documentation/gpu/i915.rst
index 72932fa31b8d..eba09c3ddce4 100644
--- a/Documentation/gpu/i915.rst
+++ b/Documentation/gpu/i915.rst
@@ -358,8 +358,6 @@ Locking Guidelines
#. All locking rules and interface contracts with cross-driver interfaces
(dma-buf, dma_fence) need to be followed.
-#. No struct_mutex anywhere in the code
-
#. dma_resv will be the outermost lock (when needed) and ww_acquire_ctx
is to be hoisted at highest level and passed down within i915_gem_ctx
in the call chain
@@ -367,11 +365,6 @@ Locking Guidelines
#. While holding lru/memory manager (buddy, drm_mm, whatever) locks
system memory allocations are not allowed
- * Enforce this by priming lockdep (with fs_reclaim). If we
- allocate memory while holding these looks we get a rehash
- of the shrinker vs. struct_mutex saga, and that would be
- real bad.
-
#. Do not nest different lru/memory manager locks within each other.
Take them in turn to update memory allocations, relying on the object’s
dma_resv ww_mutex to serialize against other operations.
diff --git a/Documentation/gpu/todo.rst b/Documentation/gpu/todo.rst
index 92db80793bba..b5f58b4274b1 100644
--- a/Documentation/gpu/todo.rst
+++ b/Documentation/gpu/todo.rst
@@ -173,31 +173,6 @@ Contact: Simona Vetter
Level: Intermediate
-Get rid of dev->struct_mutex from GEM drivers
----------------------------------------------
-
-``dev->struct_mutex`` is the Big DRM Lock from legacy days and infested
-everything. Nowadays in modern drivers the only bit where it's mandatory is
-serializing GEM buffer object destruction. Which unfortunately means drivers
-have to keep track of that lock and either call ``unreference`` or
-``unreference_locked`` depending upon context.
-
-Core GEM doesn't have a need for ``struct_mutex`` any more since kernel 4.8,
-and there's a GEM object ``free`` callback for any drivers which are
-entirely ``struct_mutex`` free.
-
-For drivers that need ``struct_mutex`` it should be replaced with a driver-
-private lock. The tricky part is the BO free functions, since those can't
-reliably take that lock any more. Instead state needs to be protected with
-suitable subordinate locks or some cleanup work pushed to a worker thread. For
-performance-critical drivers it might also be better to go with a more
-fine-grained per-buffer object and per-context lockings scheme. Currently only
-the ``msm`` and `i915` drivers use ``struct_mutex``.
-
-Contact: Simona Vetter, respective driver maintainers
-
-Level: Advanced
-
Move Buffer Object Locking to dma_resv_lock()
---------------------------------------------
--
2.50.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for For CI only
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
` (8 preceding siblings ...)
2025-08-07 23:01 ` [CI 9/9] drm/i915: Remove todo and comments about struct_mutex Rodrigo Vivi
@ 2025-08-08 1:09 ` Patchwork
2025-08-08 3:55 ` ✗ i915.CI.Full: failure " Patchwork
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-08-08 1:09 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 7157 bytes --]
== Series Details ==
Series: For CI only
URL : https://patchwork.freedesktop.org/series/152655/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16968 -> Patchwork_152655v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/index.html
Participating hosts (44 -> 44)
------------------------------
Additional (1): bat-adls-6
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_152655v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#3282])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][3] -> [DMESG-WARN][4] ([i915#13494])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/bat-mtlp-9/igt@i915_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live@client:
- bat-dg2-11: [PASS][5] -> [INCOMPLETE][6] ([i915#14201])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/bat-dg2-11/igt@i915_selftest@live@client.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-dg2-11/igt@i915_selftest@live@client.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#7707]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#4103]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#5354])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#3555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3291]) +2 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arls-6: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/bat-arls-6/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-arls-6/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-dg2-11: [DMESG-FAIL][19] ([i915#12061]) -> [INCOMPLETE][20] ([i915#12061])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/bat-dg2-11/igt@i915_selftest@live.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-dg2-11/igt@i915_selftest@live.html
- bat-atsm-1: [DMESG-FAIL][21] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][22] ([i915#12061] / [i915#13929])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/bat-atsm-1/igt@i915_selftest@live.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][23] ([i915#14204]) -> [DMESG-FAIL][24] ([i915#13929])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/bat-atsm-1/igt@i915_selftest@live@mman.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* Linux: CI_DRM_16968 -> Patchwork_152655v1
CI-20190529: 20190529
CI_DRM_16968: c59a466c9c1d514e151d30f0a66ce76ce8d21aef @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8488: c4a9bee161f4bb74cbbf81c73b24c416ecf93976 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_152655v1: c59a466c9c1d514e151d30f0a66ce76ce8d21aef @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/index.html
[-- Attachment #2: Type: text/html, Size: 8753 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for For CI only
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
` (9 preceding siblings ...)
2025-08-08 1:09 ` ✓ i915.CI.BAT: success for For CI only Patchwork
@ 2025-08-08 3:55 ` Patchwork
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-08-08 3:55 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 162265 bytes --]
== Series Details ==
Series: For CI only
URL : https://patchwork.freedesktop.org/series/152655/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16968_full -> Patchwork_152655v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_152655v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_152655v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_152655v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html
* igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2:
- shard-rkl: [PASS][3] -> [ABORT][4] +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-5/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html
#### Warnings ####
* igt@i915_selftest@live:
- shard-dg2: [DMESG-FAIL][5] ([i915#12061]) -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-6/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-5/igt@i915_selftest@live.html
New tests
---------
New tests have been introduced between CI_DRM_16968_full and Patchwork_152655v1_full:
### New IGT tests (34) ###
* igt@kms_flip@bad-flags-handle-to-fd:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@bad-htotal:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@bad-pitch-128:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@bad-pitch-256:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@basic-s0:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@close-race:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@ctrl-surf-copy:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@cursor-random-256x85:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@cursor-rapid-movement-32x10:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@cursorb-vs-flipa-atomic:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@dc6-psr:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@dsc-with-bpc-formats:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@frequency:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@getfb2-handle-closed:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@invalid-batch-start-offset:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@invalid-query-one-illegal-handle:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@invalid-reset-bad-pad:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@invalid-ring2:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@legacy-basic:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@partial-mmap:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@planes-scaler-unity-scaling:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@psr-shrfb-scaledprimary:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@psr-shrfb-scaledprimary@b-hdmi-a2:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@sanity:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@single-wait-all-signaled:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@tiling-yf:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@timeline-wait:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@u-independent:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@universal-setplane-primary:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@x-tiled-64bpp-rotate-180:
- Statuses :
- Exec time: [None] s
* igt@kms_flip@yf-tiled-mc-ccs-to-vebox-y-tiled:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in Patchwork_152655v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@device_reset@unbind-cold-reset-rebind.html
* igt@fbdev@read:
- shard-rkl: [PASS][8] -> [SKIP][9] ([i915#14544] / [i915#2582]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@fbdev@read.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@fbdev@read.html
* igt@gem_caching@writes:
- shard-rkl: NOTRUN -> [DMESG-WARN][10] ([i915#12917] / [i915#12964])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@gem_ccs@suspend-resume.html
- shard-dg2-9: NOTRUN -> [INCOMPLETE][15] ([i915#13356])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2-9: NOTRUN -> [INCOMPLETE][16] ([i915#12392] / [i915#13356])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2-9: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#5882]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#280]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2-9: NOTRUN -> [SKIP][24] ([i915#4812])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-concurrent16:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +7 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu-active:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@gem_exec_reloc@basic-wc-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4860]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4613]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][37] ([i915#4613]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_madvise@dontneed-before-exec:
- shard-dg2-9: NOTRUN -> [SKIP][38] ([i915#3282]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#284])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@gem_media_vme.html
* igt@gem_mmap_gtt@hang-busy:
- shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#4077]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_mmap_gtt@hang-busy.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4077])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@close:
- shard-dg2-9: NOTRUN -> [SKIP][42] ([i915#4083])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@set-cache-level:
- shard-rkl: [PASS][43] -> [SKIP][44] ([i915#14544] / [i915#1850])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@gem_mmap_wc@set-cache-level.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4083]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3282])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3282]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@gem_partial_pwrite_pread@write.html
* igt@gem_pread@exhaustion:
- shard-glk10: NOTRUN -> [WARN][49] ([i915#2658])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk10/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: [PASS][50] -> [TIMEOUT][51] ([i915#12964])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@gem_pxp@display-protected-crc.html
- shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: NOTRUN -> [TIMEOUT][55] ([i915#12917] / [i915#12964])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_render_copy@yf-tiled-ccs-to-x-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#5190] / [i915#8428])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#3297])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297] / [i915#4880])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#3297] / [i915#4880])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@relocations:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#3281] / [i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297] / [i915#4958])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
* igt@gem_workarounds@suspend-resume:
- shard-glk11: NOTRUN -> [INCOMPLETE][66] ([i915#13356] / [i915#14586])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk11/igt@gem_workarounds@suspend-resume.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][67] +8 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-dg2-9: NOTRUN -> [SKIP][68] +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#2856]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@gen9_exec_parse@unaligned-jump.html
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@gen9_exec_parse@unaligned-jump.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@busy-hang@vecs0:
- shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#14073]) +7 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@i915_drm_fdinfo@busy-hang@vecs0.html
* igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#14073]) +7 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#14118]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#8399])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#14498])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: NOTRUN -> [ABORT][78] ([i915#8213])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#11681] / [i915#6621])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2-9: NOTRUN -> [SKIP][80] ([i915#11681])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#4387])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][82] -> [SKIP][83] ([i915#7984])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-mtlp-2/igt@i915_power@sanity.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-mtlp-5/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#6245])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#5723])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@guc_multi_lrc:
- shard-dg2: [PASS][86] -> [INCOMPLETE][87] ([i915#14201])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-6/igt@i915_selftest@live@guc_multi_lrc.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-5/igt@i915_selftest@live@guc_multi_lrc.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][88] -> [DMESG-FAIL][89] ([i915#12061]) +1 other test dmesg-fail
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@mock:
- shard-dg2: [PASS][90] -> [DMESG-WARN][91] ([i915#14545])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-5/igt@i915_selftest@mock.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@i915_selftest@mock.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4077]) +9 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk10: NOTRUN -> [INCOMPLETE][93] ([i915#4817])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk10/igt@i915_suspend@forcewake.html
* igt@i915_suspend@sysfs-reader:
- shard-glk11: NOTRUN -> [INCOMPLETE][94] ([i915#4817])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk11/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#7707])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#7707])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4212]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2:
- shard-glk: [PASS][98] -> [FAIL][99] ([i915#13335])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1:
- shard-glk: [PASS][100] -> [FAIL][101] ([i915#10991])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#12761]) +1 other test incomplete
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#5286]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#5286]) +5 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#3638])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5190]) +6 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#6095]) +160 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-14/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#10307] / [i915#6095]) +155 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#6095]) +59 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#6095]) +34 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#12313])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#6095]) +24 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#12805])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#14098] / [i915#6095]) +30 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][119] ([i915#12796]) +1 other test incomplete
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#6095]) +30 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#6095]) +31 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#12313]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#13784])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#13781]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-14/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#11151] / [i915#7828]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-glk11: NOTRUN -> [SKIP][129] +34 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk11/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +8 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@ctm-green-to-red:
- shard-rkl: [PASS][133] -> [SKIP][134] ([i915#12655] / [i915#14544]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_color@ctm-green-to-red.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_color@ctm-green-to-red.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][135] -> [SKIP][136] ([i915#12655] / [i915#3555])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-11/igt@kms_color@deep-color.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@content-type-change:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#3116] / [i915#3299])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#7118])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#7118] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][142] ([i915#1339] / [i915#7173])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#13049]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#13049])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#13049]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][146] -> [FAIL][147] ([i915#13566]) +1 other test fail
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu-1: NOTRUN -> [FAIL][148] ([i915#13566]) +3 other tests fail
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][149] ([i915#13566]) +1 other test fail
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-8/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#3555]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#3555]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-9: NOTRUN -> [SKIP][153] ([i915#13049])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_edge_walk@256x256-top-edge:
- shard-rkl: [PASS][154] -> [DMESG-WARN][155] ([i915#12964]) +11 other tests dmesg-warn
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-8/igt@kms_cursor_edge_walk@256x256-top-edge.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@kms_cursor_edge_walk@256x256-top-edge.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][156] ([i915#12964]) +11 other tests dmesg-warn
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-b-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#4103]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#4103] / [i915#4213])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- shard-rkl: [PASS][159] -> [SKIP][160] ([i915#11190] / [i915#14544]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#13046] / [i915#5354]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2-9: NOTRUN -> [SKIP][162] ([i915#13046] / [i915#5354]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-rkl: [PASS][163] -> [FAIL][164] ([i915#2346])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-glk: NOTRUN -> [FAIL][165] ([i915#2346])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#9723])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#9723])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#9833])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#1769] / [i915#3555] / [i915#3804])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3804])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#13749])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#13749])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-rkl: [PASS][173] -> [SKIP][174] ([i915#14544]) +54 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#8812])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3840] / [i915#9688])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@fbc:
- shard-rkl: [PASS][178] -> [SKIP][179] ([i915#14544] / [i915#14561])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_fbcon_fbt@fbc.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][180] ([i915#9878])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3469])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#4854])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-10/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#1839])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#658])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#4881])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#9934]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#9934]) +5 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#9934])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#8381])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3637] / [i915#9934])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#3637] / [i915#9934]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#9934]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@blocking-absolute-wf_vblank@a-edp1:
- shard-mtlp: [PASS][193] -> [ABORT][194] ([i915#13562]) +1 other test abort
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-mtlp-1/igt@kms_flip@blocking-absolute-wf_vblank@a-edp1.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-mtlp-3/igt@kms_flip@blocking-absolute-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][195] ([i915#14600]) +1 other test fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-rkl: [PASS][196] -> [SKIP][197] ([i915#14544] / [i915#3637]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][198] ([i915#12745] / [i915#4839])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][199] ([i915#12745])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#2672]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-rkl: [PASS][204] -> [SKIP][205] ([i915#14544] / [i915#3555]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#2672]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-dg1: [PASS][211] -> [ABORT][212] ([i915#4391] / [i915#4423])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg1-12/igt@kms_force_connector_basic@force-edid.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-15/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render:
- shard-rkl: [PASS][213] -> [SKIP][214] ([i915#14544] / [i915#1849] / [i915#5354]) +12 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [FAIL][215] ([i915#6880])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#5354]) +27 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#1825]) +7 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#3458]) +10 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#10433] / [i915#3458])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2-9: NOTRUN -> [SKIP][220] ([i915#3458]) +4 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][221] +31 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][222] ([i915#5354]) +5 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-glk: NOTRUN -> [SKIP][223] +353 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][224] ([i915#10055])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#9766])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#8708]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3023]) +6 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#3458])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#8708]) +15 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][230] +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#8708])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [PASS][233] -> [SKIP][234] ([i915#3555] / [i915#8228]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@bad-vtotal:
- shard-rkl: [PASS][235] -> [SKIP][236] ([i915#14544] / [i915#3555] / [i915#8826]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_invalid_mode@bad-vtotal.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_invalid_mode@bad-vtotal.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#12388]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#10656]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-10/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#12388])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#6301])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: NOTRUN -> [SKIP][241] +7 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@read-crc:
- shard-glk10: NOTRUN -> [SKIP][242] ([i915#11190])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk10/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_plane@pixel-format:
- shard-rkl: [PASS][243] -> [SKIP][244] ([i915#14544] / [i915#8825])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_plane@pixel-format.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_plane@pixel-format.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][245] ([i915#12178])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][246] ([i915#7862]) +1 other test fail
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][247] ([i915#8821])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#13958])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#13958])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#13046] / [i915#5354] / [i915#9423])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#12247]) +9 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#12247])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c:
- shard-glk10: NOTRUN -> [SKIP][253] +141 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk10/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#12247]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format:
- shard-rkl: [PASS][255] -> [SKIP][256] ([i915#14544] / [i915#8152]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-rkl: [PASS][257] -> [SKIP][258] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-rkl: [PASS][259] -> [SKIP][260] ([i915#12247] / [i915#14544]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-rkl: [PASS][261] -> [SKIP][262] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- shard-rkl: [PASS][263] -> [SKIP][264] ([i915#12247] / [i915#14544] / [i915#8152]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#9812]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#9685])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#9685])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][268] ([i915#9295])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#8430])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#8430])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][271] -> [SKIP][272] ([i915#14544] / [i915#9519])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#9519])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][274] ([i915#9519])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][275] -> [SKIP][276] ([i915#9519])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2-9: NOTRUN -> [SKIP][277] ([i915#6524] / [i915#6805])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-rkl: [PASS][278] -> [SKIP][279] ([i915#14544] / [i915#6524])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_prime@basic-crc-vgem.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#6524])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#6524] / [i915#6805]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#11520]) +5 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#11520]) +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#11520]) +7 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#11520]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][286] ([i915#11520]) +11 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#11520]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-dg2-9: NOTRUN -> [SKIP][288] ([i915#11520]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][289] ([i915#11520]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][290] ([i915#11520])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk11/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#9683])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#9732]) +5 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#1072] / [i915#9732]) +21 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#1072] / [i915#9732]) +5 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#9732]) +8 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-sprite-blt:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#9732]) +16 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +2 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-19/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2-9: NOTRUN -> [SKIP][298] ([i915#4235])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#5289])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#5289])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#12755])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2-9: NOTRUN -> [SKIP][302] ([i915#3555]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-9: NOTRUN -> [SKIP][303] ([i915#8623])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][304] ([i915#12276]) +1 other test incomplete
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [PASS][305] -> [INCOMPLETE][306] ([i915#12276])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][307] ([i915#12276])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#3555])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#11920])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#9906])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#9906])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#2437])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#2437] / [i915#9412])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#2433])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [PASS][315] -> [FAIL][316] ([i915#4349])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2-9: NOTRUN -> [FAIL][317] ([i915#4349]) +4 other tests fail
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#8516])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#3291] / [i915#3708])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#3291] / [i915#3708])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-dg2-9: NOTRUN -> [SKIP][321] ([i915#3291] / [i915#3708])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][322] +66 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-6/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][323] ([i915#12910]) +9 other tests fail
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#9917])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#4818])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@fbdev@pan:
- shard-rkl: [SKIP][326] ([i915#14544] / [i915#2582]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@fbdev@pan.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@fbdev@pan.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [INCOMPLETE][328] ([i915#13304]) -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@gem_exec_suspend@basic-s3.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: [TIMEOUT][330] ([i915#12917] / [i915#12964]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-2.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@i915_hangman@hangcheck-unterminated:
- shard-rkl: [DMESG-WARN][332] ([i915#12964]) -> [PASS][333] +5 other tests pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@i915_hangman@hangcheck-unterminated.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@i915_hangman@hangcheck-unterminated.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][334] ([i915#12455] / [i915#13820]) -> [PASS][335] +1 other test pass
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [FAIL][336] ([i915#12942]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [SKIP][338] ([i915#13328] / [i915#14544]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][340] ([i915#13729] / [i915#13821]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-snb5/igt@i915_pm_rps@reset.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-snb7/igt@i915_pm_rps@reset.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [DMESG-FAIL][342] ([i915#12061]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-6/igt@i915_selftest@live@workarounds.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-5/igt@i915_selftest@live@workarounds.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1:
- shard-glk: [FAIL][344] ([i915#12518]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2:
- shard-glk: [FAIL][346] ([i915#10991]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][348] ([i915#5138]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [SKIP][350] ([i915#14544]) -> [PASS][351] +33 other tests pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4:
- shard-dg1: [DMESG-WARN][352] ([i915#4423]) -> [PASS][353] +2 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg1-16/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-18/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- shard-rkl: [SKIP][354] ([i915#11190] / [i915#14544]) -> [PASS][355] +3 other tests pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [FAIL][356] ([i915#2346]) -> [PASS][357] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][358] ([i915#14033]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-rkl: [SKIP][360] ([i915#14544] / [i915#3637]) -> [PASS][361] +7 other tests pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_flip@modeset-vs-vblank-race.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-rkl: [SKIP][362] ([i915#14544] / [i915#3555]) -> [PASS][363] +2 other tests pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][364] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][365] +2 other tests pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg2: [FAIL][366] ([i915#6880]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_invalid_mode@bad-hsync-end:
- shard-rkl: [SKIP][368] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-end.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_invalid_mode@bad-hsync-end.html
* igt@kms_invalid_mode@overflow-vrefresh:
- shard-rkl: [SKIP][370] ([i915#14544] / [i915#8826]) -> [PASS][371]
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_invalid_mode@overflow-vrefresh.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_invalid_mode@overflow-vrefresh.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [INCOMPLETE][372] ([i915#14412]) -> [PASS][373] +1 other test pass
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-rkl: [SKIP][374] ([i915#14544] / [i915#7294]) -> [PASS][375] +1 other test pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-max.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-rkl: [SKIP][376] ([i915#14544] / [i915#3555] / [i915#8152]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a:
- shard-rkl: [SKIP][378] ([i915#12247] / [i915#14544]) -> [PASS][379] +2 other tests pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- shard-rkl: [SKIP][380] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][381] +2 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-rkl: [SKIP][382] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][383] +1 other test pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_pm_rpm@fences-dpms:
- shard-rkl: [SKIP][384] ([i915#14544] / [i915#1849]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][386] ([i915#14544] / [i915#9519]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][388] ([i915#9519]) -> [PASS][389] +2 other tests pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_properties@crtc-properties-legacy:
- shard-rkl: [SKIP][390] ([i915#11521] / [i915#14544]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_properties@crtc-properties-legacy.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][392] ([i915#9196]) -> [PASS][393] +1 other test pass
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-rkl: [FAIL][394] ([i915#4349]) -> [PASS][395] +3 other tests pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@perf_pmu@most-busy-idle-check-all.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: [SKIP][396] ([i915#8411]) -> [SKIP][397] ([i915#14544] / [i915#8411]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][398] ([i915#6230]) -> [SKIP][399] ([i915#14544] / [i915#6230])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@api_intel_bb@crc32.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@api_intel_bb@crc32.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][400] ([i915#11078]) -> [SKIP][401] ([i915#11078] / [i915#14544])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: [SKIP][402] ([i915#13008] / [i915#14544]) -> [SKIP][403] ([i915#13008])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: [SKIP][404] ([i915#14544] / [i915#9323]) -> [SKIP][405] ([i915#9323])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gem_ccs@suspend-resume.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][406] ([i915#7697]) -> [SKIP][407] ([i915#14544] / [i915#7697])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: [SKIP][408] ([i915#14544] / [i915#4525]) -> [SKIP][409] ([i915#4525]) +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][410] ([i915#6344]) -> [SKIP][411] ([i915#14544] / [i915#6344])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: [SKIP][412] ([i915#3281]) -> [SKIP][413] ([i915#14544] / [i915#3281]) +11 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-rkl: [SKIP][414] ([i915#14544] / [i915#3281]) -> [SKIP][415] ([i915#3281]) +5 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [SKIP][416] ([i915#7276]) -> [SKIP][417] ([i915#14544] / [i915#7276])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: [SKIP][418] ([i915#2190]) -> [SKIP][419] ([i915#14544] / [i915#2190])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: [SKIP][420] ([i915#14544] / [i915#4613]) -> [SKIP][421] ([i915#4613]) +2 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random:
- shard-rkl: [SKIP][422] ([i915#4613]) -> [SKIP][423] ([i915#14544] / [i915#4613]) +2 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@gem_lmem_swapping@random.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_lmem_swapping@random.html
* igt@gem_media_vme:
- shard-rkl: [SKIP][424] ([i915#284]) -> [SKIP][425] ([i915#14544] / [i915#284])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@gem_media_vme.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_media_vme.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][426] ([i915#14544] / [i915#3282]) -> [SKIP][427] ([i915#3282]) +4 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][428] ([i915#3282]) -> [SKIP][429] ([i915#14544] / [i915#3282]) +5 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@gem_pread@snoop.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_pread@snoop.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: [TIMEOUT][430] ([i915#12917] / [i915#12964]) -> [SKIP][431] ([i915#14544] / [i915#4270]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: [SKIP][432] ([i915#14544] / [i915#4270]) -> [TIMEOUT][433] ([i915#12917] / [i915#12964]) +1 other test timeout
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: [SKIP][434] ([i915#4270]) -> [SKIP][435] ([i915#14544] / [i915#4270])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#3297]) -> [SKIP][437] ([i915#3297]) +3 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][438] ([i915#3297]) -> [SKIP][439] ([i915#14544] / [i915#3297]) +2 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: [SKIP][440] ([i915#3282] / [i915#3297]) -> [SKIP][441] ([i915#14544] / [i915#3282] / [i915#3297])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][442] ([i915#2527]) -> [SKIP][443] ([i915#14544] / [i915#2527]) +5 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-rkl: [SKIP][444] ([i915#14544] / [i915#2527]) -> [SKIP][445] ([i915#2527]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][446] ([i915#14544] / [i915#8399]) -> [SKIP][447] ([i915#8399]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#4387]) -> [SKIP][449] ([i915#4387])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
* igt@kms_atomic_interruptible@legacy-setmode:
- shard-rkl: [SKIP][450] ([i915#14544]) -> [DMESG-WARN][451] ([i915#12964]) +6 other tests dmesg-warn
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_atomic_interruptible@legacy-setmode.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_atomic_interruptible@legacy-setmode.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-rkl: [DMESG-WARN][452] ([i915#12964]) -> [SKIP][453] ([i915#14544]) +1 other test skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][454] ([i915#1769] / [i915#3555]) -> [SKIP][455] ([i915#14544])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][456] ([i915#14544]) -> [SKIP][457] ([i915#1769] / [i915#3555])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][458] ([i915#14544]) -> [SKIP][459] ([i915#5286]) +4 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: [SKIP][460] ([i915#5286]) -> [SKIP][461] ([i915#14544]) +4 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: [SKIP][462] ([i915#3638]) -> [SKIP][463] ([i915#14544]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][464] ([i915#14544]) -> [SKIP][465] ([i915#3638]) +3 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: [SKIP][466] ([i915#14544]) -> [SKIP][467] +11 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-rkl: [SKIP][468] ([i915#14544]) -> [SKIP][469] ([i915#14098] / [i915#6095]) +9 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: [SKIP][470] ([i915#14098] / [i915#6095]) -> [SKIP][471] ([i915#14544]) +13 other tests skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][472] ([i915#14544]) -> [SKIP][473] ([i915#12805])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][474] ([i915#14544]) -> [SKIP][475] ([i915#12313]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: [SKIP][476] ([i915#11151] / [i915#7828]) -> [SKIP][477] ([i915#11151] / [i915#14544] / [i915#7828]) +11 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][478] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][479] ([i915#11151] / [i915#7828]) +5 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [FAIL][480] ([i915#7173]) -> [SKIP][481] ([i915#7118] / [i915#9424])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][482] ([i915#14544]) -> [SKIP][483] ([i915#3116])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: [SKIP][484] ([i915#9424]) -> [SKIP][485] ([i915#14544])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_content_protection@lic-type-0.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][486] ([i915#9433]) -> [SKIP][487] ([i915#9424])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-16/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][488] ([i915#7118] / [i915#9424]) -> [SKIP][489] ([i915#14544]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_content_protection@type1.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][490] ([i915#7118] / [i915#9424]) -> [FAIL][491] ([i915#1339] / [i915#7173])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-5/igt@kms_content_protection@uevent.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-11/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][492] ([i915#14544]) -> [SKIP][493] ([i915#3555]) +3 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][494] ([i915#13049]) -> [SKIP][495] ([i915#14544]) +2 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][496] ([i915#3555]) -> [SKIP][497] ([i915#14544]) +2 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][498] ([i915#14544]) -> [SKIP][499] ([i915#13049])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][500] ([i915#11190] / [i915#14544]) -> [SKIP][501] ([i915#4103])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][502] ([i915#4103]) -> [SKIP][503] ([i915#11190] / [i915#14544])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][504] -> [SKIP][505] ([i915#14544]) +15 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: [SKIP][506] ([i915#4103]) -> [SKIP][507] ([i915#14544])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][508] ([i915#14544]) -> [SKIP][509] ([i915#9723])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: [SKIP][510] ([i915#13707]) -> [SKIP][511] ([i915#14544])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][512] ([i915#14544]) -> [SKIP][513] ([i915#3840])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][514] ([i915#3555] / [i915#3840]) -> [SKIP][515] ([i915#14544])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: [SKIP][516] ([i915#3840] / [i915#9053]) -> [SKIP][517] ([i915#14544])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][518] ([i915#3955]) -> [SKIP][519] ([i915#14544] / [i915#3955]) +1 other test skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][520] ([i915#14544] / [i915#4854]) -> [SKIP][521] ([i915#4854])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#1839]) -> [SKIP][523] ([i915#1839])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_feature_discovery@display-4x.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#9337]) -> [SKIP][525] ([i915#9337])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][526] ([i915#658]) -> [SKIP][527] ([i915#14544] / [i915#658])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_feature_discovery@psr2.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][528] ([i915#9934]) -> [SKIP][529] ([i915#14544] / [i915#9934]) +8 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#9934]) -> [SKIP][531] ([i915#9934])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#3555]) -> [SKIP][533] ([i915#2672] / [i915#3555]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][534] ([i915#2672] / [i915#3555]) -> [SKIP][535] ([i915#14544] / [i915#3555]) +4 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-rkl: [SKIP][536] ([i915#14544] / [i915#3555]) -> [DMESG-WARN][537] ([i915#12917] / [i915#12964])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_flip_tiling@flip-change-tiling.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][538] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][539] ([i915#1825]) +33 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-render:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#1849] / [i915#5354]) -> [DMESG-WARN][541] ([i915#12964])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-render.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][542] ([i915#5439]) -> [SKIP][543] ([i915#14544] / [i915#1849] / [i915#5354])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][545] ([i915#3023]) +15 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][546] ([i915#10433] / [i915#3458]) -> [SKIP][547] ([i915#3458]) +2 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][548] ([i915#1825]) -> [SKIP][549] ([i915#14544] / [i915#1849] / [i915#5354]) +31 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][550] -> [SKIP][551] ([i915#14544] / [i915#1849] / [i915#5354])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][552] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][553] ([i915#5439])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][554] ([i915#3023]) -> [SKIP][555] ([i915#14544] / [i915#1849] / [i915#5354]) +21 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][556] ([i915#3458]) -> [SKIP][557] ([i915#10433] / [i915#3458]) +2 other tests skip
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][558] ([i915#14544]) -> [SKIP][559] ([i915#3555] / [i915#8228])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_hdr@bpc-switch.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][560] ([i915#12713]) -> [SKIP][561] ([i915#1187] / [i915#12713])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg1-19/igt@kms_hdr@brightness-with-hdr.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][562] ([i915#3555] / [i915#8228]) -> [SKIP][563] ([i915#14544])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_hdr@static-toggle.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: [SKIP][564] ([i915#10656]) -> [SKIP][565] ([i915#10656] / [i915#14544])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][566] ([i915#12394] / [i915#14544]) -> [SKIP][567] ([i915#12394])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: [SKIP][568] ([i915#10656] / [i915#14544]) -> [SKIP][569] ([i915#10656])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][570] ([i915#12339]) -> [SKIP][571] ([i915#12339] / [i915#14544])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][572] ([i915#13522]) -> [SKIP][573] ([i915#13522] / [i915#14544])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][574] ([i915#6301]) -> [SKIP][575] ([i915#14544])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][576] ([i915#14544]) -> [SKIP][577] ([i915#6301])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_panel_fitting@legacy.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@plane-panning-top-left:
- shard-rkl: [DMESG-WARN][578] ([i915#12964]) -> [SKIP][579] ([i915#14544] / [i915#8825])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_plane@plane-panning-top-left.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][580] ([i915#14544]) -> [SKIP][581] ([i915#13958]) +1 other test skip
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [SKIP][582] ([i915#6953]) -> [SKIP][583] ([i915#14544] / [i915#6953] / [i915#8152])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][584] ([i915#14544] / [i915#3555] / [i915#8152]) -> [SKIP][585] ([i915#3555])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][586] ([i915#12247] / [i915#14544]) -> [SKIP][587] ([i915#12247]) +1 other test skip
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- shard-rkl: [SKIP][588] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][589] ([i915#12247]) +2 other tests skip
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][590] ([i915#5354]) -> [SKIP][591] ([i915#14544] / [i915#5354])
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][592] ([i915#14544] / [i915#5354]) -> [SKIP][593] ([i915#5354])
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_pm_backlight@fade.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: [SKIP][594] ([i915#3828]) -> [SKIP][595] ([i915#14544] / [i915#3828])
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][596] ([i915#9295]) -> [SKIP][597] ([i915#3361])
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: [SKIP][598] ([i915#14544] / [i915#8430]) -> [SKIP][599] ([i915#8430])
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][600] ([i915#9519]) -> [SKIP][601] ([i915#14544] / [i915#9519]) +1 other test skip
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][602] ([i915#12916]) -> [SKIP][603] ([i915#12916] / [i915#14544])
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][604] ([i915#14544] / [i915#6524]) -> [SKIP][605] ([i915#6524])
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][606] ([i915#11520] / [i915#14544]) -> [SKIP][607] ([i915#11520]) +5 other tests skip
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][608] ([i915#11520]) -> [SKIP][609] ([i915#11520] / [i915#14544]) +7 other tests skip
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][610] ([i915#9683]) -> [SKIP][611] ([i915#14544] / [i915#9683])
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: [SKIP][612] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][613] ([i915#1072] / [i915#9732]) +14 other tests skip
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: [SKIP][614] ([i915#1072] / [i915#9732]) -> [SKIP][615] ([i915#1072] / [i915#14544] / [i915#9732]) +19 other tests skip
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: [SKIP][616] ([i915#9685]) -> [SKIP][617] ([i915#14544] / [i915#9685])
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_vrr@max-min:
- shard-rkl: [SKIP][618] ([i915#9906]) -> [SKIP][619] ([i915#14544])
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@kms_vrr@max-min.html
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: [SKIP][620] ([i915#2437] / [i915#9412]) -> [SKIP][621] ([i915#14544] / [i915#2437] / [i915#9412])
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: [SKIP][622] ([i915#2437]) -> [SKIP][623] ([i915#14544] / [i915#2437]) +1 other test skip
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@kms_writeback@writeback-fb-id.html
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@kms_writeback@writeback-fb-id.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][624] ([i915#14544] / [i915#2434]) -> [SKIP][625] ([i915#2434])
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@perf@mi-rpc.html
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@perf@mi-rpc.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [INCOMPLETE][626] ([i915#13356]) -> [INCOMPLETE][627] ([i915#13356] / [i915#14242])
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-glk6/igt@perf_pmu@rc6-suspend.html
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-glk5/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: [SKIP][628] ([i915#3708]) -> [SKIP][629] ([i915#3708] / [i915#4423])
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-dg1-12/igt@prime_vgem@basic-fence-flip.html
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-dg1-15/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][630] ([i915#3291] / [i915#3708]) -> [SKIP][631] ([i915#14544] / [i915#3291] / [i915#3708])
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][632] ([i915#14544] / [i915#3708]) -> [SKIP][633] ([i915#3708])
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][634] ([i915#3708]) -> [SKIP][635] ([i915#14544] / [i915#3708])
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: [SKIP][636] ([i915#14544] / [i915#9917]) -> [SKIP][637] ([i915#9917])
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: [SKIP][638] ([i915#9917]) -> [SKIP][639] ([i915#14544] / [i915#9917]) +1 other test skip
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16968/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455
[i915#12518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12518
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304
[i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328
[i915#13335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13335
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1850
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_16968 -> Patchwork_152655v1
CI-20190529: 20190529
CI_DRM_16968: c59a466c9c1d514e151d30f0a66ce76ce8d21aef @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8488: c4a9bee161f4bb74cbbf81c73b24c416ecf93976 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_152655v1: c59a466c9c1d514e151d30f0a66ce76ce8d21aef @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152655v1/index.html
[-- Attachment #2: Type: text/html, Size: 218476 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-08-08 3:55 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-07 23:01 [CI 0/9] For CI only Rodrigo Vivi
2025-08-07 23:01 ` [CI 1/9] drm/i915: Move struct_mutex to drm_i915_private Rodrigo Vivi
2025-08-07 23:01 ` [CI 2/9] drm/i915: Remove struct_mutex in i915_irq.c Rodrigo Vivi
2025-08-07 23:01 ` [CI 3/9] drm/i915: Change mutex initialization in intel_guc_log Rodrigo Vivi
2025-08-07 23:01 ` [CI 4/9] drm/i915: Replace struct_mutex in intel_guc_log.c Rodrigo Vivi
2025-08-07 23:01 ` [CI 5/9] drm/i915/gem: Clean-up outdated struct_mutex comments Rodrigo Vivi
2025-08-07 23:01 ` [CI 6/9] drm/i915/display: Remove " Rodrigo Vivi
2025-08-07 23:01 ` [CI 7/9] drm/i915: Clean-up " Rodrigo Vivi
2025-08-07 23:01 ` [CI 8/9] drm/i915: Remove unused struct_mutex from drm_i915_private Rodrigo Vivi
2025-08-07 23:01 ` [CI 9/9] drm/i915: Remove todo and comments about struct_mutex Rodrigo Vivi
2025-08-08 1:09 ` ✓ i915.CI.BAT: success for For CI only Patchwork
2025-08-08 3:55 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).