* [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters
@ 2025-01-21 14:52 Guenter Roeck
2025-01-21 19:30 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Guenter Roeck @ 2025-01-21 14:52 UTC (permalink / raw)
To: Jani Nikula
Cc: Rodrigo Vivi, Joonas Lahtinen, Tvrtko Ursulin, David Airlie,
Simona Vetter, intel-gfx, intel-xe, dri-devel, linux-kernel,
Guenter Roeck, Linus Torvalds, David Laight, Andy Shevchenko
The scale() functions detects invalid parameters, but continues
its calculations anyway. This causes bad results if negative values
are used for unsigned operations. Worst case, a division by 0 error
will be seen if source_min == source_max.
On top of that, after v6.13, the sequence of WARN_ON() followed by clamp()
may result in a build error with gcc 13.x.
drivers/gpu/drm/i915/display/intel_backlight.c: In function 'scale':
include/linux/compiler_types.h:542:45: error:
call to '__compiletime_assert_415' declared with attribute error:
clamp() low limit source_min greater than high limit source_max
This happens if the compiler decides to rearrange the code as follows.
if (source_min > source_max) {
WARN(..);
/* Do the clamp() knowing that source_min > source_max */
source_val = clamp(source_val, source_min, source_max);
} else {
/* Do the clamp knowing that source_min <= source_max */
source_val = clamp(source_val, source_min, source_max);
}
Fix the problem by evaluating the return values from WARN_ON and returning
immediately after a warning. While at it, fix divide by zero error seen
if source_min == source_max.
Analyzed-by: Linus Torvalds <torvalds@linux-foundation.org>
Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
Suggested-by: David Laight <david.laight.linux@gmail.com>
Cc: David Laight <david.laight.linux@gmail.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
v2: Simplify code to always return target_min after a warning,
and also warn if source_min == source_max.
drivers/gpu/drm/i915/display/intel_backlight.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_backlight.c b/drivers/gpu/drm/i915/display/intel_backlight.c
index 3f81a726cc7d..ca588bed82b9 100644
--- a/drivers/gpu/drm/i915/display/intel_backlight.c
+++ b/drivers/gpu/drm/i915/display/intel_backlight.c
@@ -40,8 +40,9 @@ static u32 scale(u32 source_val,
{
u64 target_val;
- WARN_ON(source_min > source_max);
- WARN_ON(target_min > target_max);
+ if (WARN_ON(source_min >= source_max) ||
+ WARN_ON(target_min > target_max))
+ return target_min;
/* defensive */
source_val = clamp(source_val, source_min, source_max);
--
2.45.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2)
2025-01-21 14:52 [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Guenter Roeck
@ 2025-01-21 19:30 ` Patchwork
2025-01-21 19:43 ` ✓ i915.CI.BAT: success " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-21 19:30 UTC (permalink / raw)
To: Guenter Roeck; +Cc: intel-gfx
== Series Details ==
Series: drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2)
URL : https://patchwork.freedesktop.org/series/143775/
State : warning
== Summary ==
Error: dim checkpatch failed
1cbbd90d5f1b drm/i915/backlight: Return immediately when scale() finds invalid parameters
-:35: WARNING:BAD_SIGN_OFF: Non-standard signature: Analyzed-by:
#35:
Analyzed-by: Linus Torvalds <torvalds@linux-foundation.org>
total: 0 errors, 1 warnings, 0 checks, 11 lines checked
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2)
2025-01-21 14:52 [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Guenter Roeck
2025-01-21 19:30 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2) Patchwork
@ 2025-01-21 19:43 ` Patchwork
2025-01-21 22:58 ` [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Rodrigo Vivi
2025-01-22 11:26 ` ✗ i915.CI.Full: failure for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2) Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-21 19:43 UTC (permalink / raw)
To: Guenter Roeck; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 3656 bytes --]
== Series Details ==
Series: drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2)
URL : https://patchwork.freedesktop.org/series/143775/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15993 -> Patchwork_143775v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/index.html
Participating hosts (39 -> 39)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in Patchwork_143775v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-rpls-4: [PASS][1] -> [FAIL][2] ([i915#13401])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/bat-mtlp-8/igt@i915_selftest@live.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][5] -> [SKIP][6] ([i915#9197]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][7] ([i915#12904]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-apl-1/igt@dmabuf@all-tests.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-arls-5/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-arlh-2: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13401]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13401
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_15993 -> Patchwork_143775v2
CI-20190529: 20190529
CI_DRM_15993: 44010d7f04695da899c2860de32625a71011fbab @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8203: 3dce04be4ed4c0e729d80f70caff8ae8a869b5c0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_143775v2: 44010d7f04695da899c2860de32625a71011fbab @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/index.html
[-- Attachment #2: Type: text/html, Size: 4523 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters
2025-01-21 14:52 [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Guenter Roeck
2025-01-21 19:30 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2) Patchwork
2025-01-21 19:43 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-01-21 22:58 ` Rodrigo Vivi
2025-01-21 23:15 ` Linus Torvalds
2025-01-22 11:26 ` ✗ i915.CI.Full: failure for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2) Patchwork
3 siblings, 1 reply; 9+ messages in thread
From: Rodrigo Vivi @ 2025-01-21 22:58 UTC (permalink / raw)
To: Guenter Roeck
Cc: Jani Nikula, Joonas Lahtinen, Tvrtko Ursulin, David Airlie,
Simona Vetter, intel-gfx, intel-xe, dri-devel, linux-kernel,
Linus Torvalds, David Laight, Andy Shevchenko
On Tue, Jan 21, 2025 at 06:52:03AM -0800, Guenter Roeck wrote:
> The scale() functions detects invalid parameters, but continues
> its calculations anyway. This causes bad results if negative values
> are used for unsigned operations. Worst case, a division by 0 error
> will be seen if source_min == source_max.
>
> On top of that, after v6.13, the sequence of WARN_ON() followed by clamp()
> may result in a build error with gcc 13.x.
>
> drivers/gpu/drm/i915/display/intel_backlight.c: In function 'scale':
> include/linux/compiler_types.h:542:45: error:
> call to '__compiletime_assert_415' declared with attribute error:
> clamp() low limit source_min greater than high limit source_max
>
> This happens if the compiler decides to rearrange the code as follows.
>
> if (source_min > source_max) {
> WARN(..);
> /* Do the clamp() knowing that source_min > source_max */
> source_val = clamp(source_val, source_min, source_max);
> } else {
> /* Do the clamp knowing that source_min <= source_max */
> source_val = clamp(source_val, source_min, source_max);
> }
>
> Fix the problem by evaluating the return values from WARN_ON and returning
> immediately after a warning. While at it, fix divide by zero error seen
> if source_min == source_max.
>
> Analyzed-by: Linus Torvalds <torvalds@linux-foundation.org>
> Suggested-by: Linus Torvalds <torvalds@linux-foundation.org>
> Suggested-by: David Laight <david.laight.linux@gmail.com>
> Cc: David Laight <david.laight.linux@gmail.com>
> Cc: Jani Nikula <jani.nikula@linux.intel.com>
> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
I'm pushing this soon to drm-intel-next, unless Linus want to take
this one directly to his tree
Thanks,
Rodrigo.
> ---
> v2: Simplify code to always return target_min after a warning,
> and also warn if source_min == source_max.
>
> drivers/gpu/drm/i915/display/intel_backlight.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_backlight.c b/drivers/gpu/drm/i915/display/intel_backlight.c
> index 3f81a726cc7d..ca588bed82b9 100644
> --- a/drivers/gpu/drm/i915/display/intel_backlight.c
> +++ b/drivers/gpu/drm/i915/display/intel_backlight.c
> @@ -40,8 +40,9 @@ static u32 scale(u32 source_val,
> {
> u64 target_val;
>
> - WARN_ON(source_min > source_max);
> - WARN_ON(target_min > target_max);
> + if (WARN_ON(source_min >= source_max) ||
> + WARN_ON(target_min > target_max))
> + return target_min;
>
> /* defensive */
> source_val = clamp(source_val, source_min, source_max);
> --
> 2.45.2
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters
2025-01-21 22:58 ` [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Rodrigo Vivi
@ 2025-01-21 23:15 ` Linus Torvalds
2025-02-02 13:27 ` David Laight
0 siblings, 1 reply; 9+ messages in thread
From: Linus Torvalds @ 2025-01-21 23:15 UTC (permalink / raw)
To: Rodrigo Vivi
Cc: Guenter Roeck, Jani Nikula, Joonas Lahtinen, Tvrtko Ursulin,
David Airlie, Simona Vetter, intel-gfx, intel-xe, dri-devel,
linux-kernel, David Laight, Andy Shevchenko
On Tue, 21 Jan 2025 at 14:59, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
>
> I'm pushing this soon to drm-intel-next, unless Linus want to take
> this one directly to his tree
Let's just go through the proper channels and go through the drm tree.
Unless I've issed something, I think this is only an active issue on
parisc (and only with certain compiler versions at that), so it isn't
some super-urgent thing that needs to be expedited.
Thanks,
Linus
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2)
2025-01-21 14:52 [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Guenter Roeck
` (2 preceding siblings ...)
2025-01-21 22:58 ` [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Rodrigo Vivi
@ 2025-01-22 11:26 ` Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-22 11:26 UTC (permalink / raw)
To: Guenter Roeck; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100310 bytes --]
== Series Details ==
Series: drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2)
URL : https://patchwork.freedesktop.org/series/143775/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15993_full -> Patchwork_143775v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_143775v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_143775v2_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 (12 -> 12)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_143775v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_create@legacy@smem:
- shard-snb: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb2/igt@gem_exec_create@legacy@smem.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb5/igt@gem_exec_create@legacy@smem.html
* igt@kms_pm_rpm@cursor:
- shard-rkl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_pm_rpm@cursor.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-mtlp: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-1/igt@kms_psr@psr-sprite-mmap-cpu.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-mtlp-2/igt@kms_psr@psr-sprite-mmap-cpu.html
Known issues
------------
Here are the changes found in Patchwork_143775v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#9318])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-tglu: [PASS][10] -> [ABORT][11] ([i915#12817] / [i915#5507])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-tglu-9/igt@device_reset@unbind-reset-rebind.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-9/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +14 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#7297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#12392] / [i915#7297])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][21] ([i915#1099]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb7/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][26] -> [ABORT][27] ([i915#7975] / [i915#8213])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@gem_eio@hibernate.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@gem_eio@hibernate.html
- shard-tglu: NOTRUN -> [ABORT][28] ([i915#10030] / [i915#7975] / [i915#8213])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][29] ([i915#13197] / [i915#13390])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk8/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][30] -> [FAIL][31] ([i915#5784])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-17/igt@gem_eio@kms.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-13/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][32] ([i915#8898])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb7/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#4525])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#6344])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +6 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@wide:
- shard-tglu: [PASS][46] -> [INCOMPLETE][47] ([i915#13391]) +1 other test incomplete
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-tglu-4/igt@gem_exec_schedule@wide.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@gem_exec_schedule@wide.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][48] -> [INCOMPLETE][49] ([i915#11441] / [i915#13304])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][50] -> [INCOMPLETE][51] ([i915#11441])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-4/igt@gem_exec_suspend@basic-s0@lmem0.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: [PASS][52] -> [INCOMPLETE][53] ([i915#13196]) +1 other test incomplete
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk3/igt@gem_exec_suspend@basic-s3@smem.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk3/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_gpgpu_fill@basic:
- shard-rkl: [PASS][56] -> [DMESG-WARN][57] ([i915#12964]) +3 other tests dmesg-warn
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-1/igt@gem_gpgpu_fill@basic.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-5/igt@gem_gpgpu_fill@basic.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#2190])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk9/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#12193])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +7 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][69] ([i915#2658])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][73] ([i915#12917] / [i915#12964]) +1 other test timeout
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#13398])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4885])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc:
- shard-rkl: NOTRUN -> [DMESG-WARN][79] ([i915#12964]) +11 other tests dmesg-warn
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@gem_softpin@noreloc.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: NOTRUN -> [ABORT][82] ([i915#13263] / [i915#13449])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb7/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4879])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#3282] / [i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_fb_tiling:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4881])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-no-display:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][97] ([i915#13029])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][98] ([i915#9820])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#8399])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][100] ([i915#2681]) +1 other test warn
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][101] -> [FAIL][102] ([i915#12739] / [i915#3591])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#11681] / [i915#6621])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#11681]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][105] -> [SKIP][106] ([i915#7984])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-4/igt@i915_power@sanity.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-mtlp-1/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#6245])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#5723])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][109] ([i915#7443])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#7707])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4212]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][112] ([i915#12761] / [i915#1982]) +1 other test incomplete
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#8709]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#8709]) +7 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-3-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#8709]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#12967])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#9531])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-snb: NOTRUN -> [SKIP][118] ([i915#1769])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk: NOTRUN -> [SKIP][119] ([i915#1769])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#5286]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286]) +6 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#5286]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: [PASS][126] -> [DMESG-FAIL][127] ([i915#11627] / [i915#13314])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3638]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3638]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +54 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#12313]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#12313]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#6095]) +226 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#6095]) +34 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +114 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#12313]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#6095]) +70 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#12805])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#12805])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#6095]) +8 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#12313])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][144] +263 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#7213]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][147] +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +8 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +9 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_color@deep-color:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#9979])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#7116] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#3116] / [i915#3299]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#3116] / [i915#3299])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3299])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#7118] / [i915#9424])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#7118])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#7116])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@kms_content_protection@srm.html
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#7116] / [i915#7118])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#7118] / [i915#9424])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#13049]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#13049]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#13049]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#13049])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#13049]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#4103] / [i915#4213]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][173] +16 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#13046] / [i915#5354]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][175] ([i915#2346])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#9067])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#4103])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#4103])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][179] -> [FAIL][180] ([i915#2346])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk3/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk8/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#9833])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555]) +5 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555]) +5 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#12402])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#8812])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3840]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#3840])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#3840])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3840] / [i915#9053])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3955])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#3469])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#3469])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3469])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#4854])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#1839])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#1839])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#9337])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#658])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#4881])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#3637]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#9934]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#8381])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#9934]) +7 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#3637]) +6 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#9934]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][209] ([i915#11989]) +3 other tests fail
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][210] ([i915#12745] / [i915#4839])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk9/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][211] ([i915#12745])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#2672]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#2672]) +4 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2: [PASS][222] -> [FAIL][223] ([i915#6880]) +1 other test fail
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][224] +52 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#8708]) +19 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-snb: [PASS][226] -> [SKIP][227]
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#8708]) +16 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#5439])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#3023]) +20 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#9766])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +20 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#10433] / [i915#3458]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][234] +47 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#3458]) +12 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +33 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#5354]) +20 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][238] +57 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#12713])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [PASS][244] -> [SKIP][245] ([i915#3555] / [i915#8228])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_hdr@static-toggle.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#10656])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#12388])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#12339])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#10656])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#12388])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#12394] / [i915#13522]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#1839]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#6301])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#6301])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#13026]) +1 other test incomplete
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#13046] / [i915#5354] / [i915#9423])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#6953])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#12247]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#3555]) +5 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#12247]) +14 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#12247] / [i915#6953]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#6953]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#12247]) +12 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#12247] / [i915#6953])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#12247]) +12 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#3555])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#12247] / [i915#6953] / [i915#9423])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#12247]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#5354])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#9812])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#5354])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#9812])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#9685]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#4281])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#9340])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#8430])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#9519]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [PASS][279] -> [SKIP][280] ([i915#9519])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#9519])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][282] -> [SKIP][283] ([i915#9519])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#4077]) +12 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [PASS][285] -> [FAIL][286] ([i915#8717])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-6/igt@kms_pm_rpm@i2c.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#9519])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#6524])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#6524])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk: NOTRUN -> [SKIP][290] ([i915#11520]) +7 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#11520]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#11520]) +8 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#11520]) +4 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#11520]) +8 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#11520]) +7 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][296] ([i915#11520]) +6 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb7/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#9683])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#9683]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#9683])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +17 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
* igt@kms_psr@pr-basic:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#9732]) +10 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_psr@pr-basic.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9732]) +14 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +22 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#1072] / [i915#9732]) +25 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#9685])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#4884])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#5289])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#5289])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#12755] / [i915#5190])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#5190]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#5289])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#12755])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#3555]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][314] -> [FAIL][315] ([IGT#160])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_sysfs_edid_timing.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#8623])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#8623])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#9906])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#9906]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#9906])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][321] ([i915#9906])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#2437])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#2437])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-5/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#2437] / [i915#9412])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][325] ([i915#2437]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk9/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][326] +235 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb7/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#8850])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg1: NOTRUN -> [FAIL][328] ([i915#12549] / [i915#6806]) +1 other test fail
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][329] -> [FAIL][330] ([i915#4349]) +1 other test fail
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#8516]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-7/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#3708]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#3708] / [i915#4077])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-17/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#3291] / [i915#3708])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#3291] / [i915#3708])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#3708])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#9917])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#9917])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][339] ([i915#12910]) +18 other tests fail
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-6/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5:
- shard-tglu-1: NOTRUN -> [FAIL][340] ([i915#12910]) +9 other tests fail
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#4818])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][342] ([i915#13427]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][344] ([i915#12543] / [i915#5784]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@gem_eio@reset-stress.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@gem_eio@reset-stress.html
* igt@gem_exec_nop@basic-parallel:
- shard-rkl: [DMESG-WARN][346] ([i915#12964]) -> [PASS][347] +1 other test pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-1/igt@gem_exec_nop@basic-parallel.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-5/igt@gem_exec_nop@basic-parallel.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][348] ([i915#9820]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][350] ([i915#3591]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@reset:
- shard-snb: [DMESG-FAIL][352] -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb4/igt@i915_pm_rps@reset.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb7/igt@i915_pm_rps@reset.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-glk: [FAIL][354] ([i915#10991] / [i915#12766]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2:
- shard-glk: [FAIL][356] ([i915#10991]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: [FAIL][358] ([i915#13566]) -> [PASS][359] +3 other tests pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-tglu: [FAIL][360] -> [PASS][361] +1 other test pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-tglu-3/igt@kms_cursor_crc@cursor-random-256x85.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-tglu-7/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-snb: [FAIL][362] ([i915#11989]) -> [PASS][363] +1 other test pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-snb1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-snb4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-glk: [DMESG-FAIL][364] ([i915#118]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-glk2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_plane_alpha_blend@constant-alpha-mid:
- shard-dg1: [DMESG-WARN][366] ([i915#4423]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@kms_plane_alpha_blend@constant-alpha-mid.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_plane_alpha_blend@constant-alpha-mid.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [SKIP][368] ([i915#9519]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [FAIL][370] ([i915#4349]) -> [PASS][371] +1 other test pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [DMESG-WARN][372] ([i915#10887] / [i915#13475]) -> [ABORT][373] ([i915#10131] / [i915#13493] / [i915#9820])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][374] ([i915#5138]) -> [DMESG-FAIL][375] ([i915#11627] / [i915#13314])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg1: [SKIP][376] ([i915#3638] / [i915#4423]) -> [SKIP][377] ([i915#3638])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [DMESG-FAIL][378] ([i915#12964]) -> [INCOMPLETE][379] ([i915#12796]) +1 other test incomplete
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: [SKIP][380] ([i915#3299] / [i915#4423]) -> [SKIP][381] ([i915#3299])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][382] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][383] ([i915#7118] / [i915#9424])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-10/igt@kms_content_protection@type1.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-6/igt@kms_content_protection@type1.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg1: [SKIP][384] ([i915#4423] / [i915#9934]) -> [SKIP][385] ([i915#9934])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@kms_flip@2x-blocking-wf_vblank.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][386] ([i915#4423] / [i915#8708]) -> [SKIP][387] ([i915#8708])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg1: [SKIP][388] ([i915#3458] / [i915#4423]) -> [SKIP][389] ([i915#3458])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: [SKIP][390] ([i915#10433] / [i915#3458]) -> [SKIP][391] ([i915#3458])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: [SKIP][392] ([i915#4423]) -> [SKIP][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2: [SKIP][394] ([i915#3458]) -> [SKIP][395] ([i915#10433] / [i915#3458])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][396] ([i915#1187] / [i915#12713]) -> [SKIP][397] ([i915#12713])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][398] ([i915#4816]) -> [SKIP][399] ([i915#4070] / [i915#4816])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg1: [SKIP][400] ([i915#11520] / [i915#4423]) -> [SKIP][401] ([i915#11520])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15993/shard-dg1-14/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/shard-dg1-12/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[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#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11627]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11627
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12739
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12766
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143775v2/index.html
[-- Attachment #2: Type: text/html, Size: 113241 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters
2025-01-21 23:15 ` Linus Torvalds
@ 2025-02-02 13:27 ` David Laight
2025-02-02 14:28 ` Guenter Roeck
0 siblings, 1 reply; 9+ messages in thread
From: David Laight @ 2025-02-02 13:27 UTC (permalink / raw)
To: Linus Torvalds
Cc: Rodrigo Vivi, Guenter Roeck, Jani Nikula, Joonas Lahtinen,
Tvrtko Ursulin, David Airlie, Simona Vetter, intel-gfx, intel-xe,
dri-devel, linux-kernel, Andy Shevchenko
On Tue, 21 Jan 2025 15:15:09 -0800
Linus Torvalds <torvalds@linux-foundation.org> wrote:
> On Tue, 21 Jan 2025 at 14:59, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> >
> > I'm pushing this soon to drm-intel-next, unless Linus want to take
> > this one directly to his tree
>
> Let's just go through the proper channels and go through the drm tree.
>
> Unless I've issed something, I think this is only an active issue on
> parisc (and only with certain compiler versions at that), so it isn't
> some super-urgent thing that needs to be expedited.
It probably wants pushing into rc-2.
The build bot is complaining again.
David
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters
2025-02-02 13:27 ` David Laight
@ 2025-02-02 14:28 ` Guenter Roeck
2025-02-03 19:05 ` Rodrigo Vivi
0 siblings, 1 reply; 9+ messages in thread
From: Guenter Roeck @ 2025-02-02 14:28 UTC (permalink / raw)
To: David Laight, Linus Torvalds
Cc: Rodrigo Vivi, Jani Nikula, Joonas Lahtinen, Tvrtko Ursulin,
David Airlie, Simona Vetter, intel-gfx, intel-xe, dri-devel,
linux-kernel, Andy Shevchenko
On 2/2/25 05:27, David Laight wrote:
> On Tue, 21 Jan 2025 15:15:09 -0800
> Linus Torvalds <torvalds@linux-foundation.org> wrote:
>
>> On Tue, 21 Jan 2025 at 14:59, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
>>>
>>> I'm pushing this soon to drm-intel-next, unless Linus want to take
>>> this one directly to his tree
>>
>> Let's just go through the proper channels and go through the drm tree.
>>
>> Unless I've issed something, I think this is only an active issue on
>> parisc (and only with certain compiler versions at that), so it isn't
>> some super-urgent thing that needs to be expedited.
>
> It probably wants pushing into rc-2.
> The build bot is complaining again.
>
The patch didn't make it into linux-next (as of next-20250131).
I assume it either got lost or it was dropped for some reason.
Guenter
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters
2025-02-02 14:28 ` Guenter Roeck
@ 2025-02-03 19:05 ` Rodrigo Vivi
0 siblings, 0 replies; 9+ messages in thread
From: Rodrigo Vivi @ 2025-02-03 19:05 UTC (permalink / raw)
To: Guenter Roeck
Cc: David Laight, Linus Torvalds, Jani Nikula, Joonas Lahtinen,
Tvrtko Ursulin, David Airlie, Simona Vetter, intel-gfx, intel-xe,
dri-devel, linux-kernel, Andy Shevchenko
On Sun, Feb 02, 2025 at 06:28:08AM -0800, Guenter Roeck wrote:
> On 2/2/25 05:27, David Laight wrote:
> > On Tue, 21 Jan 2025 15:15:09 -0800
> > Linus Torvalds <torvalds@linux-foundation.org> wrote:
> >
> > > On Tue, 21 Jan 2025 at 14:59, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > > >
> > > > I'm pushing this soon to drm-intel-next, unless Linus want to take
> > > > this one directly to his tree
> > >
> > > Let's just go through the proper channels and go through the drm tree.
> > >
> > > Unless I've issed something, I think this is only an active issue on
> > > parisc (and only with certain compiler versions at that), so it isn't
> > > some super-urgent thing that needs to be expedited.
> >
> > It probably wants pushing into rc-2.
> > The build bot is complaining again.
> >
>
> The patch didn't make it into linux-next (as of next-20250131).
> I assume it either got lost or it was dropped for some reason.
I'm sorry for missing that for our -rc1 cycle. It is now queued for -rc2
>
> Guenter
>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-02-03 19:05 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-21 14:52 [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Guenter Roeck
2025-01-21 19:30 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2) Patchwork
2025-01-21 19:43 ` ✓ i915.CI.BAT: success " Patchwork
2025-01-21 22:58 ` [PATCH v2] drm/i915/backlight: Return immediately when scale() finds invalid parameters Rodrigo Vivi
2025-01-21 23:15 ` Linus Torvalds
2025-02-02 13:27 ` David Laight
2025-02-02 14:28 ` Guenter Roeck
2025-02-03 19:05 ` Rodrigo Vivi
2025-01-22 11:26 ` ✗ i915.CI.Full: failure for drm/i915/backlight: Return immediately when scale() finds invalid parameters (rev2) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox