* [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
@ 2023-07-04 8:07 Lee Shawn C
2023-07-04 8:42 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Lee Shawn C @ 2023-07-04 8:07 UTC (permalink / raw)
To: intel-gfx; +Cc: Matt Roper
Perform reboot stresss test on a kernel build with lockdebug flag enabled.
Bad unlock balanace detected would happened sometimes. Below is the
problematic scenario. If params.mmio_debug value was changed at step #4.
And it would trigger this issue. Modify code flow that decide to
enable/disable mmio debug before unclaimed_reg_debug() can avoid
this symptom.
1. GEN6_READ_HEADER is called with params.mmio_debug = 0
2. unclaimed_reg_debug(before = true) is called
3. unclaimed_reg_debug return without taking a lock
because params.mmio_debug == 0
4. other thread modifies params.mmio_debug to 1
5. GEN6_READ_FOOTER is called with params.mmio_debug != 0
6. unclaimed_reg_debug tries to assert non-taken lock (first WARN)
7. unclaimed_reg_debug tries to release non-taken lock (second WARN)
Closes:https://gitlab.freedesktop.org/drm/intel/-/issues/8749
Signed-off-by: Lee Shawn C <shawn.c.lee@intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/intel_uncore.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c
index 796ebfe6c550..9d665978cc43 100644
--- a/drivers/gpu/drm/i915/intel_uncore.c
+++ b/drivers/gpu/drm/i915/intel_uncore.c
@@ -1931,9 +1931,6 @@ unclaimed_reg_debug(struct intel_uncore *uncore,
const bool read,
const bool before)
{
- if (likely(!uncore->i915->params.mmio_debug) || !uncore->debug)
- return;
-
/* interrupts are disabled and re-enabled around uncore->lock usage */
lockdep_assert_held(&uncore->lock);
@@ -2001,13 +1998,16 @@ __gen2_read(64)
#define GEN6_READ_HEADER(x) \
u32 offset = i915_mmio_reg_offset(reg); \
unsigned long irqflags; \
+ const bool mmio_debug = likely(uncore->i915->params.mmio_debug) || uncore->debug; \
u##x val = 0; \
assert_rpm_wakelock_held(uncore->rpm); \
spin_lock_irqsave(&uncore->lock, irqflags); \
- unclaimed_reg_debug(uncore, reg, true, true)
+ if (mmio_debug) \
+ unclaimed_reg_debug(uncore, reg, true, true)
#define GEN6_READ_FOOTER \
- unclaimed_reg_debug(uncore, reg, true, false); \
+ if (mmio_debug) \
+ unclaimed_reg_debug(uncore, reg, true, false); \
spin_unlock_irqrestore(&uncore->lock, irqflags); \
trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
return val
--
2.17.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
2023-07-04 8:07 [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected Lee Shawn C
@ 2023-07-04 8:42 ` Patchwork
2023-07-04 8:55 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-07-04 8:42 UTC (permalink / raw)
To: Lee Shawn C; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
URL : https://patchwork.freedesktop.org/series/120160/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
-./include/linux/spinlock.h:405:9: warning: context imbalance in 'gen6_write16' - different lock contexts for basic block
-./include/linux/spinlock.h:405:9: warning: context imbalance in 'gen6_write32' - different lock contexts for basic block
-./include/linux/spinlock.h:405:9: warning: context imbalance in 'gen6_write8' - different lock contexts for basic block
-./include/linux/spinlock.h:405:9: warning: too many warnings
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
2023-07-04 8:07 [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected Lee Shawn C
2023-07-04 8:42 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork
@ 2023-07-04 8:55 ` Patchwork
2023-07-04 9:54 ` [Intel-gfx] [PATCH] " Jani Nikula
` (2 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-07-04 8:55 UTC (permalink / raw)
To: Lee Shawn C; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8979 bytes --]
== Series Details ==
Series: drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
URL : https://patchwork.freedesktop.org/series/120160/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13343 -> Patchwork_120160v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/index.html
Participating hosts (39 -> 41)
------------------------------
Additional (3): fi-kbl-soraka bat-rplp-1 fi-bsw-n3050
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_120160v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rplp-1: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rplp-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_tiled_pread_basic:
- bat-rplp-1: NOTRUN -> [SKIP][4] ([i915#3282])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rplp-1/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@load:
- bat-mtlp-6: [PASS][5] -> [ABORT][6] ([i915#8141])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/bat-mtlp-6/igt@i915_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-mtlp-6/igt@i915_module_load@load.html
- bat-adlp-11: [PASS][7] -> [ABORT][8] ([i915#4423])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/bat-adlp-11/igt@i915_module_load@load.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-adlp-11/igt@i915_module_load@load.html
- bat-mtlp-8: [PASS][9] -> [ABORT][10] ([i915#8141])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/bat-mtlp-8/igt@i915_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-mtlp-8/igt@i915_module_load@load.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][11] ([i915#1886] / [i915#7913])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: [PASS][12] -> [ABORT][13] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/bat-rpls-2/igt@i915_selftest@live@reset.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rpls-2/igt@i915_selftest@live@reset.html
* igt@i915_selftest@live@slpc:
- bat-rpls-1: NOTRUN -> [DMESG-WARN][14] ([i915#6367])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-1: NOTRUN -> [ABORT][15] ([i915#6687] / [i915#7978] / [i915#8668])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_chamelium_edid@dp-edid-read:
- fi-bsw-n3050: NOTRUN -> [SKIP][16] ([fdo#109271]) +27 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/fi-bsw-n3050/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- bat-rplp-1: NOTRUN -> [SKIP][17] ([i915#7828]) +7 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rplp-1/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-kbl-soraka: NOTRUN -> [SKIP][18] ([fdo#109271]) +15 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-rplp-1: NOTRUN -> [SKIP][19] ([i915#4103] / [i915#4213]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rplp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rplp-1: NOTRUN -> [SKIP][20] ([fdo#109285])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rplp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-1:
- bat-adlp-9: [PASS][21] -> [FAIL][22] ([i915#7336])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/bat-adlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-1.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-adlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-1.html
* igt@kms_psr@primary_page_flip:
- bat-rplp-1: NOTRUN -> [SKIP][23] ([i915#1072]) +3 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rplp-1/igt@kms_psr@primary_page_flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rplp-1: NOTRUN -> [ABORT][24] ([i915#8260] / [i915#8668])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: [DMESG-FAIL][25] ([i915#4258] / [i915#7913]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@reset:
- bat-rpls-1: [ABORT][27] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/bat-rpls-1/igt@i915_selftest@live@reset.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/bat-rpls-1/igt@i915_selftest@live@reset.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#7336]: https://gitlab.freedesktop.org/drm/intel/issues/7336
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8141]: https://gitlab.freedesktop.org/drm/intel/issues/8141
[i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
Build changes
-------------
* Linux: CI_DRM_13343 -> Patchwork_120160v1
CI-20190529: 20190529
CI_DRM_13343: f113b6e13583b2068062c3de150051bc59f1cfac @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7365: c5980a82c798f9003dc7b4df07aace01b8afde77 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_120160v1: f113b6e13583b2068062c3de150051bc59f1cfac @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
7ffce63a53c2 drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/index.html
[-- Attachment #2: Type: text/html, Size: 10745 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
2023-07-04 8:07 [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected Lee Shawn C
2023-07-04 8:42 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork
2023-07-04 8:55 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-07-04 9:54 ` Jani Nikula
2023-07-04 11:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
2023-07-11 10:31 ` [Intel-gfx] [PATCH] " Andi Shyti
4 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2023-07-04 9:54 UTC (permalink / raw)
To: Lee Shawn C, intel-gfx; +Cc: Matt Roper
On Tue, 04 Jul 2023, Lee Shawn C <shawn.c.lee@intel.com> wrote:
> Perform reboot stresss test on a kernel build with lockdebug flag enabled.
> Bad unlock balanace detected would happened sometimes. Below is the
> problematic scenario. If params.mmio_debug value was changed at step #4.
> And it would trigger this issue. Modify code flow that decide to
> enable/disable mmio debug before unclaimed_reg_debug() can avoid
> this symptom.
>
> 1. GEN6_READ_HEADER is called with params.mmio_debug = 0
> 2. unclaimed_reg_debug(before = true) is called
> 3. unclaimed_reg_debug return without taking a lock
> because params.mmio_debug == 0
> 4. other thread modifies params.mmio_debug to 1
> 5. GEN6_READ_FOOTER is called with params.mmio_debug != 0
> 6. unclaimed_reg_debug tries to assert non-taken lock (first WARN)
> 7. unclaimed_reg_debug tries to release non-taken lock (second WARN)
>
> Closes:https://gitlab.freedesktop.org/drm/intel/-/issues/8749
Thanks for the report and analysis!
> Signed-off-by: Lee Shawn C <shawn.c.lee@intel.com>
> Cc: Uma Shankar <uma.shankar@intel.com>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Cc: Andi Shyti <andi.shyti@linux.intel.com>
> ---
> drivers/gpu/drm/i915/intel_uncore.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c
> index 796ebfe6c550..9d665978cc43 100644
> --- a/drivers/gpu/drm/i915/intel_uncore.c
> +++ b/drivers/gpu/drm/i915/intel_uncore.c
> @@ -1931,9 +1931,6 @@ unclaimed_reg_debug(struct intel_uncore *uncore,
> const bool read,
> const bool before)
> {
> - if (likely(!uncore->i915->params.mmio_debug) || !uncore->debug)
> - return;
> -
> /* interrupts are disabled and re-enabled around uncore->lock usage */
> lockdep_assert_held(&uncore->lock);
>
> @@ -2001,13 +1998,16 @@ __gen2_read(64)
> #define GEN6_READ_HEADER(x) \
> u32 offset = i915_mmio_reg_offset(reg); \
> unsigned long irqflags; \
> + const bool mmio_debug = likely(uncore->i915->params.mmio_debug) || uncore->debug; \
This changes the condition. The old one requires both to be true, this
requires either to be true. Additionally this gets the "likely"
backwards as the condition is reversed.
const bool mmio_debug = unlikely(uncore->i915->params.mmio_debug) && uncore->debug;
Anyway. I'm not happy about having the debug conditions moved within
GEN6_READ_HEADER. This also does not address GEN6_WRITE_*.
I sent a slightly different kind of fix [1].
BR,
Jani.
[1] https://patchwork.freedesktop.org/series/120167/
> u##x val = 0; \
> assert_rpm_wakelock_held(uncore->rpm); \
> spin_lock_irqsave(&uncore->lock, irqflags); \
> - unclaimed_reg_debug(uncore, reg, true, true)
> + if (mmio_debug) \
> + unclaimed_reg_debug(uncore, reg, true, true)
>
> #define GEN6_READ_FOOTER \
> - unclaimed_reg_debug(uncore, reg, true, false); \
> + if (mmio_debug) \
> + unclaimed_reg_debug(uncore, reg, true, false); \
> spin_unlock_irqrestore(&uncore->lock, irqflags); \
> trace_i915_reg_rw(false, reg, val, sizeof(val), trace); \
> return val
--
Jani Nikula, Intel Open Source Graphics Center
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
2023-07-04 8:07 [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected Lee Shawn C
` (2 preceding siblings ...)
2023-07-04 9:54 ` [Intel-gfx] [PATCH] " Jani Nikula
@ 2023-07-04 11:58 ` Patchwork
2023-07-11 10:31 ` [Intel-gfx] [PATCH] " Andi Shyti
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-07-04 11:58 UTC (permalink / raw)
To: Lee Shawn C; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 44803 bytes --]
== Series Details ==
Series: drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
URL : https://patchwork.freedesktop.org/series/120160/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13343_full -> Patchwork_120160v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_120160v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_120160v1_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_120160v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@kms:
- shard-snb: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-snb4/igt@gem_eio@kms.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-snb7/igt@gem_eio@kms.html
- shard-glk: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-glk8/igt@gem_eio@kms.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk4/igt@gem_eio@kms.html
* igt@i915_selftest@live@gt_engines:
- shard-rkl: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-1/igt@i915_selftest@live@gt_engines.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-6/igt@i915_selftest@live@gt_engines.html
Known issues
------------
Here are the changes found in Patchwork_120160v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][8] -> [FAIL][9] ([i915#7742])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@drm_fdinfo@virtual-busy-idle.html
* igt@feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#4854])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@feature_discovery@chamelium.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][12] ([i915#7461])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@hog-create@smem0:
- shard-dg2: [PASS][13] -> [FAIL][14] ([i915#5892] / [i915#8758])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-1/igt@gem_create@hog-create@smem0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-3/igt@gem_create@hog-create@smem0.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_eio@kms:
- shard-apl: [PASS][16] -> [FAIL][17] ([i915#8764])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-apl4/igt@gem_eio@kms.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl3/igt@gem_eio@kms.html
* igt@gem_exec_await@wide-contexts:
- shard-dg2: [PASS][18] -> [FAIL][19] ([i915#5892])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_exec_await@wide-contexts.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#4812]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][21] -> [FAIL][22] ([i915#2842])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][25] ([fdo#109283] / [i915#5107])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3281])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4537] / [i915#4812])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-dg2: [PASS][28] -> [FAIL][29] ([fdo#103375] / [i915#6121])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-6/igt@gem_exec_suspend@basic-s3@smem.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-5/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_lmem_swapping@parallel-random:
- shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl3/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][31] -> [TIMEOUT][32] ([i915#5493])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4077]) +6 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_wc@read:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4083])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_mmap_wc@read.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4270])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_pxp@create-regular-context-2.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4885])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3297])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@gem_userptr_blits@coherency-unsync.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4881])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@i915_fb_tiling.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-apl: NOTRUN -> [FAIL][39] ([i915#7036])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-glk: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#658])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk4/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][41] -> [SKIP][42] ([i915#1397])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-2/igt@i915_pm_rpm@dpms-non-lpsp.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-dg2: [PASS][43] -> [SKIP][44] ([i915#1397])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-3/igt@i915_pm_rpm@dpms-non-lpsp.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-10/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4212])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][46] ([fdo#111614])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#5190]) +2 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4538] / [i915#5190]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#3886]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3886]) +3 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl1/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#5354]) +13 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs:
- shard-apl: NOTRUN -> [SKIP][52] ([fdo#109271]) +105 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl2/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3689] / [i915#3886] / [i915#5354]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3689] / [i915#5354]) +7 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4087]) +3 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2: NOTRUN -> [SKIP][56] ([fdo#111827])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#7828]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3555] / [i915#7118])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3359]) +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][60] ([fdo#109274] / [fdo#111767] / [i915#5354])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4103] / [i915#4213])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: NOTRUN -> [FAIL][62] ([i915#2346]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3555]) +3 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-snb: NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111767])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][65] -> [FAIL][66] ([i915#79])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#8381])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][68] ([fdo#109274]) +4 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#2672])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2672] / [i915#3555])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [PASS][71] -> [FAIL][72] ([i915#6880])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-glk: NOTRUN -> [SKIP][73] ([fdo#109271]) +38 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk4/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#8708]) +2 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][75] ([fdo#109271]) +101 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3458]) +3 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3555]) +1 similar issue
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][78] ([i915#4573]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-dp-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#5176]) +3 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#5176]) +3 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-dp-2:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#5235]) +7 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-dp-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#5235]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#658])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@psr2_primary_render:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#1072]) +2 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_psr@psr2_primary_render.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4235] / [i915#5190])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4235])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#2437])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk4/igt@kms_writeback@writeback-fb-id.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3708] / [i915#4077])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@prime_vgem@basic-gtt.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2575]) +2 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#7711]) +3 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-11/igt@vc4/vc4_tiling@set-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [FAIL][91] ([i915#7742]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html
* igt@gem_barrier_race@remote-request@rcs0:
- shard-glk: [ABORT][93] ([i915#7461] / [i915#8211]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-glk2/igt@gem_barrier_race@remote-request@rcs0.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk4/igt@gem_barrier_race@remote-request@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][95] ([i915#6268]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_capture@pi@rcs0:
- {shard-dg1}: [FAIL][97] ([i915#4475]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg1-15/igt@gem_exec_capture@pi@rcs0.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg1-16/igt@gem_exec_capture@pi@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-glk: [FAIL][99] ([i915#2842]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-glk1/igt@gem_exec_fair@basic-pace@vcs0.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: [FAIL][101] ([i915#2842]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_schedule@thriceslice@rcs0:
- shard-dg2: [TIMEOUT][103] ([i915#8628]) -> [PASS][104] +1 similar issue
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-5/igt@gem_exec_schedule@thriceslice@rcs0.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@gem_exec_schedule@thriceslice@rcs0.html
* igt@gem_ppgtt@blt-vs-render-ctx0:
- shard-snb: [INCOMPLETE][105] ([i915#8295]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-snb1/igt@gem_ppgtt@blt-vs-render-ctx0.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [ABORT][107] ([i915#5566]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-apl7/igt@gen9_exec_parse@allowed-single.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl1/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][109] ([i915#3989] / [i915#454]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][111] ([i915#4281]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-tglu-9/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- {shard-dg1}: [FAIL][113] ([i915#3591]) -> [PASS][114]
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- {shard-dg1}: [SKIP][115] ([i915#1397]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg1-13/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][117] ([i915#1397]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][119] ([i915#1397]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][121] ([i915#7790]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-snb1/igt@i915_pm_rps@reset.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-snb5/igt@i915_pm_rps@reset.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3:
- shard-dg2: [FAIL][123] ([fdo#103375] / [i915#6121]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-apl: [ABORT][125] ([i915#180]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-dp1:
- shard-apl: [ABORT][127] ([i915#180] / [i915#8408]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: [FAIL][129] ([i915#8724]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@perf@enable-disable@0-rcs0.html
* igt@perf@stress-open-close@0-rcs0:
- shard-glk: [ABORT][131] ([i915#5213] / [i915#7941]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-glk6/igt@perf@stress-open-close@0-rcs0.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-glk4/igt@perf@stress-open-close@0-rcs0.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][133] ([i915#4098] / [i915#5325]) -> [SKIP][134] ([i915#3555] / [i915#4098] / [i915#5325])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: [SKIP][135] ([i915#5325]) -> [SKIP][136] ([i915#3555] / [i915#5325]) +1 similar issue
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-2/igt@gem_ccs@suspend-resume.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-7/igt@gem_ccs@suspend-resume.html
- shard-tglu: [SKIP][137] ([i915#5325]) -> [SKIP][138] ([i915#3555] / [i915#5325]) +2 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-tglu-4/igt@gem_ccs@suspend-resume.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-tglu-5/igt@gem_ccs@suspend-resume.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [WARN][139] ([i915#6596] / [i915#7356]) -> [DMESG-WARN][140] ([i915#7061])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2: [TIMEOUT][141] ([i915#8628]) -> [SKIP][142] ([i915#7828])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@content_type_change:
- shard-rkl: [SKIP][143] ([i915#7118]) -> [SKIP][144] ([i915#3555] / [i915#7118]) +4 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-6/igt@kms_content_protection@content_type_change.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-7/igt@kms_content_protection@content_type_change.html
* igt@kms_content_protection@legacy:
- shard-tglu: [SKIP][145] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][146] ([i915#3555] / [i915#6944] / [i915#7116] / [i915#7118]) +4 similar issues
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-tglu-6/igt@kms_content_protection@legacy.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-tglu-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][147] ([i915#7118]) -> [SKIP][148] ([i915#3555] / [i915#7118]) +3 similar issues
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-6/igt@kms_content_protection@srm.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-5/igt@kms_content_protection@srm.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][149] ([fdo#110189] / [i915#3955]) -> [SKIP][150] ([i915#3955])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][151] ([fdo#109285]) -> [SKIP][152] ([fdo#109285] / [i915#4098])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2: [TIMEOUT][153] ([i915#8628]) -> [SKIP][154] ([i915#5354])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][155] ([i915#8228]) -> [SKIP][156] ([i915#3555] / [i915#8228]) +1 similar issue
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: [SKIP][157] ([i915#8228]) -> [SKIP][158] ([i915#3555] / [i915#8228])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html
- shard-tglu: [SKIP][159] ([i915#8228]) -> [SKIP][160] ([i915#3555] / [i915#8228]) +1 similar issue
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-tglu-7/igt@kms_hdr@invalid-metadata-sizes.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-tglu-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: [SKIP][161] ([i915#6301]) -> [SKIP][162] ([i915#3555] / [i915#6301]) +1 similar issue
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-tglu-5/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: [SKIP][163] ([i915#6301]) -> [SKIP][164] ([i915#3555] / [i915#6301]) +1 similar issue
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][165] ([i915#6953]) -> [SKIP][166] ([i915#3555] / [i915#6953])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: [SKIP][167] ([fdo#112283]) -> [SKIP][168] ([fdo#112283] / [i915#3555])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-dg2-12/igt@perf_pmu@event-wait@rcs0.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-dg2-6/igt@perf_pmu@event-wait@rcs0.html
- shard-rkl: [SKIP][169] ([fdo#112283]) -> [SKIP][170] ([fdo#112283] / [i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-rkl-4/igt@perf_pmu@event-wait@rcs0.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-rkl-1/igt@perf_pmu@event-wait@rcs0.html
- shard-tglu: [SKIP][171] ([fdo#112283]) -> [SKIP][172] ([fdo#112283] / [i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13343/shard-tglu-9/igt@perf_pmu@event-wait@rcs0.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120160v1/shard-tglu-8/igt@perf_pmu@event-wait@rcs0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6596]: https://gitlab.freedesktop.org/drm/intel/issues/6596
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036
[i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7883]: https://gitlab.freedesktop.org/drm/intel/issues/7883
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941
[i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8408]: https://gitlab.freedesktop.org/drm/intel/issues/8408
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758
[i915#8764]: https://gitlab.freedesktop.org/drm/intel/issues/8764
Build changes
-------------
* Linux: CI_DRM_13343 -> Patchwork_120160v1
CI-20190529: 20190529
CI_DRM_13343: f113b6e13583b2068062c3de150051bc59f1cfac @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7365: c5980a82c798f9003dc7b4df07aace01b8afde77 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_120160v1: f113b6e13583b2068062c3de150051bc59f1cfac @ 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_120160v1/index.html
[-- Attachment #2: Type: text/html, Size: 53616 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
2023-07-04 8:07 [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected Lee Shawn C
` (3 preceding siblings ...)
2023-07-04 11:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
@ 2023-07-11 10:31 ` Andi Shyti
2023-07-11 10:40 ` Jani Nikula
4 siblings, 1 reply; 8+ messages in thread
From: Andi Shyti @ 2023-07-11 10:31 UTC (permalink / raw)
To: Lee Shawn C; +Cc: intel-gfx, Matt Roper
Hi Lee,
I'm really sorry for the late reply, I had some holidays in
between.
On Tue, Jul 04, 2023 at 04:07:27PM +0800, Lee Shawn C wrote:
> Perform reboot stresss test on a kernel build with lockdebug flag enabled.
> Bad unlock balanace detected would happened sometimes. Below is the
> problematic scenario. If params.mmio_debug value was changed at step #4.
> And it would trigger this issue. Modify code flow that decide to
> enable/disable mmio debug before unclaimed_reg_debug() can avoid
> this symptom.
>
> 1. GEN6_READ_HEADER is called with params.mmio_debug = 0
> 2. unclaimed_reg_debug(before = true) is called
> 3. unclaimed_reg_debug return without taking a lock
> because params.mmio_debug == 0
> 4. other thread modifies params.mmio_debug to 1
> 5. GEN6_READ_FOOTER is called with params.mmio_debug != 0
> 6. unclaimed_reg_debug tries to assert non-taken lock (first WARN)
> 7. unclaimed_reg_debug tries to release non-taken lock (second WARN)
>
> Closes:https://gitlab.freedesktop.org/drm/intel/-/issues/8749
> Signed-off-by: Lee Shawn C <shawn.c.lee@intel.com>
> Cc: Uma Shankar <uma.shankar@intel.com>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Cc: Andi Shyti <andi.shyti@linux.intel.com>
> ---
> drivers/gpu/drm/i915/intel_uncore.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c
> index 796ebfe6c550..9d665978cc43 100644
> --- a/drivers/gpu/drm/i915/intel_uncore.c
> +++ b/drivers/gpu/drm/i915/intel_uncore.c
> @@ -1931,9 +1931,6 @@ unclaimed_reg_debug(struct intel_uncore *uncore,
> const bool read,
> const bool before)
> {
> - if (likely(!uncore->i915->params.mmio_debug) || !uncore->debug)
> - return;
> -
this is a very good catch! I'm fine with the change from my side:
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
But I'd like to hear from someone else, as well, Matt, Daniele?
Thank you,
Andi
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
2023-07-11 10:31 ` [Intel-gfx] [PATCH] " Andi Shyti
@ 2023-07-11 10:40 ` Jani Nikula
2023-07-11 11:06 ` Andi Shyti
0 siblings, 1 reply; 8+ messages in thread
From: Jani Nikula @ 2023-07-11 10:40 UTC (permalink / raw)
To: Andi Shyti, Lee Shawn C; +Cc: intel-gfx, Matt Roper
On Tue, 11 Jul 2023, Andi Shyti <andi.shyti@linux.intel.com> wrote:
> Hi Lee,
>
> I'm really sorry for the late reply, I had some holidays in
> between.
>
> On Tue, Jul 04, 2023 at 04:07:27PM +0800, Lee Shawn C wrote:
>> Perform reboot stresss test on a kernel build with lockdebug flag enabled.
>> Bad unlock balanace detected would happened sometimes. Below is the
>> problematic scenario. If params.mmio_debug value was changed at step #4.
>> And it would trigger this issue. Modify code flow that decide to
>> enable/disable mmio debug before unclaimed_reg_debug() can avoid
>> this symptom.
>>
>> 1. GEN6_READ_HEADER is called with params.mmio_debug = 0
>> 2. unclaimed_reg_debug(before = true) is called
>> 3. unclaimed_reg_debug return without taking a lock
>> because params.mmio_debug == 0
>> 4. other thread modifies params.mmio_debug to 1
>> 5. GEN6_READ_FOOTER is called with params.mmio_debug != 0
>> 6. unclaimed_reg_debug tries to assert non-taken lock (first WARN)
>> 7. unclaimed_reg_debug tries to release non-taken lock (second WARN)
>>
>> Closes:https://gitlab.freedesktop.org/drm/intel/-/issues/8749
>> Signed-off-by: Lee Shawn C <shawn.c.lee@intel.com>
>> Cc: Uma Shankar <uma.shankar@intel.com>
>> Cc: Matt Roper <matthew.d.roper@intel.com>
>> Cc: Andi Shyti <andi.shyti@linux.intel.com>
>> ---
>> drivers/gpu/drm/i915/intel_uncore.c | 10 +++++-----
>> 1 file changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c
>> index 796ebfe6c550..9d665978cc43 100644
>> --- a/drivers/gpu/drm/i915/intel_uncore.c
>> +++ b/drivers/gpu/drm/i915/intel_uncore.c
>> @@ -1931,9 +1931,6 @@ unclaimed_reg_debug(struct intel_uncore *uncore,
>> const bool read,
>> const bool before)
>> {
>> - if (likely(!uncore->i915->params.mmio_debug) || !uncore->debug)
>> - return;
>> -
>
> this is a very good catch! I'm fine with the change from my side:
>
> Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Nope, there's a bug in the patch.
https://lore.kernel.org/r/87ilb00zot.fsf@intel.com
>
> But I'd like to hear from someone else, as well, Matt, Daniele?
>
> Thank you,
> Andi
--
Jani Nikula, Intel Open Source Graphics Center
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected.
2023-07-11 10:40 ` Jani Nikula
@ 2023-07-11 11:06 ` Andi Shyti
0 siblings, 0 replies; 8+ messages in thread
From: Andi Shyti @ 2023-07-11 11:06 UTC (permalink / raw)
To: Jani Nikula; +Cc: Matt Roper, intel-gfx
Hi Jani,
> >> diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c
> >> index 796ebfe6c550..9d665978cc43 100644
> >> --- a/drivers/gpu/drm/i915/intel_uncore.c
> >> +++ b/drivers/gpu/drm/i915/intel_uncore.c
> >> @@ -1931,9 +1931,6 @@ unclaimed_reg_debug(struct intel_uncore *uncore,
> >> const bool read,
> >> const bool before)
> >> {
> >> - if (likely(!uncore->i915->params.mmio_debug) || !uncore->debug)
> >> - return;
> >> -
> >
> > this is a very good catch! I'm fine with the change from my side:
> >
> > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
>
> Nope, there's a bug in the patch.
>
> https://lore.kernel.org/r/87ilb00zot.fsf@intel.com
OK, I missed your reply.
Thanks, Jani!
Andi
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-07-11 11:06 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-04 8:07 [Intel-gfx] [PATCH] drm/i915: Refine mmio debug flow to avoid bad unlock balance detected Lee Shawn C
2023-07-04 8:42 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork
2023-07-04 8:55 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-07-04 9:54 ` [Intel-gfx] [PATCH] " Jani Nikula
2023-07-04 11:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
2023-07-11 10:31 ` [Intel-gfx] [PATCH] " Andi Shyti
2023-07-11 10:40 ` Jani Nikula
2023-07-11 11:06 ` Andi Shyti
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox