* [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU
@ 2024-05-16 15:14 Nirmoy Das
2024-05-16 16:22 ` Cavitt, Jonathan
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Nirmoy Das @ 2024-05-16 15:14 UTC (permalink / raw)
To: intel-gfx
Cc: dri-devel, Nirmoy Das, Andi Shyti, Janusz Krzysztofik,
Jonathan Cavitt
The previous commit 'commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick
correct caching mode.")' was not complete as for non LLC sharing platforms
cpu read can happen from LLC which probably doesn't have the latest
changes made by GPU.
Cc: Andi Shyti <andi.shyti@linux.intel.com>
Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
index 65a931ea80e9..3527b8f446fe 100644
--- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
+++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
@@ -196,7 +196,7 @@ static int verify_access(struct drm_i915_private *i915,
if (err)
goto out_file;
- mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, true);
+ mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, false);
vaddr = i915_gem_object_pin_map_unlocked(native_obj, mode);
if (IS_ERR(vaddr)) {
err = PTR_ERR(vaddr);
--
2.42.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-16 15:14 [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU Nirmoy Das
@ 2024-05-16 16:22 ` Cavitt, Jonathan
2024-05-16 18:44 ` ✓ Fi.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Cavitt, Jonathan @ 2024-05-16 16:22 UTC (permalink / raw)
To: Das, Nirmoy, intel-gfx@lists.freedesktop.org, Cavitt, Jonathan
Cc: dri-devel@lists.freedesktop.org, Andi Shyti, Janusz Krzysztofik
-----Original Message-----
From: Das, Nirmoy <nirmoy.das@intel.com>
Sent: Thursday, May 16, 2024 8:14 AM
To: intel-gfx@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org; Das, Nirmoy <nirmoy.das@intel.com>; Andi Shyti <andi.shyti@linux.intel.com>; Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com>
Subject: [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU
>
> The previous commit 'commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick
> correct caching mode.")' was not complete as for non LLC sharing platforms
> cpu read can happen from LLC which probably doesn't have the latest
> changes made by GPU.
>
> Cc: Andi Shyti <andi.shyti@linux.intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
I see no problem with this
Reviewed-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
-Jonathan Cavitt
> ---
> drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> index 65a931ea80e9..3527b8f446fe 100644
> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> @@ -196,7 +196,7 @@ static int verify_access(struct drm_i915_private *i915,
> if (err)
> goto out_file;
>
> - mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, true);
> + mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, false);
> vaddr = i915_gem_object_pin_map_unlocked(native_obj, mode);
> if (IS_ERR(vaddr)) {
> err = PTR_ERR(vaddr);
> --
> 2.42.0
>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-16 15:14 [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU Nirmoy Das
2024-05-16 16:22 ` Cavitt, Jonathan
@ 2024-05-16 18:44 ` Patchwork
2024-05-17 7:39 ` [PATCH] " Jani Nikula
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-05-16 18:44 UTC (permalink / raw)
To: Nirmoy Das; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8089 bytes --]
== Series Details ==
Series: drm/i915/selftests: Set always_coherent to false when reading from CPU
URL : https://patchwork.freedesktop.org/series/133704/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14775 -> Patchwork_133704v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/index.html
Participating hosts (41 -> 42)
------------------------------
Additional (3): bat-jsl-3 bat-jsl-1 bat-arls-3
Missing (2): bat-dg2-11 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_133704v1:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- {bat-mtlp-9}: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-mtlp-9/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-6:
- {bat-mtlp-9}: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-6.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-6.html
Known issues
------------
Here are the changes found in Patchwork_133704v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-3: NOTRUN -> [SKIP][5] ([i915#9318])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-3/igt@debugfs_test@basic-hwmon.html
- bat-jsl-1: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-3: NOTRUN -> [SKIP][7] ([i915#2190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-3/igt@gem_huc_copy@huc-copy.html
- bat-jsl-1: NOTRUN -> [SKIP][8] ([i915#2190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- bat-jsl-3: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-3/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-9: [PASS][10] -> [FAIL][11] ([i915#10378])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-jsl-1: NOTRUN -> [SKIP][12] ([i915#4613]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_module_load@load:
- bat-arls-3: NOTRUN -> [ABORT][13] ([i915#11041])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-arls-3/igt@i915_module_load@load.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-3: NOTRUN -> [SKIP][14] ([i915#4103]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-jsl-1: NOTRUN -> [SKIP][15] ([i915#4103]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-jsl-3: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9886])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-3/igt@kms_dsc@dsc-basic.html
- bat-jsl-1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9886])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-3: NOTRUN -> [SKIP][18]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-3/igt@kms_force_connector_basic@force-load-detect.html
- bat-jsl-1: NOTRUN -> [SKIP][19]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-jsl-3: NOTRUN -> [SKIP][20] ([i915#3555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-3/igt@kms_setmode@basic-clone-single-crtc.html
- bat-jsl-1: NOTRUN -> [SKIP][21] ([i915#3555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@core_auth@basic-auth:
- {bat-apl-1}: [DMESG-WARN][22] ([i915#1982]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/bat-apl-1/igt@core_auth@basic-auth.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-apl-1/igt@core_auth@basic-auth.html
* igt@i915_selftest@live@active:
- bat-arls-1: [DMESG-WARN][24] ([i915#10999]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/bat-arls-1/igt@i915_selftest@live@active.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-arls-1/igt@i915_selftest@live@active.html
* igt@i915_selftest@live@client:
- bat-arls-1: [DMESG-FAIL][26] ([i915#10262]) -> [PASS][27] +22 other tests pass
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/bat-arls-1/igt@i915_selftest@live@client.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/bat-arls-1/igt@i915_selftest@live@client.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10435
[i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580
[i915#10999]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10999
[i915#11041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11041
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* Linux: CI_DRM_14775 -> Patchwork_133704v1
CI-20190529: 20190529
CI_DRM_14775: 3b6a503228b84c010794599203ac3e1e3d349bab @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7858: 133c90d6aabcd90871e36946317c90ee83c2f847 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133704v1: 3b6a503228b84c010794599203ac3e1e3d349bab @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/index.html
[-- Attachment #2: Type: text/html, Size: 9553 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-16 15:14 [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU Nirmoy Das
2024-05-16 16:22 ` Cavitt, Jonathan
2024-05-16 18:44 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-05-17 7:39 ` Jani Nikula
2024-05-17 8:40 ` Nirmoy Das
2024-05-17 8:46 ` ✗ Fi.CI.IGT: failure for " Patchwork
2024-05-17 10:30 ` [PATCH] " Andi Shyti
4 siblings, 1 reply; 10+ messages in thread
From: Jani Nikula @ 2024-05-17 7:39 UTC (permalink / raw)
To: Nirmoy Das, intel-gfx
Cc: dri-devel, Nirmoy Das, Andi Shyti, Janusz Krzysztofik,
Jonathan Cavitt
On Thu, 16 May 2024, Nirmoy Das <nirmoy.das@intel.com> wrote:
> The previous commit 'commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick
"previous commit" is a fairly vague reference once this gets
committed. It's not going to be "previous" in any meaningful sense.
Please just start with:
Commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick correct caching mode.")
was not complete...
And probably add:
Fixes: 8d4ba9fc1c6c ("drm/i915/selftests: Pick correct caching mode.")
BR,
Jani.
> correct caching mode.")' was not complete as for non LLC sharing platforms
> cpu read can happen from LLC which probably doesn't have the latest
> changes made by GPU.
>
> Cc: Andi Shyti <andi.shyti@linux.intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> index 65a931ea80e9..3527b8f446fe 100644
> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
> @@ -196,7 +196,7 @@ static int verify_access(struct drm_i915_private *i915,
> if (err)
> goto out_file;
>
> - mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, true);
> + mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, false);
> vaddr = i915_gem_object_pin_map_unlocked(native_obj, mode);
> if (IS_ERR(vaddr)) {
> err = PTR_ERR(vaddr);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-17 7:39 ` [PATCH] " Jani Nikula
@ 2024-05-17 8:40 ` Nirmoy Das
2024-05-17 11:53 ` Jani Nikula
0 siblings, 1 reply; 10+ messages in thread
From: Nirmoy Das @ 2024-05-17 8:40 UTC (permalink / raw)
To: Jani Nikula, Nirmoy Das, intel-gfx
Cc: dri-devel, Andi Shyti, Janusz Krzysztofik, Jonathan Cavitt
Hi Jani,
On 5/17/2024 9:39 AM, Jani Nikula wrote:
> On Thu, 16 May 2024, Nirmoy Das <nirmoy.das@intel.com> wrote:
>> The previous commit 'commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick
> "previous commit" is a fairly vague reference once this gets
> committed. It's not going to be "previous" in any meaningful sense.
>
> Please just start with:
>
> Commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick correct caching mode.")
> was not complete...
Will do that.
>
> And probably add:
>
> Fixes: 8d4ba9fc1c6c ("drm/i915/selftests: Pick correct caching mode.")
Do we need Fixes for selftest ? I always assumed it is not required as
this code is for debug/CI
Thanks,
Nirmoy
>
> BR,
> Jani.
>
>> correct caching mode.")' was not complete as for non LLC sharing platforms
>> cpu read can happen from LLC which probably doesn't have the latest
>> changes made by GPU.
>>
>> Cc: Andi Shyti <andi.shyti@linux.intel.com>
>> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
>> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
>> ---
>> drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> index 65a931ea80e9..3527b8f446fe 100644
>> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>> @@ -196,7 +196,7 @@ static int verify_access(struct drm_i915_private *i915,
>> if (err)
>> goto out_file;
>>
>> - mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, true);
>> + mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, false);
>> vaddr = i915_gem_object_pin_map_unlocked(native_obj, mode);
>> if (IS_ERR(vaddr)) {
>> err = PTR_ERR(vaddr);
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-16 15:14 [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU Nirmoy Das
` (2 preceding siblings ...)
2024-05-17 7:39 ` [PATCH] " Jani Nikula
@ 2024-05-17 8:46 ` Patchwork
2024-05-17 12:47 ` Nirmoy Das
2024-05-17 10:30 ` [PATCH] " Andi Shyti
4 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2024-05-17 8:46 UTC (permalink / raw)
To: Nirmoy Das; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 62695 bytes --]
== Series Details ==
Series: drm/i915/selftests: Set always_coherent to false when reading from CPU
URL : https://patchwork.freedesktop.org/series/133704/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14775_full -> Patchwork_133704v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_133704v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_133704v1_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 (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_133704v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear:
- shard-dg2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-3/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
- shard-mtlp: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-mtlp-1/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias:
- shard-dg2: [PASS][5] -> [DMESG-FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-3/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
- shard-mtlp: [PASS][7] -> [DMESG-FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-mtlp-1/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
* igt@gem_exec_schedule@wide@rcs0:
- shard-glk: NOTRUN -> [FAIL][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk6/igt@gem_exec_schedule@wide@rcs0.html
New tests
---------
New tests have been introduced between CI_DRM_14775_full and Patchwork_133704v1_full:
### New IGT tests (4) ###
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.11, 0.29] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.10, 0.32] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.10] s
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.10] s
Known issues
------------
Here are the changes found in Patchwork_133704v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: [PASS][10] -> [FAIL][11] ([i915#7742])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.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_133704v1/shard-dg2-10/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#3281]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#7297])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [INCOMPLETE][21] ([i915#10513])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-glk: NOTRUN -> [FAIL][22] ([i915#9606])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk1/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-tglu: NOTRUN -> [FAIL][24] ([i915#2842])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][26] ([i915#2842]) +3 other tests fail
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_reloc@basic-cpu:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@gem_exec_reloc@basic-cpu.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#3281]) +11 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#4812]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4537] / [i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4860])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#2190])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#10378])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4565])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [PASS][35] -> [FAIL][36] ([i915#10378]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][37] ([i915#4613]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#4613]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@random:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gem_lmem_swapping@random.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#3282]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_vme:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#284])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@gem_media_vme.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4077]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4077]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4083]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4083]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][47] ([i915#2658])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite_snooped:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3282]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_pwrite_snooped.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4270]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4270]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4270]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#5190] / [i915#8428]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4079])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4879])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3297]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_userptr_blits@access-control.html
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#3297])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4880]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297] / [i915#4958])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3297]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#2527]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#2527]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#2856]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4881])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][68] ([i915#9820])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#8399])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#8399])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#6621])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#6621])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#8925])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#8925])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4387])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#4387])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#5723])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4212]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4212])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#8709]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#5286]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][82] -> [FAIL][83] ([i915#3763] / [i915#5138])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#5286]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4538] / [i915#5286]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3638])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4538] / [i915#5190]) +6 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4538]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#10656])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#6095]) +67 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#6095]) +59 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#10307] / [i915#6095]) +128 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#6095]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#10278])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#10278])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4087]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#7828]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#7828]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#7828]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#7828]) +8 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#7118] / [i915#9424])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#7116] / [i915#9424])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#6944] / [i915#9424])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][106] ([i915#7173])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#9424])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#7118] / [i915#9424]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#3359]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#3555]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#4103])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4103] / [i915#4213]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#4103])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4103] / [i915#4213])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#9227])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3804])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#1257])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3555] / [i915#3840])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#3840] / [i915#9688])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#3469])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-dg2: NOTRUN -> [SKIP][121] +13 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#3637]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#9934]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#2587] / [i915#2672]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#2672]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#2672]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#8708])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#5354]) +17 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#1825]) +19 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][130] +43 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
- shard-glk: NOTRUN -> [SKIP][131] +173 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#8708]) +8 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#5439])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#9766])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#3023]) +12 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#8708]) +16 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3458]) +7 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][138] +19 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#3458]) +17 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#8228]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#8228]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#8228])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-8/igt@kms_hdr@static-toggle.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#6301])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#6301])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#9423]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#9423]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#5176] / [i915#9423]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#9423]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#5235]) +7 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#5235] / [i915#9423]) +15 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#5235]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#9812])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#4281])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#9340])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][155] -> [SKIP][156] ([i915#9519])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#9519]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#6524])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#6524] / [i915#6805])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#9683])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#9683])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#9732]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#1072] / [i915#9732]) +19 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@fbc-psr-sprite-blt:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#1072] / [i915#9732]) +7 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@kms_psr@fbc-psr-sprite-blt.html
* igt@kms_psr@pr-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#1072] / [i915#9732]) +11 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#5289])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#5289]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555]) +9 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [PASS][171] -> [FAIL][172] ([i915#5465])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#8623])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][174] -> [FAIL][175] ([i915#9196])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][176] ([i915#2437])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#2437])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#2437])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3708])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@prime_vgem@fence-read-hang.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> [FAIL][180] ([i915#10291])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk1/igt@runner@aborted.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][181] ([i915#9781])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_perfmon@get-values-invalid-pad:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#2575]) +9 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@v3d/v3d_perfmon@get-values-invalid-pad.html
* igt@v3d/v3d_submit_cl@bad-perfmon:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#2575]) +5 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@v3d/v3d_submit_cl@bad-perfmon.html
* igt@v3d/v3d_submit_cl@multisync-out-syncs:
- shard-rkl: NOTRUN -> [SKIP][184] +24 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@v3d/v3d_submit_cl@multisync-out-syncs.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#2575]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#7711]) +8 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#7711]) +5 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#7711]) +4 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@vc4/vc4_tiling@set-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [FAIL][189] ([i915#7742]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][191] ([i915#5784]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg1-16/igt@gem_eio@reset-stress.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][193] ([i915#2842]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-tglu: [FAIL][195] ([i915#2842]) -> [PASS][196] +1 other test pass
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-mtlp: [INCOMPLETE][197] ([i915#8797]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-mtlp-7/igt@i915_pm_rpm@system-suspend-execbuf.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-snb: [SKIP][199] -> [PASS][200] +1 other test pass
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][201] ([i915#9519]) -> [PASS][202] +3 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][203] ([i915#9519]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [INCOMPLETE][205] ([i915#9413]) -> [ABORT][206] ([i915#9413])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [INCOMPLETE][207] ([i915#5566]) -> [ABORT][208] ([i915#5566])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-glk6/igt@gen9_exec_parse@allowed-all.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk3/igt@gen9_exec_parse@allowed-all.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][209] ([i915#10433] / [i915#3458]) -> [SKIP][210] ([i915#3458]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: [SKIP][211] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][212] ([i915#1072] / [i915#9732]) +9 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-11/igt@kms_psr@psr-cursor-render.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-dg2: [SKIP][213] ([i915#1072] / [i915#9732]) -> [SKIP][214] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-4/igt@kms_psr@psr2-cursor-plane-move.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_psr@psr2-cursor-plane-move.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][215] ([i915#5493]) -> [CRASH][216] ([i915#9351])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10291
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3763]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3763
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8797
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_14775 -> Patchwork_133704v1
CI-20190529: 20190529
CI_DRM_14775: 3b6a503228b84c010794599203ac3e1e3d349bab @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7858: 133c90d6aabcd90871e36946317c90ee83c2f847 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_133704v1: 3b6a503228b84c010794599203ac3e1e3d349bab @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/index.html
[-- Attachment #2: Type: text/html, Size: 76411 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-16 15:14 [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU Nirmoy Das
` (3 preceding siblings ...)
2024-05-17 8:46 ` ✗ Fi.CI.IGT: failure for " Patchwork
@ 2024-05-17 10:30 ` Andi Shyti
4 siblings, 0 replies; 10+ messages in thread
From: Andi Shyti @ 2024-05-17 10:30 UTC (permalink / raw)
To: Nirmoy Das
Cc: intel-gfx, dri-devel, Andi Shyti, Janusz Krzysztofik,
Jonathan Cavitt
Hi Nirmoy,
On Thu, May 16, 2024 at 05:14:03PM +0200, Nirmoy Das wrote:
> The previous commit 'commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick
> correct caching mode.")' was not complete as for non LLC sharing platforms
> cpu read can happen from LLC which probably doesn't have the latest
> changes made by GPU.
>
> Cc: Andi Shyti <andi.shyti@linux.intel.com>
> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
you can add:
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Thanks,
Andi
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-17 8:40 ` Nirmoy Das
@ 2024-05-17 11:53 ` Jani Nikula
2024-05-17 12:45 ` Nirmoy Das
0 siblings, 1 reply; 10+ messages in thread
From: Jani Nikula @ 2024-05-17 11:53 UTC (permalink / raw)
To: Nirmoy Das, Nirmoy Das, intel-gfx
Cc: dri-devel, Andi Shyti, Janusz Krzysztofik, Jonathan Cavitt
On Fri, 17 May 2024, Nirmoy Das <nirmoy.das@linux.intel.com> wrote:
> Hi Jani,
>
> On 5/17/2024 9:39 AM, Jani Nikula wrote:
>> On Thu, 16 May 2024, Nirmoy Das <nirmoy.das@intel.com> wrote:
>>> The previous commit 'commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick
>> "previous commit" is a fairly vague reference once this gets
>> committed. It's not going to be "previous" in any meaningful sense.
>>
>> Please just start with:
>>
>> Commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick correct caching mode.")
>> was not complete...
>
> Will do that.
>
>
>>
>> And probably add:
>>
>> Fixes: 8d4ba9fc1c6c ("drm/i915/selftests: Pick correct caching mode.")
>
> Do we need Fixes for selftest ? I always assumed it is not required as
> this code is for debug/CI
Maybe not for stuff that's already in stable, but we do run CI on
drm-next and -rc kernels, and if this causes issues there, why not have
them fixed?
BR,
Jani.
>
>
> Thanks,
>
> Nirmoy
>
>>
>> BR,
>> Jani.
>>
>>> correct caching mode.")' was not complete as for non LLC sharing platforms
>>> cpu read can happen from LLC which probably doesn't have the latest
>>> changes made by GPU.
>>>
>>> Cc: Andi Shyti <andi.shyti@linux.intel.com>
>>> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
>>> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
>>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
>>> ---
>>> drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>>> index 65a931ea80e9..3527b8f446fe 100644
>>> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>>> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>>> @@ -196,7 +196,7 @@ static int verify_access(struct drm_i915_private *i915,
>>> if (err)
>>> goto out_file;
>>>
>>> - mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, true);
>>> + mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, false);
>>> vaddr = i915_gem_object_pin_map_unlocked(native_obj, mode);
>>> if (IS_ERR(vaddr)) {
>>> err = PTR_ERR(vaddr);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-17 11:53 ` Jani Nikula
@ 2024-05-17 12:45 ` Nirmoy Das
0 siblings, 0 replies; 10+ messages in thread
From: Nirmoy Das @ 2024-05-17 12:45 UTC (permalink / raw)
To: Jani Nikula, Nirmoy Das, intel-gfx
Cc: dri-devel, Andi Shyti, Janusz Krzysztofik, Jonathan Cavitt
On 5/17/2024 1:53 PM, Jani Nikula wrote:
> On Fri, 17 May 2024, Nirmoy Das <nirmoy.das@linux.intel.com> wrote:
>> Hi Jani,
>>
>> On 5/17/2024 9:39 AM, Jani Nikula wrote:
>>> On Thu, 16 May 2024, Nirmoy Das <nirmoy.das@intel.com> wrote:
>>>> The previous commit 'commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick
>>> "previous commit" is a fairly vague reference once this gets
>>> committed. It's not going to be "previous" in any meaningful sense.
>>>
>>> Please just start with:
>>>
>>> Commit 8d4ba9fc1c6c ("drm/i915/selftests: Pick correct caching mode.")
>>> was not complete...
>> Will do that.
>>
>>
>>> And probably add:
>>>
>>> Fixes: 8d4ba9fc1c6c ("drm/i915/selftests: Pick correct caching mode.")
>> Do we need Fixes for selftest ? I always assumed it is not required as
>> this code is for debug/CI
> Maybe not for stuff that's already in stable, but we do run CI on
> drm-next and -rc kernels, and if this causes issues there, why not have
> them fixed?
Not sure a commit with Fixes flows from drm-intel-next to drm-next/-rc
but I see no issue adding Fixes without CC-ing to stable.
Pushed it to drm-intel-next with above modifications. b4-shazam picked
Fixes as well which was nice.
Thanks,
Nirmoy
>
> BR,
> Jani.
>
>>
>> Thanks,
>>
>> Nirmoy
>>
>>> BR,
>>> Jani.
>>>
>>>> correct caching mode.")' was not complete as for non LLC sharing platforms
>>>> cpu read can happen from LLC which probably doesn't have the latest
>>>> changes made by GPU.
>>>>
>>>> Cc: Andi Shyti <andi.shyti@linux.intel.com>
>>>> Cc: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
>>>> Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
>>>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
>>>> ---
>>>> drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c | 2 +-
>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>>>> index 65a931ea80e9..3527b8f446fe 100644
>>>> --- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>>>> +++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_dmabuf.c
>>>> @@ -196,7 +196,7 @@ static int verify_access(struct drm_i915_private *i915,
>>>> if (err)
>>>> goto out_file;
>>>>
>>>> - mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, true);
>>>> + mode = intel_gt_coherent_map_type(to_gt(i915), native_obj, false);
>>>> vaddr = i915_gem_object_pin_map_unlocked(native_obj, mode);
>>>> if (IS_ERR(vaddr)) {
>>>> err = PTR_ERR(vaddr);
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for drm/i915/selftests: Set always_coherent to false when reading from CPU
2024-05-17 8:46 ` ✗ Fi.CI.IGT: failure for " Patchwork
@ 2024-05-17 12:47 ` Nirmoy Das
0 siblings, 0 replies; 10+ messages in thread
From: Nirmoy Das @ 2024-05-17 12:47 UTC (permalink / raw)
To: intel-gfx, Patchwork, Nirmoy Das
[-- Attachment #1: Type: text/plain, Size: 73786 bytes --]
On 5/17/2024 10:46 AM, Patchwork wrote:
> Project List - Patchwork *Patch Details*
> *Series:* drm/i915/selftests: Set always_coherent to false when
> reading from CPU
> *URL:* https://patchwork.freedesktop.org/series/133704/
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/index.html
>
>
> CI Bug Log - changes from CI_DRM_14775_full -> Patchwork_133704v1_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with Patchwork_133704v1_full absolutely
> need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_133704v1_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 (9 -> 9)
>
> No changes in participating hosts
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> Patchwork_133704v1_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-3/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-mtlp-1/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html>
> *
>
> igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-3/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html>
> -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-mtlp-1/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html>
> -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html>
>
Unrelated failures.
> *
> *
>
> igt@gem_exec_schedule@wide@rcs0:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk6/igt@gem_exec_schedule@wide@rcs0.html>
>
>
> New tests
>
> New tests have been introduced between CI_DRM_14775_full and
> Patchwork_133704v1_full:
>
>
> New IGT tests (4)
>
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-hdmi-a-1:
>
> o Statuses : 2 pass(s)
> o Exec time: [0.11, 0.29] s
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-hdmi-a-1:
>
> o Statuses : 2 pass(s)
> o Exec time: [0.10, 0.32] s
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-c-hdmi-a-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.10] s
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-hdmi-a-1:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.10] s
>
>
> Known issues
>
> Here are the changes found in Patchwork_133704v1_full that come from
> known issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@drm_fdinfo@idle@rcs0:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@drm_fdinfo@idle@rcs0.html>
> (i915#7742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742>)
> *
>
> igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>)
> +4 other tests skip
> *
>
> igt@drm_fdinfo@virtual-busy-hang:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@drm_fdinfo@virtual-busy-hang.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>)
> *
>
> igt@gem_bad_reloc@negative-reloc-lut:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +3 other tests skip
> *
>
> igt@gem_ccs@ctrl-surf-copy:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#9323
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>)
> *
>
> igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
>
> o shard-dg2: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html>
> (i915#7297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297>)
> *
>
> igt@gem_create@create-ext-set-pat:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_create@create-ext-set-pat.html>
> (i915#8562
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>)
> *
>
> igt@gem_ctx_persistence@heartbeat-hostile:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html>
> (i915#8555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>)
> *
>
> igt@gem_ctx_persistence@heartbeat-stop:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html>
> (i915#8555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>)
> +1 other test skip
> *
>
> igt@gem_ctx_sseu@invalid-sseu:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html>
> (i915#280
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>)
> *
>
> igt@gem_eio@kms:
>
> o shard-dg1: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_eio@kms.html>
> (i915#10513
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513>)
> *
>
> igt@gem_exec_capture@many-4k-incremental:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk1/igt@gem_exec_capture@many-4k-incremental.html>
> (i915#9606
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606>)
> *
>
> igt@gem_exec_fair@basic-none-rrul:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>
> / i915#4852
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
> +2 other tests skip
> *
>
> igt@gem_exec_fair@basic-none-rrul@rcs0:
>
> o shard-tglu: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>)
> *
>
> igt@gem_exec_fair@basic-none-share:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_exec_fair@basic-none-share.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>
> / i915#4852
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>)
> +4 other tests skip
> *
>
> igt@gem_exec_fair@basic-throttle@rcs0:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk6/igt@gem_exec_fair@basic-throttle@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>)
> +3 other tests fail
> *
>
> igt@gem_exec_reloc@basic-cpu:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@gem_exec_reloc@basic-cpu.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +5 other tests skip
> *
>
> igt@gem_exec_reloc@basic-cpu-wc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@gem_exec_reloc@basic-cpu-wc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>)
> +11 other tests skip
> *
>
> igt@gem_exec_schedule@preempt-queue:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_exec_schedule@preempt-queue.html>
> (i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> +3 other tests skip
> *
>
> igt@gem_exec_schedule@semaphore-power:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537>
> / i915#4812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>)
> *
>
> igt@gem_fence_thrash@bo-write-verify-none:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-none.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>)
> *
>
> igt@gem_huc_copy@huc-copy:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gem_huc_copy@huc-copy.html>
> (i915#2190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190>)
> *
>
> igt@gem_lmem_swapping@basic@lmem0:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html>
> (i915#10378
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378>)
> *
>
> igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html>
> (i915#4565
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>)
> *
>
> igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html>
> (i915#10378
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378>)
> +1 other test fail
> *
>
> igt@gem_lmem_swapping@massive-random:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk6/igt@gem_lmem_swapping@massive-random.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +3 other tests skip
> *
>
> igt@gem_lmem_swapping@parallel-random:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_lmem_swapping@parallel-random.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> +1 other test skip
> *
>
> igt@gem_lmem_swapping@random:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gem_lmem_swapping@random.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>)
> *
>
> igt@gem_madvise@dontneed-before-pwrite:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gem_madvise@dontneed-before-pwrite.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +2 other tests skip
> *
>
> igt@gem_media_vme:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@gem_media_vme.html>
> (i915#284
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284>)
> *
>
> igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +5 other tests skip
> *
>
> igt@gem_mmap_gtt@cpuset-medium-copy-odd:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>)
> +4 other tests skip
> *
>
> igt@gem_mmap_wc@read:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_mmap_wc@read.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +6 other tests skip
> *
>
> igt@gem_mmap_wc@write-wc-read-gtt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@gem_mmap_wc@write-wc-read-gtt.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>)
> +4 other tests skip
> *
>
> igt@gem_partial_pwrite_pread@write-snoop:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_partial_pwrite_pread@write-snoop.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +2 other tests skip
> *
>
> igt@gem_pwrite@basic-exhaustion:
>
> o shard-tglu: NOTRUN -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html>
> (i915#2658
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658>)
> *
>
> igt@gem_pwrite_snooped:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_pwrite_snooped.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>)
> +1 other test skip
> *
>
> igt@gem_pxp@regular-baseline-src-copy-readible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +2 other tests skip
> *
>
> igt@gem_pxp@reject-modify-context-protection-on:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +2 other tests skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-on.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> +4 other tests skip
> *
>
> igt@gem_pxp@verify-pxp-stale-ctx-execution:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>)
> *
>
> igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>
> / i915#8428
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>)
> +1 other test skip
> *
>
> igt@gem_set_tiling_vs_pwrite:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html>
> (i915#4079
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>)
> *
>
> igt@gem_unfence_active_buffers:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@gem_unfence_active_buffers.html>
> (i915#4879
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879>)
> *
>
> igt@gem_userptr_blits@access-control:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_userptr_blits@access-control.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> +1 other test skip
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gem_userptr_blits@access-control.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_userptr_blits@map-fixed-invalidate:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>
> / i915#4880
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>)
> +1 other test skip
> *
>
> igt@gem_userptr_blits@sd-probe:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>
> / i915#4958
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958>)
> *
>
> igt@gem_userptr_blits@unsync-unmap:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> *
>
> igt@gem_userptr_blits@unsync-unmap-cycles:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-cycles.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>)
> +1 other test skip
> *
>
> igt@gen9_exec_parse@batch-invalid-length:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@gen9_exec_parse@batch-invalid-length.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +2 other tests skip
> *
>
> igt@gen9_exec_parse@bb-start-out:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@gen9_exec_parse@bb-start-out.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>)
> +1 other test skip
> *
>
> igt@gen9_exec_parse@bb-start-param:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@gen9_exec_parse@bb-start-param.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> +2 other tests skip
> *
>
> igt@gen9_exec_parse@cmd-crossing-page:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@gen9_exec_parse@cmd-crossing-page.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>
> / i915#2856
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>)
> *
>
> igt@i915_fb_tiling:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@i915_fb_tiling.html>
> (i915#4881
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881>)
> *
>
> igt@i915_module_load@reload-with-fault-injection:
>
> o shard-rkl: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html>
> (i915#9820
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>)
> *
>
> igt@i915_pm_freq_api@freq-reset:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html>
> (i915#8399
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> *
>
> igt@i915_pm_freq_api@freq-suspend:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html>
> (i915#8399
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>)
> *
>
> igt@i915_pm_rps@min-max-config-idle:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@i915_pm_rps@min-max-config-idle.html>
> (i915#6621
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>)
> *
>
> igt@i915_pm_rps@min-max-config-loaded:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html>
> (i915#6621
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>)
> *
>
> igt@i915_pm_rps@thresholds-idle-park@gt0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@i915_pm_rps@thresholds-idle-park@gt0.html>
> (i915#8925
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925>)
> *
>
> igt@i915_pm_rps@thresholds-park@gt0:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@i915_pm_rps@thresholds-park@gt0.html>
> (i915#8925
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925>)
> *
>
> igt@i915_pm_sseu@full-enable:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@i915_pm_sseu@full-enable.html>
> (i915#4387
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@i915_pm_sseu@full-enable.html>
> (i915#4387
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387>)
> *
>
> igt@i915_query@test-query-geometry-subslices:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html>
> (i915#5723
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>)
> *
>
> igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html>
> (i915#4212
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> +1 other test skip
> *
>
> igt@kms_addfb_basic@tile-pitch-mismatch:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_addfb_basic@tile-pitch-mismatch.html>
> (i915#4212
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html>
> (i915#8709
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>)
> +3 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +1 other test skip
> *
>
> igt@kms_big_fb@4-tiled-64bpp-rotate-180:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html>
> (i915#3763
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3763>
> / i915#5138
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138>)
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +3 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5286
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>)
> +5 other tests skip
> *
>
> igt@kms_big_fb@x-tiled-16bpp-rotate-90:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html>
> (i915#3638
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>)
> *
>
> igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> *
>
> igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>
> / i915#5190
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>)
> +6 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>)
> +5 other tests skip
> *
>
> igt@kms_big_joiner@invalid-modeset:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_big_joiner@invalid-modeset.html>
> (i915#10656
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>)
> *
>
> igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +67 other tests skip
> *
>
> igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +59 other tests skip
> *
>
> igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +128 other tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +7 other tests skip
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html>
> (i915#10278
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278>)
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html>
> (i915#10278
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278>)
> *
>
> igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html>
> (i915#10307
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307>
> / i915#10434
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434>
> / i915#6095
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>)
> +2 other tests skip
> *
>
> igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html>
> (i915#4087
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087>)
> +3 other tests skip
> *
>
> igt@kms_chamelium_frames@hdmi-aspect-ratio:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +1 other test skip
> *
>
> igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-fast:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-fast.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +4 other tests skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd-fast:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_chamelium_hpd@vga-hpd-fast.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>)
> +8 other tests skip
> *
>
> igt@kms_content_protection@atomic:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_content_protection@atomic.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@atomic-dpms:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html>
> (i915#7116
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@lic-type-0:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_content_protection@lic-type-0.html>
> (i915#6944
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
>
> o shard-dg2: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html>
> (i915#7173
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>)
> *
>
> igt@kms_content_protection@lic-type-1:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_content_protection@lic-type-1.html>
> (i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> *
>
> igt@kms_content_protection@uevent:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_content_protection@uevent.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118>
> / i915#9424
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>)
> +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-random-512x512:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html>
> (i915#3359
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>)
> +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-max-size:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +3 other tests skip
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>
> / i915#4213
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>)
> +2 other tests skip
> *
>
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html>
> (i915#4103
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>
> / i915#4213
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>)
> *
>
> igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html>
> (i915#9227
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html>
> (i915#3804
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>)
> *
>
> igt@kms_dp_aux_dev:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_dp_aux_dev.html>
> (i915#1257
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257>)
> *
>
> igt@kms_dsc@dsc-basic:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_dsc@dsc-basic.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>)
> *
>
> igt@kms_dsc@dsc-fractional-bpp:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html>
> (i915#3840
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>
> / i915#9688
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>)
> *
>
> igt@kms_fbcon_fbt@psr-suspend:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_fbcon_fbt@psr-suspend.html>
> (i915#3469
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>)
> *
>
> igt@kms_flip@2x-flip-vs-panning-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_flip@2x-flip-vs-panning-interruptible.html>
> +13 other tests skip
> *
>
> igt@kms_flip@2x-nonexisting-fb:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>)
> +2 other tests skip
> *
>
> igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html>
> (i915#9934
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>)
> +2 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html>
> (i915#2587
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587>
> / i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> +4 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>)
> +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>)
> +17 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>)
> +19 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html>
> +43 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html>
> +173 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +8 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html>
> (i915#5439
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>)
> *
>
> igt@kms_frontbuffer_tracking@pipe-fbc-rte:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html>
> (i915#9766
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>)
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html>
> (i915#3023
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>)
> +12 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>)
> +16 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-rte:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +7 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html>
> +19 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +17 other tests skip
> *
>
> igt@kms_hdr@bpc-switch-suspend:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_hdr@bpc-switch-suspend.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> +1 other test skip
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> +1 other test skip
> *
>
> igt@kms_hdr@static-toggle:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-8/igt@kms_hdr@static-toggle.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>
> / i915#8228
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228>)
> *
>
> igt@kms_panel_fitting@legacy:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_panel_fitting@legacy.html>
> (i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_panel_fitting@legacy.html>
> (i915#6301
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301>)
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html>
> (i915#9423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
> +7 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3.html>
> (i915#9423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
> +3 other tests skip
> *
>
> igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html>
> (i915#5176
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176>
> / i915#9423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
> +3 other tests skip
> *
>
> igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-2.html>
> (i915#9423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
> +1 other test skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>)
> +7 other tests skip
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>
> / i915#9423
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>)
> +15 other tests skip
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>)
> +3 other tests skip
> *
>
> igt@kms_pm_backlight@fade:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_pm_backlight@fade.html>
> (i915#9812
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812>)
> *
>
> igt@kms_pm_dc@dc9-dpms:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html>
> (i915#4281
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281>)
> *
>
> igt@kms_pm_lpsp@kms-lpsp:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html>
> (i915#9340
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>)
> *
>
> igt@kms_pm_rpm@dpms-lpsp:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> *
>
> igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> +1 other test skip
> *
>
> igt@kms_prime@basic-modeset-hybrid:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html>
> (i915#6524
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html>
> (i915#6524
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>
> / i915#6805
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>)
> *
>
> igt@kms_psr2_su@frontbuffer-xrgb8888:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_psr2_su@frontbuffer-xrgb8888.html>
> (i915#9683
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>)
> *
>
> igt@kms_psr@fbc-pr-cursor-plane-onoff:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_psr@fbc-pr-cursor-plane-onoff.html>
> (i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +4 other tests skip
> *
>
> igt@kms_psr@fbc-psr-primary-render:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-16/igt@kms_psr@fbc-psr-primary-render.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +19 other tests skip
> *
>
> igt@kms_psr@fbc-psr-sprite-blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@kms_psr@fbc-psr-sprite-blt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +7 other tests skip
> *
>
> igt@kms_psr@pr-sprite-render:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_psr@pr-sprite-render.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +11 other tests skip
> *
>
> igt@kms_psr@psr-cursor-mmap-cpu:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9673
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +4 other tests skip
> *
>
> igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html>
> (i915#5289
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>)
> +1 other test skip
> *
>
> igt@kms_scaling_modes@scaling-mode-center:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> +9 other tests skip
> *
>
> igt@kms_scaling_modes@scaling-mode-none:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-none.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>)
> *
>
> igt@kms_setmode@basic@pipe-a-hdmi-a-1:
>
> o shard-snb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html>
> (i915#5465
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465>)
> *
>
> igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html>
> (i915#8623
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623>)
> *
>
> igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html>
> (i915#9196
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>)
> *
>
> igt@kms_writeback@writeback-fb-id-xrgb2101010:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
> *
>
> igt@kms_writeback@writeback-invalid-parameters:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@kms_writeback@writeback-invalid-parameters.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html>
> (i915#2437
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>)
> *
>
> igt@prime_vgem@fence-read-hang:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@prime_vgem@fence-read-hang.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>)
> *
>
> igt@runner@aborted:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk1/igt@runner@aborted.html>
> (i915#10291
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10291>)
> *
>
> igt@syncobj_timeline@invalid-wait-zero-handles:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-4/igt@syncobj_timeline@invalid-wait-zero-handles.html>
> (i915#9781
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781>)
> *
>
> igt@v3d/v3d_perfmon@get-values-invalid-pad:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@v3d/v3d_perfmon@get-values-invalid-pad.html>
> (i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> +9 other tests skip
> *
>
> igt@v3d/v3d_submit_cl@bad-perfmon:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@v3d/v3d_submit_cl@bad-perfmon.html>
> (i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> +5 other tests skip
> *
>
> igt@v3d/v3d_submit_cl@multisync-out-syncs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@v3d/v3d_submit_cl@multisync-out-syncs.html>
> +24 other tests skip
> *
>
> igt@vc4/vc4_perfmon@get-values-invalid-pointer:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-8/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html>
> (i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> +4 other tests skip
> *
>
> igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-15/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711>)
> +8 other tests skip
> *
>
> igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711>)
> +5 other tests skip
> *
>
> igt@vc4/vc4_tiling@set-bad-modifier:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@vc4/vc4_tiling@set-bad-modifier.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711>)
> +4 other tests skip
>
>
> Possible fixes
>
> *
>
> igt@drm_fdinfo@virtual-idle:
>
> o shard-rkl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html>
> (i915#7742
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html>
> *
>
> igt@gem_eio@reset-stress:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg1-16/igt@gem_eio@reset-stress.html>
> (i915#5784
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-17/igt@gem_eio@reset-stress.html>
> *
>
> igt@gem_exec_fair@basic-pace-share@rcs0:
>
> o shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> *
>
> igt@gem_exec_fair@basic-throttle@rcs0:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-tglu-3/igt@gem_exec_fair@basic-throttle@rcs0.html>
> +1 other test pass
> *
>
> igt@i915_pm_rpm@system-suspend-execbuf:
>
> o shard-mtlp: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-mtlp-7/igt@i915_pm_rpm@system-suspend-execbuf.html>
> (i915#8797
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8797>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-mtlp-8/igt@i915_pm_rpm@system-suspend-execbuf.html>
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
>
> o shard-snb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html>
> +1 other test pass
> *
>
> igt@kms_pm_rpm@modeset-lpsp:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html>
> +3 other tests pass
> *
>
> igt@kms_pm_rpm@modeset-non-lpsp-stress:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html>
> (i915#9519
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html>
>
>
> Warnings
>
> *
>
> igt@device_reset@unbind-reset-rebind:
>
> o shard-dg1: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html>
> (i915#9413
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413>)
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html>
> (i915#9413
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413>)
> *
>
> igt@gen9_exec_parse@allowed-all:
>
> o shard-glk: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-glk6/igt@gen9_exec_parse@allowed-all.html>
> (i915#5566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566>)
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-glk3/igt@gen9_exec_parse@allowed-all.html>
> (i915#5566
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566>)
> *
>
> igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html>
> (i915#10433
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433>
> / i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>)
> +4 other tests skip
> *
>
> igt@kms_psr@psr-cursor-render:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-11/igt@kms_psr@psr-cursor-render.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9673
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-10/igt@kms_psr@psr-cursor-render.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +9 other tests skip
> *
>
> igt@kms_psr@psr2-cursor-plane-move:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-4/igt@kms_psr@psr2-cursor-plane-move.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-11/igt@kms_psr@psr2-cursor-plane-move.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072>
> / i915#9673
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673>
> / i915#9732
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>)
> +4 other tests skip
> *
>
> igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
>
> o shard-dg2: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14775/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html>
> (i915#5493
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>)
> -> CRASH
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133704v1/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html>
> (i915#9351
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351>)
>
>
> Build changes
>
> * Linux: CI_DRM_14775 -> Patchwork_133704v1
>
> CI-20190529: 20190529
> CI_DRM_14775: 3b6a503228b84c010794599203ac3e1e3d349bab @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGT_7858: 133c90d6aabcd90871e36946317c90ee83c2f847 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_133704v1: 3b6a503228b84c010794599203ac3e1e3d349bab @
> git://anongit.freedesktop.org/gfx-ci/linux
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
[-- Attachment #2: Type: text/html, Size: 105242 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-05-17 12:47 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-16 15:14 [PATCH] drm/i915/selftests: Set always_coherent to false when reading from CPU Nirmoy Das
2024-05-16 16:22 ` Cavitt, Jonathan
2024-05-16 18:44 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-05-17 7:39 ` [PATCH] " Jani Nikula
2024-05-17 8:40 ` Nirmoy Das
2024-05-17 11:53 ` Jani Nikula
2024-05-17 12:45 ` Nirmoy Das
2024-05-17 8:46 ` ✗ Fi.CI.IGT: failure for " Patchwork
2024-05-17 12:47 ` Nirmoy Das
2024-05-17 10:30 ` [PATCH] " Andi Shyti
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.