* [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend
@ 2024-11-29 16:37 Gustavo Sousa
2024-11-29 16:37 ` [PATCH v2 1/3] drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work() Gustavo Sousa
` (6 more replies)
0 siblings, 7 replies; 14+ messages in thread
From: Gustavo Sousa @ 2024-11-29 16:37 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Luca Coelho, Rodrigo Vivi
We currently are not calling display runtime suspend functions when
D3cold is not allowed. That end up causing DMC wakelock to be enabled
because of dynamic DC states. Because of that, we need to make sure we
flush the release worker at the end of display runtime suspend.
v2:
- Fixes for "drm/xe/display: Extract xe_display_pm_runtime_suspend_late()",
see the patch changelog for details.
Gustavo Sousa (3):
drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work()
drm/xe/display: Extract xe_display_pm_runtime_suspend_late()
drm/xe/display: Flush DMC wakelock release work on runtime suspend
drivers/gpu/drm/i915/display/intel_dmc_wl.c | 12 +++++++++++-
drivers/gpu/drm/i915/display/intel_dmc_wl.h | 1 +
drivers/gpu/drm/xe/display/xe_display.c | 19 +++++++++++++++++++
drivers/gpu/drm/xe/display/xe_display.h | 2 ++
drivers/gpu/drm/xe/xe_pm.c | 4 ++--
5 files changed, 35 insertions(+), 3 deletions(-)
--
2.47.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 1/3] drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work()
2024-11-29 16:37 [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend Gustavo Sousa
@ 2024-11-29 16:37 ` Gustavo Sousa
2024-11-29 18:25 ` Rodrigo Vivi
2024-11-29 16:37 ` [PATCH v2 2/3] drm/xe/display: Extract xe_display_pm_runtime_suspend_late() Gustavo Sousa
` (5 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Sousa @ 2024-11-29 16:37 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Luca Coelho, Rodrigo Vivi
We will need to flush the release work from outside in an upcoming
change. Let's put that into a public interface and call it
intel_dmc_wl_flush_release_work().
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/i915/display/intel_dmc_wl.c | 12 +++++++++++-
drivers/gpu/drm/i915/display/intel_dmc_wl.h | 1 +
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dmc_wl.c b/drivers/gpu/drm/i915/display/intel_dmc_wl.c
index 853d75610489..09075830c12f 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc_wl.c
+++ b/drivers/gpu/drm/i915/display/intel_dmc_wl.c
@@ -349,7 +349,7 @@ void intel_dmc_wl_disable(struct intel_display *display)
if (!__intel_dmc_wl_supported(display))
return;
- flush_delayed_work(&wl->work);
+ intel_dmc_wl_flush_release_work(display);
spin_lock_irqsave(&wl->lock, flags);
@@ -377,6 +377,16 @@ void intel_dmc_wl_disable(struct intel_display *display)
spin_unlock_irqrestore(&wl->lock, flags);
}
+void intel_dmc_wl_flush_release_work(struct intel_display *display)
+{
+ struct intel_dmc_wl *wl = &display->wl;
+
+ if (!__intel_dmc_wl_supported(display))
+ return;
+
+ flush_delayed_work(&wl->work);
+}
+
void intel_dmc_wl_get(struct intel_display *display, i915_reg_t reg)
{
struct intel_dmc_wl *wl = &display->wl;
diff --git a/drivers/gpu/drm/i915/display/intel_dmc_wl.h b/drivers/gpu/drm/i915/display/intel_dmc_wl.h
index 147eeb4d8432..5488fbdf29b8 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc_wl.h
+++ b/drivers/gpu/drm/i915/display/intel_dmc_wl.h
@@ -32,6 +32,7 @@ struct intel_dmc_wl {
void intel_dmc_wl_init(struct intel_display *display);
void intel_dmc_wl_enable(struct intel_display *display, u32 dc_state);
void intel_dmc_wl_disable(struct intel_display *display);
+void intel_dmc_wl_flush_release_work(struct intel_display *display);
void intel_dmc_wl_get(struct intel_display *display, i915_reg_t reg);
void intel_dmc_wl_put(struct intel_display *display, i915_reg_t reg);
void intel_dmc_wl_get_noreg(struct intel_display *display);
--
2.47.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v2 2/3] drm/xe/display: Extract xe_display_pm_runtime_suspend_late()
2024-11-29 16:37 [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend Gustavo Sousa
2024-11-29 16:37 ` [PATCH v2 1/3] drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work() Gustavo Sousa
@ 2024-11-29 16:37 ` Gustavo Sousa
2024-11-29 18:25 ` Rodrigo Vivi
2024-11-29 16:37 ` [PATCH v2 3/3] drm/xe/display: Flush DMC wakelock release work on runtime suspend Gustavo Sousa
` (4 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Sousa @ 2024-11-29 16:37 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Luca Coelho, Rodrigo Vivi
The current behavior for the runtime suspend case is that
xe_display_pm_suspend_late() is only called when D3cold is allowed.
Let's incorporate that behavior into a function specific to runtime PM
and call it xe_display_pm_runtime_suspend_late().
With that, we keep stuff a bit more self-contained and allow having a
place for adding more "late display runtime suspend"-related logic that
isn't dependent on the "D3cold allowed" state.
v2:
- Fix typo in that caused xe_display_pm_runtime_suspend_late() to call
itself instead of xe_display_pm_suspend_late().
- Add the empty version of xe_display_pm_runtime_suspend_late() for
the !CONFIG_DRM_XE_DISPLAY case.
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/display/xe_display.c | 9 +++++++++
drivers/gpu/drm/xe/display/xe_display.h | 2 ++
drivers/gpu/drm/xe/xe_pm.c | 4 ++--
3 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
index 69c828f38cb6..739db5b7b01f 100644
--- a/drivers/gpu/drm/xe/display/xe_display.c
+++ b/drivers/gpu/drm/xe/display/xe_display.c
@@ -407,6 +407,15 @@ void xe_display_pm_suspend_late(struct xe_device *xe)
intel_display_power_suspend_late(xe, s2idle);
}
+void xe_display_pm_runtime_suspend_late(struct xe_device *xe)
+{
+ if (!xe->info.probe_display)
+ return;
+
+ if (xe->d3cold.allowed)
+ xe_display_pm_suspend_late(xe);
+}
+
void xe_display_pm_shutdown_late(struct xe_device *xe)
{
if (!xe->info.probe_display)
diff --git a/drivers/gpu/drm/xe/display/xe_display.h b/drivers/gpu/drm/xe/display/xe_display.h
index 17afa537aee5..233f81a26c25 100644
--- a/drivers/gpu/drm/xe/display/xe_display.h
+++ b/drivers/gpu/drm/xe/display/xe_display.h
@@ -41,6 +41,7 @@ void xe_display_pm_shutdown_late(struct xe_device *xe);
void xe_display_pm_resume_early(struct xe_device *xe);
void xe_display_pm_resume(struct xe_device *xe);
void xe_display_pm_runtime_suspend(struct xe_device *xe);
+void xe_display_pm_runtime_suspend_late(struct xe_device *xe);
void xe_display_pm_runtime_resume(struct xe_device *xe);
#else
@@ -74,6 +75,7 @@ static inline void xe_display_pm_shutdown_late(struct xe_device *xe) {}
static inline void xe_display_pm_resume_early(struct xe_device *xe) {}
static inline void xe_display_pm_resume(struct xe_device *xe) {}
static inline void xe_display_pm_runtime_suspend(struct xe_device *xe) {}
+static inline void xe_display_pm_runtime_suspend_late(struct xe_device *xe) {}
static inline void xe_display_pm_runtime_resume(struct xe_device *xe) {}
#endif /* CONFIG_DRM_XE_DISPLAY */
diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
index 80699dbeb2e9..a6761cb769b2 100644
--- a/drivers/gpu/drm/xe/xe_pm.c
+++ b/drivers/gpu/drm/xe/xe_pm.c
@@ -414,8 +414,8 @@ int xe_pm_runtime_suspend(struct xe_device *xe)
xe_irq_suspend(xe);
- if (xe->d3cold.allowed)
- xe_display_pm_suspend_late(xe);
+ xe_display_pm_runtime_suspend_late(xe);
+
out:
if (err)
xe_display_pm_runtime_resume(xe);
--
2.47.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [PATCH v2 3/3] drm/xe/display: Flush DMC wakelock release work on runtime suspend
2024-11-29 16:37 [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend Gustavo Sousa
2024-11-29 16:37 ` [PATCH v2 1/3] drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work() Gustavo Sousa
2024-11-29 16:37 ` [PATCH v2 2/3] drm/xe/display: Extract xe_display_pm_runtime_suspend_late() Gustavo Sousa
@ 2024-11-29 16:37 ` Gustavo Sousa
2024-11-29 18:26 ` Rodrigo Vivi
2024-11-29 17:03 ` ✗ Fi.CI.SPARSE: warning for Flush DMC wakelock release work at the end of runtime suspend (rev2) Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Sousa @ 2024-11-29 16:37 UTC (permalink / raw)
To: intel-xe, intel-gfx; +Cc: Luca Coelho, Rodrigo Vivi
We currently are not calling display runtime suspend functions when
D3cold is not allowed. Because of that, we end up not disabling dynamic
DC states (and do not go to DC9). With dynamic DC states enabled, we
will also have DMC wakelock enabled. Since we use a delayed work to
release the DMC wakelock, the work might get executed a little too late
(after the PCI device has been put to D3hot) and we get a timeout
warning ("DMC wakelock release timed out") because the MMIO for
releasing the wakelock will be invalid after that point.
To fix that, make sure we flush the release work at the end of
xe_display_pm_runtime_suspend_late(). We can do that unconditionally
because, if there is no pending work, that turns into a no-op.
Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
---
drivers/gpu/drm/xe/display/xe_display.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
index 739db5b7b01f..eec91ab1b311 100644
--- a/drivers/gpu/drm/xe/display/xe_display.c
+++ b/drivers/gpu/drm/xe/display/xe_display.c
@@ -22,6 +22,7 @@
#include "intel_display_irq.h"
#include "intel_display_types.h"
#include "intel_dmc.h"
+#include "intel_dmc_wl.h"
#include "intel_dp.h"
#include "intel_encoder.h"
#include "intel_fbdev.h"
@@ -409,11 +410,20 @@ void xe_display_pm_suspend_late(struct xe_device *xe)
void xe_display_pm_runtime_suspend_late(struct xe_device *xe)
{
+ struct intel_display *display = &xe->display;
+
if (!xe->info.probe_display)
return;
if (xe->d3cold.allowed)
xe_display_pm_suspend_late(xe);
+
+ /*
+ * If xe_display_pm_suspend_late() is not called, it is likely
+ * that we will be on dynamic DC states with DMC wakelock enabled. We
+ * need to flush the release work in that case.
+ */
+ intel_dmc_wl_flush_release_work(display);
}
void xe_display_pm_shutdown_late(struct xe_device *xe)
--
2.47.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Flush DMC wakelock release work at the end of runtime suspend (rev2)
2024-11-29 16:37 [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend Gustavo Sousa
` (2 preceding siblings ...)
2024-11-29 16:37 ` [PATCH v2 3/3] drm/xe/display: Flush DMC wakelock release work on runtime suspend Gustavo Sousa
@ 2024-11-29 17:03 ` Patchwork
2024-11-29 17:17 ` ✗ i915.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-11-29 17:03 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-gfx
== Series Details ==
Series: Flush DMC wakelock release work at the end of runtime suspend (rev2)
URL : https://patchwork.freedesktop.org/series/141932/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ i915.CI.BAT: failure for Flush DMC wakelock release work at the end of runtime suspend (rev2)
2024-11-29 16:37 [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend Gustavo Sousa
` (3 preceding siblings ...)
2024-11-29 17:03 ` ✗ Fi.CI.SPARSE: warning for Flush DMC wakelock release work at the end of runtime suspend (rev2) Patchwork
@ 2024-11-29 17:17 ` Patchwork
2024-11-29 17:36 ` Gustavo Sousa
2024-12-02 9:17 ` ✓ i915.CI.BAT: success " Patchwork
2024-12-02 11:31 ` ✗ i915.CI.Full: failure " Patchwork
6 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2024-11-29 17:17 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-gfx
== Series Details ==
Series: Flush DMC wakelock release work at the end of runtime suspend (rev2)
URL : https://patchwork.freedesktop.org/series/141932/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15763 -> Patchwork_141932v2
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_141932v2 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_141932v2, 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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/index.html
Participating hosts (46 -> 45)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_141932v2:
### IGT changes ###
#### Possible regressions ####
* igt@i915_module_load@reload:
- bat-arlh-3: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-arlh-3/igt@i915_module_load@reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-arlh-3/igt@i915_module_load@reload.html
Known issues
------------
Here are the changes found in Patchwork_141932v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-twl-2: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@basic:
- bat-twl-2: NOTRUN -> [SKIP][4] ([i915#10213] / [i915#11671]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@gem_lmem_swapping@basic.html
* igt@gem_tiled_pread_basic:
- bat-twl-2: NOTRUN -> [SKIP][5] ([i915#11031])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [PASS][6] -> [FAIL][7] ([i915#12903])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-twl-2: NOTRUN -> [SKIP][8] ([i915#10209] / [i915#11681])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@i915_pm_rps@basic-api.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-twl-2: NOTRUN -> [SKIP][9] ([i915#11030] / [i915#11731]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-twl-2: NOTRUN -> [SKIP][10] ([i915#9886])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-twl-2: NOTRUN -> [SKIP][11] ([i915#11032])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-twl-2: NOTRUN -> [SKIP][12] ([i915#8809])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-twl-2: NOTRUN -> [SKIP][13] ([i915#10212] / [i915#3708])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-twl-2: NOTRUN -> [SKIP][14] ([i915#10214] / [i915#3708])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-twl-2: NOTRUN -> [SKIP][15] ([i915#10216] / [i915#3708])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][16] ([i915#12904]) -> [PASS][17] +1 other test pass
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-apl-1/igt@dmabuf@all-tests.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-apl-1/igt@dmabuf@all-tests.html
* igt@kms_busy@basic@flip:
- fi-cfl-8109u: [DMESG-WARN][18] -> [PASS][19] +2 other tests pass
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/fi-cfl-8109u/igt@kms_busy@basic@flip.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/fi-cfl-8109u/igt@kms_busy@basic@flip.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [SKIP][20] ([i915#9197]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030
[i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031
[i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_15763 -> Patchwork_141932v2
CI-20190529: 20190529
CI_DRM_15763: 108f610005f88de624c1a8c4f85d5cab9f530ddb @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8131: f846ef8f7ddf051c88504c607136a9b5392bdef7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_141932v2: 108f610005f88de624c1a8c4f85d5cab9f530ddb @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/index.html
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: ✗ i915.CI.BAT: failure for Flush DMC wakelock release work at the end of runtime suspend (rev2)
2024-11-29 17:17 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-29 17:36 ` Gustavo Sousa
2024-12-02 9:19 ` Illipilli, TejasreeX
0 siblings, 1 reply; 14+ messages in thread
From: Gustavo Sousa @ 2024-11-29 17:36 UTC (permalink / raw)
To: i915-ci-infra, intel-gfx; +Cc: intel-gfx
Quoting Patchwork (2024-11-29 14:17:41-03:00)
>== Series Details ==
>
>Series: Flush DMC wakelock release work at the end of runtime suspend (rev2)
>URL : https://patchwork.freedesktop.org/series/141932/
>State : failure
>
>== Summary ==
>
>CI Bug Log - changes from CI_DRM_15763 -> Patchwork_141932v2
>====================================================
>
>Summary
>-------
>
> **FAILURE**
>
> Serious unknown changes coming with Patchwork_141932v2 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_141932v2, 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.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/index.html
>
>Participating hosts (46 -> 45)
>------------------------------
>
> Missing (1): fi-snb-2520m
>
>Possible new issues
>-------------------
>
> Here are the unknown changes that may have been introduced in Patchwork_141932v2:
>
>### IGT changes ###
>
>#### Possible regressions ####
>
> * igt@i915_module_load@reload:
> - bat-arlh-3: [PASS][1] -> [INCOMPLETE][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-arlh-3/igt@i915_module_load@reload.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-arlh-3/igt@i915_module_load@reload.html
This seems unrelated to this series. On the i915-side, the applied
changes are non-functional refactors and nothing on the log indicates an
issue on the DMC wakelock paths (all of which should be functionally a
no-op for ARL).
Please re-report.
--
Gustavo Sousa
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 1/3] drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work()
2024-11-29 16:37 ` [PATCH v2 1/3] drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work() Gustavo Sousa
@ 2024-11-29 18:25 ` Rodrigo Vivi
2024-11-30 17:09 ` Rodrigo Vivi
0 siblings, 1 reply; 14+ messages in thread
From: Rodrigo Vivi @ 2024-11-29 18:25 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-xe, intel-gfx, Luca Coelho
On Fri, Nov 29, 2024 at 01:37:54PM -0300, Gustavo Sousa wrote:
> We will need to flush the release work from outside in an upcoming
> change. Let's put that into a public interface and call it
> intel_dmc_wl_flush_release_work().
>
> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dmc_wl.c | 12 +++++++++++-
> drivers/gpu/drm/i915/display/intel_dmc_wl.h | 1 +
> 2 files changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dmc_wl.c b/drivers/gpu/drm/i915/display/intel_dmc_wl.c
> index 853d75610489..09075830c12f 100644
> --- a/drivers/gpu/drm/i915/display/intel_dmc_wl.c
> +++ b/drivers/gpu/drm/i915/display/intel_dmc_wl.c
> @@ -349,7 +349,7 @@ void intel_dmc_wl_disable(struct intel_display *display)
> if (!__intel_dmc_wl_supported(display))
> return;
>
> - flush_delayed_work(&wl->work);
> + intel_dmc_wl_flush_release_work(display);
>
> spin_lock_irqsave(&wl->lock, flags);
>
> @@ -377,6 +377,16 @@ void intel_dmc_wl_disable(struct intel_display *display)
> spin_unlock_irqrestore(&wl->lock, flags);
> }
>
> +void intel_dmc_wl_flush_release_work(struct intel_display *display)
> +{
> + struct intel_dmc_wl *wl = &display->wl;
> +
> + if (!__intel_dmc_wl_supported(display))
> + return;
> +
> + flush_delayed_work(&wl->work);
> +}
> +
> void intel_dmc_wl_get(struct intel_display *display, i915_reg_t reg)
> {
> struct intel_dmc_wl *wl = &display->wl;
> diff --git a/drivers/gpu/drm/i915/display/intel_dmc_wl.h b/drivers/gpu/drm/i915/display/intel_dmc_wl.h
> index 147eeb4d8432..5488fbdf29b8 100644
> --- a/drivers/gpu/drm/i915/display/intel_dmc_wl.h
> +++ b/drivers/gpu/drm/i915/display/intel_dmc_wl.h
> @@ -32,6 +32,7 @@ struct intel_dmc_wl {
> void intel_dmc_wl_init(struct intel_display *display);
> void intel_dmc_wl_enable(struct intel_display *display, u32 dc_state);
> void intel_dmc_wl_disable(struct intel_display *display);
> +void intel_dmc_wl_flush_release_work(struct intel_display *display);
> void intel_dmc_wl_get(struct intel_display *display, i915_reg_t reg);
> void intel_dmc_wl_put(struct intel_display *display, i915_reg_t reg);
> void intel_dmc_wl_get_noreg(struct intel_display *display);
> --
> 2.47.0
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 2/3] drm/xe/display: Extract xe_display_pm_runtime_suspend_late()
2024-11-29 16:37 ` [PATCH v2 2/3] drm/xe/display: Extract xe_display_pm_runtime_suspend_late() Gustavo Sousa
@ 2024-11-29 18:25 ` Rodrigo Vivi
0 siblings, 0 replies; 14+ messages in thread
From: Rodrigo Vivi @ 2024-11-29 18:25 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-xe, intel-gfx, Luca Coelho
On Fri, Nov 29, 2024 at 01:37:55PM -0300, Gustavo Sousa wrote:
> The current behavior for the runtime suspend case is that
> xe_display_pm_suspend_late() is only called when D3cold is allowed.
> Let's incorporate that behavior into a function specific to runtime PM
> and call it xe_display_pm_runtime_suspend_late().
>
> With that, we keep stuff a bit more self-contained and allow having a
> place for adding more "late display runtime suspend"-related logic that
> isn't dependent on the "D3cold allowed" state.
>
> v2:
> - Fix typo in that caused xe_display_pm_runtime_suspend_late() to call
> itself instead of xe_display_pm_suspend_late().
> - Add the empty version of xe_display_pm_runtime_suspend_late() for
> the !CONFIG_DRM_XE_DISPLAY case.
>
> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> drivers/gpu/drm/xe/display/xe_display.c | 9 +++++++++
> drivers/gpu/drm/xe/display/xe_display.h | 2 ++
> drivers/gpu/drm/xe/xe_pm.c | 4 ++--
> 3 files changed, 13 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
> index 69c828f38cb6..739db5b7b01f 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.c
> +++ b/drivers/gpu/drm/xe/display/xe_display.c
> @@ -407,6 +407,15 @@ void xe_display_pm_suspend_late(struct xe_device *xe)
> intel_display_power_suspend_late(xe, s2idle);
> }
>
> +void xe_display_pm_runtime_suspend_late(struct xe_device *xe)
> +{
> + if (!xe->info.probe_display)
> + return;
> +
> + if (xe->d3cold.allowed)
> + xe_display_pm_suspend_late(xe);
> +}
> +
> void xe_display_pm_shutdown_late(struct xe_device *xe)
> {
> if (!xe->info.probe_display)
> diff --git a/drivers/gpu/drm/xe/display/xe_display.h b/drivers/gpu/drm/xe/display/xe_display.h
> index 17afa537aee5..233f81a26c25 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.h
> +++ b/drivers/gpu/drm/xe/display/xe_display.h
> @@ -41,6 +41,7 @@ void xe_display_pm_shutdown_late(struct xe_device *xe);
> void xe_display_pm_resume_early(struct xe_device *xe);
> void xe_display_pm_resume(struct xe_device *xe);
> void xe_display_pm_runtime_suspend(struct xe_device *xe);
> +void xe_display_pm_runtime_suspend_late(struct xe_device *xe);
> void xe_display_pm_runtime_resume(struct xe_device *xe);
>
> #else
> @@ -74,6 +75,7 @@ static inline void xe_display_pm_shutdown_late(struct xe_device *xe) {}
> static inline void xe_display_pm_resume_early(struct xe_device *xe) {}
> static inline void xe_display_pm_resume(struct xe_device *xe) {}
> static inline void xe_display_pm_runtime_suspend(struct xe_device *xe) {}
> +static inline void xe_display_pm_runtime_suspend_late(struct xe_device *xe) {}
> static inline void xe_display_pm_runtime_resume(struct xe_device *xe) {}
>
> #endif /* CONFIG_DRM_XE_DISPLAY */
> diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
> index 80699dbeb2e9..a6761cb769b2 100644
> --- a/drivers/gpu/drm/xe/xe_pm.c
> +++ b/drivers/gpu/drm/xe/xe_pm.c
> @@ -414,8 +414,8 @@ int xe_pm_runtime_suspend(struct xe_device *xe)
>
> xe_irq_suspend(xe);
>
> - if (xe->d3cold.allowed)
> - xe_display_pm_suspend_late(xe);
> + xe_display_pm_runtime_suspend_late(xe);
> +
> out:
> if (err)
> xe_display_pm_runtime_resume(xe);
> --
> 2.47.0
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 3/3] drm/xe/display: Flush DMC wakelock release work on runtime suspend
2024-11-29 16:37 ` [PATCH v2 3/3] drm/xe/display: Flush DMC wakelock release work on runtime suspend Gustavo Sousa
@ 2024-11-29 18:26 ` Rodrigo Vivi
0 siblings, 0 replies; 14+ messages in thread
From: Rodrigo Vivi @ 2024-11-29 18:26 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-xe, intel-gfx, Luca Coelho
On Fri, Nov 29, 2024 at 01:37:56PM -0300, Gustavo Sousa wrote:
> We currently are not calling display runtime suspend functions when
> D3cold is not allowed. Because of that, we end up not disabling dynamic
> DC states (and do not go to DC9). With dynamic DC states enabled, we
> will also have DMC wakelock enabled. Since we use a delayed work to
> release the DMC wakelock, the work might get executed a little too late
> (after the PCI device has been put to D3hot) and we get a timeout
> warning ("DMC wakelock release timed out") because the MMIO for
> releasing the wakelock will be invalid after that point.
>
> To fix that, make sure we flush the release work at the end of
> xe_display_pm_runtime_suspend_late(). We can do that unconditionally
> because, if there is no pending work, that turns into a no-op.
>
> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
(answering patch by patch to make your life easier now when applying
with dim b4-shazam ;) )
> ---
> drivers/gpu/drm/xe/display/xe_display.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/display/xe_display.c b/drivers/gpu/drm/xe/display/xe_display.c
> index 739db5b7b01f..eec91ab1b311 100644
> --- a/drivers/gpu/drm/xe/display/xe_display.c
> +++ b/drivers/gpu/drm/xe/display/xe_display.c
> @@ -22,6 +22,7 @@
> #include "intel_display_irq.h"
> #include "intel_display_types.h"
> #include "intel_dmc.h"
> +#include "intel_dmc_wl.h"
> #include "intel_dp.h"
> #include "intel_encoder.h"
> #include "intel_fbdev.h"
> @@ -409,11 +410,20 @@ void xe_display_pm_suspend_late(struct xe_device *xe)
>
> void xe_display_pm_runtime_suspend_late(struct xe_device *xe)
> {
> + struct intel_display *display = &xe->display;
> +
> if (!xe->info.probe_display)
> return;
>
> if (xe->d3cold.allowed)
> xe_display_pm_suspend_late(xe);
> +
> + /*
> + * If xe_display_pm_suspend_late() is not called, it is likely
> + * that we will be on dynamic DC states with DMC wakelock enabled. We
> + * need to flush the release work in that case.
> + */
> + intel_dmc_wl_flush_release_work(display);
> }
>
> void xe_display_pm_shutdown_late(struct xe_device *xe)
> --
> 2.47.0
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH v2 1/3] drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work()
2024-11-29 18:25 ` Rodrigo Vivi
@ 2024-11-30 17:09 ` Rodrigo Vivi
0 siblings, 0 replies; 14+ messages in thread
From: Rodrigo Vivi @ 2024-11-30 17:09 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-xe, intel-gfx, Luca Coelho
On Fri, Nov 29, 2024 at 01:25:14PM -0500, Rodrigo Vivi wrote:
> On Fri, Nov 29, 2024 at 01:37:54PM -0300, Gustavo Sousa wrote:
> > We will need to flush the release work from outside in an upcoming
> > change. Let's put that into a public interface and call it
> > intel_dmc_wl_flush_release_work().
> >
> > Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com>
>
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
I just pushed to drm-intel-next since there's this patch here that would
conflict there in in drm-xe-next and also, the whole display-pm-reconcile
I'm targeting here in drm-intel-next as well and that touches a lot
xe/xe_display files.
>
> > ---
> > drivers/gpu/drm/i915/display/intel_dmc_wl.c | 12 +++++++++++-
> > drivers/gpu/drm/i915/display/intel_dmc_wl.h | 1 +
> > 2 files changed, 12 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_dmc_wl.c b/drivers/gpu/drm/i915/display/intel_dmc_wl.c
> > index 853d75610489..09075830c12f 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dmc_wl.c
> > +++ b/drivers/gpu/drm/i915/display/intel_dmc_wl.c
> > @@ -349,7 +349,7 @@ void intel_dmc_wl_disable(struct intel_display *display)
> > if (!__intel_dmc_wl_supported(display))
> > return;
> >
> > - flush_delayed_work(&wl->work);
> > + intel_dmc_wl_flush_release_work(display);
> >
> > spin_lock_irqsave(&wl->lock, flags);
> >
> > @@ -377,6 +377,16 @@ void intel_dmc_wl_disable(struct intel_display *display)
> > spin_unlock_irqrestore(&wl->lock, flags);
> > }
> >
> > +void intel_dmc_wl_flush_release_work(struct intel_display *display)
> > +{
> > + struct intel_dmc_wl *wl = &display->wl;
> > +
> > + if (!__intel_dmc_wl_supported(display))
> > + return;
> > +
> > + flush_delayed_work(&wl->work);
> > +}
> > +
> > void intel_dmc_wl_get(struct intel_display *display, i915_reg_t reg)
> > {
> > struct intel_dmc_wl *wl = &display->wl;
> > diff --git a/drivers/gpu/drm/i915/display/intel_dmc_wl.h b/drivers/gpu/drm/i915/display/intel_dmc_wl.h
> > index 147eeb4d8432..5488fbdf29b8 100644
> > --- a/drivers/gpu/drm/i915/display/intel_dmc_wl.h
> > +++ b/drivers/gpu/drm/i915/display/intel_dmc_wl.h
> > @@ -32,6 +32,7 @@ struct intel_dmc_wl {
> > void intel_dmc_wl_init(struct intel_display *display);
> > void intel_dmc_wl_enable(struct intel_display *display, u32 dc_state);
> > void intel_dmc_wl_disable(struct intel_display *display);
> > +void intel_dmc_wl_flush_release_work(struct intel_display *display);
> > void intel_dmc_wl_get(struct intel_display *display, i915_reg_t reg);
> > void intel_dmc_wl_put(struct intel_display *display, i915_reg_t reg);
> > void intel_dmc_wl_get_noreg(struct intel_display *display);
> > --
> > 2.47.0
> >
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✓ i915.CI.BAT: success for Flush DMC wakelock release work at the end of runtime suspend (rev2)
2024-11-29 16:37 [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend Gustavo Sousa
` (4 preceding siblings ...)
2024-11-29 17:17 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-12-02 9:17 ` Patchwork
2024-12-02 11:31 ` ✗ i915.CI.Full: failure " Patchwork
6 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-12-02 9:17 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-gfx
== Series Details ==
Series: Flush DMC wakelock release work at the end of runtime suspend (rev2)
URL : https://patchwork.freedesktop.org/series/141932/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15763 -> Patchwork_141932v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/index.html
Participating hosts (46 -> 45)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_141932v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-twl-2: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@basic:
- bat-twl-2: NOTRUN -> [SKIP][2] ([i915#10213] / [i915#11671]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@gem_lmem_swapping@basic.html
* igt@gem_tiled_pread_basic:
- bat-twl-2: NOTRUN -> [SKIP][3] ([i915#11031])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@reload:
- bat-arlh-3: [PASS][4] -> [INCOMPLETE][5] ([i915#13178])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-arlh-3/igt@i915_module_load@reload.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-arlh-3/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [PASS][6] -> [FAIL][7] ([i915#12903])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-twl-2: NOTRUN -> [SKIP][8] ([i915#10209] / [i915#11681])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@i915_pm_rps@basic-api.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-twl-2: NOTRUN -> [SKIP][9] ([i915#11030] / [i915#11731]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-twl-2: NOTRUN -> [SKIP][10] ([i915#9886])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-twl-2: NOTRUN -> [SKIP][11] ([i915#11032])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-twl-2: NOTRUN -> [SKIP][12] ([i915#8809])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-twl-2: NOTRUN -> [SKIP][13] ([i915#10212] / [i915#3708])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-twl-2: NOTRUN -> [SKIP][14] ([i915#10214] / [i915#3708])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-twl-2: NOTRUN -> [SKIP][15] ([i915#10216] / [i915#3708])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-twl-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][16] ([i915#12904]) -> [PASS][17] +1 other test pass
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-apl-1/igt@dmabuf@all-tests.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-apl-1/igt@dmabuf@all-tests.html
* igt@kms_busy@basic@flip:
- fi-cfl-8109u: [DMESG-WARN][18] ([i915#12914]) -> [PASS][19] +2 other tests pass
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/fi-cfl-8109u/igt@kms_busy@basic@flip.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/fi-cfl-8109u/igt@kms_busy@basic@flip.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [SKIP][20] ([i915#9197]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030
[i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031
[i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914
[i915#13178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13178
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_15763 -> Patchwork_141932v2
CI-20190529: 20190529
CI_DRM_15763: 108f610005f88de624c1a8c4f85d5cab9f530ddb @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8131: f846ef8f7ddf051c88504c607136a9b5392bdef7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_141932v2: 108f610005f88de624c1a8c4f85d5cab9f530ddb @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/index.html
^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: ✗ i915.CI.BAT: failure for Flush DMC wakelock release work at the end of runtime suspend (rev2)
2024-11-29 17:36 ` Gustavo Sousa
@ 2024-12-02 9:19 ` Illipilli, TejasreeX
0 siblings, 0 replies; 14+ messages in thread
From: Illipilli, TejasreeX @ 2024-12-02 9:19 UTC (permalink / raw)
To: Sousa, Gustavo, i915-ci-infra@lists.freedesktop.org,
intel-gfx@lists.freedesktop.org
Cc: intel-gfx@lists.freedesktop.org
Hi,
https://patchwork.freedesktop.org/series/141932/ - Re-reported.
Thanks,
Tejasree
-----Original Message-----
From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Gustavo Sousa
Sent: Friday, November 29, 2024 11:07 PM
To: i915-ci-infra@lists.freedesktop.org; intel-gfx@lists.freedesktop.org
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: ✗ i915.CI.BAT: failure for Flush DMC wakelock release work at the end of runtime suspend (rev2)
Quoting Patchwork (2024-11-29 14:17:41-03:00)
>== Series Details ==
>
>Series: Flush DMC wakelock release work at the end of runtime suspend (rev2)
>URL : https://patchwork.freedesktop.org/series/141932/
>State : failure
>
>== Summary ==
>
>CI Bug Log - changes from CI_DRM_15763 -> Patchwork_141932v2
>====================================================
>
>Summary
>-------
>
> **FAILURE**
>
> Serious unknown changes coming with Patchwork_141932v2 absolutely
> need to be verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_141932v2, 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.
>
> External URL:
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/index.html
>
>Participating hosts (46 -> 45)
>------------------------------
>
> Missing (1): fi-snb-2520m
>
>Possible new issues
>-------------------
>
> Here are the unknown changes that may have been introduced in Patchwork_141932v2:
>
>### IGT changes ###
>
>#### Possible regressions ####
>
> * igt@i915_module_load@reload:
> - bat-arlh-3: [PASS][1] -> [INCOMPLETE][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/bat-arlh-3/igt@i915_module_load@reload.html
> [2]:
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/bat-arlh-3
> /igt@i915_module_load@reload.html
This seems unrelated to this series. On the i915-side, the applied changes are non-functional refactors and nothing on the log indicates an issue on the DMC wakelock paths (all of which should be functionally a no-op for ARL).
Please re-report.
--
Gustavo Sousa
^ permalink raw reply [flat|nested] 14+ messages in thread
* ✗ i915.CI.Full: failure for Flush DMC wakelock release work at the end of runtime suspend (rev2)
2024-11-29 16:37 [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend Gustavo Sousa
` (5 preceding siblings ...)
2024-12-02 9:17 ` ✓ i915.CI.BAT: success " Patchwork
@ 2024-12-02 11:31 ` Patchwork
6 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2024-12-02 11:31 UTC (permalink / raw)
To: Gustavo Sousa; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 84572 bytes --]
== Series Details ==
Series: Flush DMC wakelock release work at the end of runtime suspend (rev2)
URL : https://patchwork.freedesktop.org/series/141932/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15763_full -> Patchwork_141932v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_141932v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_141932v2_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 (11 -> 10)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_141932v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@kms:
- shard-tglu: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-2/igt@gem_eio@kms.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-3/igt@gem_eio@kms.html
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-snb1/igt@gem_tiled_swapping@non-threaded.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-snb2/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rps@fence-order:
- shard-dg2: [PASS][5] -> [DMESG-FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-5/igt@i915_pm_rps@fence-order.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-8/igt@i915_pm_rps@fence-order.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: NOTRUN -> [INCOMPLETE][7] +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-snb2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
#### Warnings ####
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [FAIL][8] ([i915#13137]) -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html
- shard-tglu: [FAIL][10] ([i915#13137]) -> [FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-5/igt@gem_tiled_swapping@non-threaded.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-10/igt@gem_tiled_swapping@non-threaded.html
- shard-glk: [FAIL][12] ([i915#13137]) -> [FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-glk3/igt@gem_tiled_swapping@non-threaded.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-glk4/igt@gem_tiled_swapping@non-threaded.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: [INCOMPLETE][14] ([i915#12796]) -> [INCOMPLETE][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][16] ([i915#12756]) -> [INCOMPLETE][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: [ABORT][18] ([i915#12231]) -> [ABORT][19] +1 other test abort
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-rkl-2/igt@kms_selftest@drm_framebuffer.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html
- shard-snb: [ABORT][20] ([i915#12231]) -> [ABORT][21] +1 other test abort
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-snb1/igt@kms_selftest@drm_framebuffer.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-snb5/igt@kms_selftest@drm_framebuffer.html
- shard-tglu: [ABORT][22] ([i915#12231]) -> [ABORT][23] +1 other test abort
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-2/igt@kms_selftest@drm_framebuffer.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-4/igt@kms_selftest@drm_framebuffer.html
- shard-mtlp: [ABORT][24] ([i915#12231]) -> [ABORT][25] +1 other test abort
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-mtlp-4/igt@kms_selftest@drm_framebuffer.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-mtlp-7/igt@kms_selftest@drm_framebuffer.html
Known issues
------------
Here are the changes found in Patchwork_141932v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#6230])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#8411])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#8414]) +12 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8414]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#7697])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#3555] / [i915#9323])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#13008])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][33] ([i915#7297]) +1 other test incomplete
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#9323]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#6335])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#8562])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#8562])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#5882]) +7 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#280])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: [PASS][40] -> [ABORT][41] ([i915#10030] / [i915#7975] / [i915#8213])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-11/igt@gem_eio@hibernate.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-2/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [FAIL][42] ([i915#6117])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#6334]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@gem_exec_capture@capture-invisible.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#6334]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#12193])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_madvise@dontneed-before-exec:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#284])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_media_vme.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +8 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_pwrite@basic-exhaustion:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [WARN][64] ([i915#2658])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@gem_set_tiling_vs_gtt.html
* igt@gem_spin_batch@spin-each:
- shard-rkl: [PASS][69] -> [DMESG-WARN][70] ([i915#12964]) +7 other tests dmesg-warn
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-rkl-4/igt@gem_spin_batch@spin-each.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-rkl-4/igt@gem_spin_batch@spin-each.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +21 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@gem_tiled_pread_basic.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4879])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282] / [i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282] / [i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][85] -> [ABORT][86] ([i915#12817] / [i915#9820])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#7178])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][88] -> [INCOMPLETE][89] ([i915#12455]) +1 other test incomplete
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#6590]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu-1: NOTRUN -> [WARN][91] ([i915#2681]) +4 other tests warn
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#11681] / [i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-tglu: [PASS][93] -> [INCOMPLETE][94] ([i915#12309])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-6/igt@i915_pm_rps@reset.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-7/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#11681])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4387])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#5723])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][99] ([i915#9311]) +1 other test dmesg-warn
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][100] ([i915#7443])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@bo-too-small:
- shard-dg1: [PASS][101] -> [DMESG-WARN][102] ([i915#4391] / [i915#4423])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg1-18/igt@kms_addfb_basic@bo-too-small.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_addfb_basic@bo-too-small.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +11 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#8709]) +7 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs.html
* igt@kms_atomic_interruptible@atomic-setmode:
- shard-dg1: NOTRUN -> [DMESG-WARN][107] ([i915#4423])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_atomic_interruptible@atomic-setmode.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-mtlp: [PASS][108] -> [FAIL][109] ([i915#11808] / [i915#5956]) +1 other test fail
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#5286]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#5286])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#3638]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538]) +6 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#12313])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#12313]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#6095]) +91 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#6095]) +24 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#6095]) +15 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#6095]) +54 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#6095]) +159 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +98 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#11616] / [i915#7213]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][128] +7 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +13 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#7828]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#6944] / [i915#9424])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#9433])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#7116] / [i915#9424]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-9/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-alpha-transparent:
- shard-dg1: [PASS][137] -> [DMESG-WARN][138] ([i915#4423])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg1-17/igt@kms_cursor_crc@cursor-alpha-transparent.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-17/igt@kms_cursor_crc@cursor-alpha-transparent.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#3555]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#13049]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#13049]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#13049])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#13049]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x256@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][144] ([i915#12964]) +9 other tests dmesg-warn
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-b-hdmi-a-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#4103] / [i915#4213])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#4103])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#4103])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#5354]) +19 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][149] +21 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#9067])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#9833])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#9723])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#8812])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#3840])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#1839])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#9337])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#9934]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-plain-flip:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#9934]) +8 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#3637]) +5 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#2587] / [i915#2672]) +6 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#3555]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#2672] / [i915#3555] / [i915#5190])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#2672] / [i915#3555]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672] / [i915#3555]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2672]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [PASS][171] -> [FAIL][172] ([i915#6880])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][173] +53 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#8708]) +20 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#5439]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#8708]) +9 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#10055])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#9766])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3458]) +17 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3458]) +10 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][181] +62 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#12713])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8228]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8228])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#10656])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#12394])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#10656])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#12339])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#12339])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#6301])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#3555]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#6953] / [i915#9423])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#6953])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-snb: NOTRUN -> [SKIP][196] +21 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-snb2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#12247]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#12247] / [i915#6953]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#12247]) +7 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#12247] / [i915#3555])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#12247]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#5354]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#3828])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#3361])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#8430])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#8430])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][207] -> [SKIP][208] ([i915#9519]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-rkl: [PASS][209] -> [SKIP][210] ([i915#9519]) +3 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@d3hot:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#6524]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#11520]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#11520]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#11520]) +5 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][215] ([i915#11520])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-snb2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#11520]) +12 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#9683])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#9683])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#9683]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#9683])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#9732]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_psr@fbc-psr-sprite-mmap-cpu.html
* igt@kms_psr@pr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#9732]) +15 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#1072] / [i915#9732]) +11 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#1072] / [i915#9732]) +25 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#9685]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#9685])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#5289])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5190])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#12755])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][230] -> [FAIL][231] ([i915#5465]) +2 other tests fail
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-7/igt@kms_setmode@basic.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-5/igt@kms_setmode@basic.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3555]) +8 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#8623])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#8623])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#11920])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#9906])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9906])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#9906])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#9906])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#9906])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#2437])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#2437] / [i915#9412]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#2437] / [i915#9412])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#2433])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#8516])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#8516])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#8516])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-9/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#3291] / [i915#3708])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@prime_vgem@basic-fence-read.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#3708]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#3708] / [i915#4077])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-12/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#9917])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][252] ([i915#12910]) +9 other tests fail
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][253] ([i915#12910]) +8 other tests fail
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
#### Possible fixes ####
* igt@gem_ctx_shared@exec-single-timeline@vcs0:
- shard-rkl: [DMESG-WARN][254] ([i915#12964]) -> [PASS][255] +5 other tests pass
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-rkl-7/igt@gem_ctx_shared@exec-single-timeline@vcs0.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-rkl-3/igt@gem_ctx_shared@exec-single-timeline@vcs0.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][256] ([i915#12543] / [i915#5784]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-8/igt@gem_eio@reset-stress.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-10/igt@gem_eio@reset-stress.html
* igt@gem_exec_create@madvise:
- shard-snb: [INCOMPLETE][258] -> [PASS][259] +1 other test pass
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-snb2/igt@gem_exec_create@madvise.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-snb2/igt@gem_exec_create@madvise.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [ABORT][260] ([i915#7975] / [i915#8213]) -> [PASS][261] +1 other test pass
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][262] ([i915#9820]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [FAIL][264] ([i915#5956]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][266] ([i915#11808] / [i915#5956]) -> [PASS][267] +1 other test pass
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-mtlp: [DMESG-FAIL][268] ([i915#11627]) -> [PASS][269] +1 other test pass
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][270] ([i915#3555]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-8/igt@kms_color@deep-color.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-10/igt@kms_color@deep-color.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-glk: [FAIL][272] ([i915#2346]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-snb: [FAIL][274] ([i915#2346]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-snb2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][276] ([i915#12402]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-tglu: [FAIL][278] ([i915#11989]) -> [PASS][279] +1 other test pass
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [FAIL][280] ([i915#6880]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][282] ([i915#9295]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][284] ([i915#4281]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][286] ([i915#9340]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][288] ([i915#9519]) -> [PASS][289] +2 other tests pass
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
#### Warnings ####
* igt@i915_selftest@mock:
- shard-glk: [DMESG-WARN][290] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][291] ([i915#9311])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-glk5/igt@i915_selftest@mock.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-glk2/igt@i915_selftest@mock.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: [SKIP][292] ([i915#658]) -> [SKIP][293] ([i915#4423] / [i915#658])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg1-14/igt@kms_feature_discovery@psr2.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-18/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-busy-flip:
- shard-dg1: [SKIP][294] ([i915#9934]) -> [SKIP][295] ([i915#4423] / [i915#9934])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg1-18/igt@kms_flip@2x-busy-flip.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_flip@2x-busy-flip.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
- shard-dg1: [SKIP][296] -> [SKIP][297] ([i915#4423])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: [SKIP][298] ([i915#3458]) -> [SKIP][299] ([i915#10433] / [i915#3458]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][300] ([i915#10433] / [i915#3458]) -> [SKIP][301] ([i915#3458])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: [SKIP][302] ([i915#1187] / [i915#12713]) -> [SKIP][303] ([i915#12713])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_selftest@drm_framebuffer:
- shard-dg1: [ABORT][304] ([i915#12231]) -> [ABORT][305] ([i915#13179]) +1 other test abort
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg1-14/igt@kms_selftest@drm_framebuffer.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg1-14/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: [ABORT][306] ([i915#12231]) -> [ABORT][307] ([i915#13179]) +1 other test abort
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15763/shard-dg2-1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_141932v2/shard-dg2-3/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[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#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11627]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11627
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12309]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12309
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13137]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13137
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[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#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[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#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#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[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#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[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#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6117]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6117
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[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#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[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#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[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#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[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#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#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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_15763 -> Patchwork_141932v2
CI-20190529: 20190529
CI_DRM_15763: 108f610005f88de624c1a8c4f85d5cab9f530ddb @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8131: f846ef8f7ddf051c88504c607136a9b5392bdef7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_141932v2: 108f610005f88de624c1a8c4f85d5cab9f530ddb @ 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_141932v2/index.html
[-- Attachment #2: Type: text/html, Size: 102941 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2024-12-02 11:31 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-29 16:37 [PATCH v2 0/3] Flush DMC wakelock release work at the end of runtime suspend Gustavo Sousa
2024-11-29 16:37 ` [PATCH v2 1/3] drm/i915/dmc_wl: Extract intel_dmc_wl_flush_release_work() Gustavo Sousa
2024-11-29 18:25 ` Rodrigo Vivi
2024-11-30 17:09 ` Rodrigo Vivi
2024-11-29 16:37 ` [PATCH v2 2/3] drm/xe/display: Extract xe_display_pm_runtime_suspend_late() Gustavo Sousa
2024-11-29 18:25 ` Rodrigo Vivi
2024-11-29 16:37 ` [PATCH v2 3/3] drm/xe/display: Flush DMC wakelock release work on runtime suspend Gustavo Sousa
2024-11-29 18:26 ` Rodrigo Vivi
2024-11-29 17:03 ` ✗ Fi.CI.SPARSE: warning for Flush DMC wakelock release work at the end of runtime suspend (rev2) Patchwork
2024-11-29 17:17 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-29 17:36 ` Gustavo Sousa
2024-12-02 9:19 ` Illipilli, TejasreeX
2024-12-02 9:17 ` ✓ i915.CI.BAT: success " Patchwork
2024-12-02 11:31 ` ✗ 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