* [PATCH i-g-t 0/3] Sync i915_pciid.h
@ 2024-01-09 6:09 Chaitanya Kumar Borah
2024-01-09 6:09 ` [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h Chaitanya Kumar Borah
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2024-01-09 6:09 UTC (permalink / raw)
To: igt-dev
Our original intent was to add ARL-S PCI IDs to IGT header. The ideal way
to do that would be to sync i915_pciids.h between kernel and IGT.
However, recently both files have diverged. See [2]
We tried adding just the ARL-S PCI ID to the IGT i915_pciids.h but
this will further diverge both the files. Please see the discussions
in [1].
To avoid this, we have decided to use i915_pciids_local.h to move out
any difference between the kernel and IGT header and then sync both
the headers.
I have not tested if the PVC and MTL changes causes any functional issue
but verified that the build works.
[1] https://patchwork.freedesktop.org/patch/572027/?series=50957&rev=15
[2] 17f9914c47c9 (lib: Add Pontevecchio platform)
77dd5222d165 (v2: Add mtl to perf-metrics-codegen.py (Umesh))
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
Chaitanya Kumar Borah (3):
lib/i915/perf: include i915_pciid_local.h
lib: Add non-kernel macros to i915_pciids_local.h
lib: sync i915_pciids.h with kernel
lib/i915/perf.c | 2 +-
lib/i915_pciids.h | 56 ++++++++++++++++++-----------------------
lib/i915_pciids_local.h | 38 ++++++++++++++++++++++++++++
3 files changed, 64 insertions(+), 32 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h
2024-01-09 6:09 [PATCH i-g-t 0/3] Sync i915_pciid.h Chaitanya Kumar Borah
@ 2024-01-09 6:09 ` Chaitanya Kumar Borah
2024-01-09 12:37 ` Kamil Konieczny
2024-01-09 6:09 ` [PATCH i-g-t 2/3] lib: Add non-kernel macros to i915_pciids_local.h Chaitanya Kumar Borah
` (4 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2024-01-09 6:09 UTC (permalink / raw)
To: igt-dev
perf.c uses PCI ID macros not found in kernel header i915_pciid.h.
Therefore include i915_pciid_local.h instead of i915_pciid.h so that
we can move these macros to the local file. That way we don't lose
them when i915_pciid.h is synced with kernel.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
---
lib/i915/perf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/i915/perf.c b/lib/i915/perf.c
index ddadb53b6..2006dd4ad 100644
--- a/lib/i915/perf.c
+++ b/lib/i915/perf.c
@@ -37,7 +37,7 @@
#include <i915_drm.h>
-#include "i915_pciids.h"
+#include "i915_pciids_local.h"
#include "intel_chipset.h"
#include "perf.h"
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t 2/3] lib: Add non-kernel macros to i915_pciids_local.h
2024-01-09 6:09 [PATCH i-g-t 0/3] Sync i915_pciid.h Chaitanya Kumar Borah
2024-01-09 6:09 ` [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h Chaitanya Kumar Borah
@ 2024-01-09 6:09 ` Chaitanya Kumar Borah
2024-01-09 6:09 ` [PATCH v2 i-g-t 3/3] lib: sync i915_pciids.h with kernel Chaitanya Kumar Borah
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2024-01-09 6:09 UTC (permalink / raw)
To: igt-dev
Add MTL and PVC PCI-ID macros which are not present in kernel
header to i915_pciids_local.h. This will help us sync the kernel
and IGT headers.
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
---
lib/i915_pciids_local.h | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/lib/i915_pciids_local.h b/lib/i915_pciids_local.h
index 91c26152a..1ed8364c5 100644
--- a/lib/i915_pciids_local.h
+++ b/lib/i915_pciids_local.h
@@ -7,4 +7,42 @@
#include "i915_pciids.h"
+/* MTL perf */
+#ifndef INTEL_MTL_M_IDS
+#define INTEL_MTL_M_IDS(info) \
+ INTEL_VGA_DEVICE(0x7D60, info)
+#endif
+
+#ifndef INTEL_MTL_P_GT2_IDS
+#define INTEL_MTL_P_GT2_IDS(info) \
+ INTEL_VGA_DEVICE(0x7D45, info)
+#endif
+
+#ifndef INTEL_MTL_P_GT3_IDS
+#define INTEL_MTL_P_GT3_IDS(info) \
+ INTEL_VGA_DEVICE(0x7D55, info), \
+ INTEL_VGA_DEVICE(0x7DD5, info)
+#endif
+
+#ifndef INTEL_MTL_P_IDS
+#define INTEL_MTL_P_IDS(info) \
+ INTEL_MTL_P_GT2_IDS(info), \
+ INTEL_MTL_P_GT3_IDS(info)
+#endif
+
+/* PVC */
+#ifndef INTEL_PVC_IDS
+#define INTEL_PVC_IDS(info) \
+ INTEL_VGA_DEVICE(0x0BD0, info), \
+ INTEL_VGA_DEVICE(0x0BD5, info), \
+ INTEL_VGA_DEVICE(0x0BD6, info), \
+ INTEL_VGA_DEVICE(0x0BD7, info), \
+ INTEL_VGA_DEVICE(0x0BD8, info), \
+ INTEL_VGA_DEVICE(0x0BD9, info), \
+ INTEL_VGA_DEVICE(0x0BDA, info), \
+ INTEL_VGA_DEVICE(0x0BDB, info), \
+ INTEL_VGA_DEVICE(0x0BD1, info), \
+ INTEL_VGA_DEVICE(0x0BD2, info)
+#endif
+
#endif /* _I915_PCIIDS_LOCAL_H */
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 i-g-t 3/3] lib: sync i915_pciids.h with kernel
2024-01-09 6:09 [PATCH i-g-t 0/3] Sync i915_pciid.h Chaitanya Kumar Borah
2024-01-09 6:09 ` [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h Chaitanya Kumar Borah
2024-01-09 6:09 ` [PATCH i-g-t 2/3] lib: Add non-kernel macros to i915_pciids_local.h Chaitanya Kumar Borah
@ 2024-01-09 6:09 ` Chaitanya Kumar Borah
2024-01-09 7:20 ` ✓ CI.xeBAT: success for Sync i915_pciid.h (rev2) Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kumar Borah @ 2024-01-09 6:09 UTC (permalink / raw)
To: igt-dev
This synchronizes with kernel commit
5032c607e886 ("drm/i915: ATS-M device ID update")
v2: Keep i915_pciids.h changes only (Juha-Pekka Heikkila)
Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
---
lib/i915_pciids.h | 56 +++++++++++++++++++++--------------------------
1 file changed, 25 insertions(+), 31 deletions(-)
diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
index bee58554d..fcf1849aa 100644
--- a/lib/i915_pciids.h
+++ b/lib/i915_pciids.h
@@ -588,6 +588,7 @@
INTEL_VGA_DEVICE(0x4551, info), \
INTEL_VGA_DEVICE(0x4555, info), \
INTEL_VGA_DEVICE(0x4557, info), \
+ INTEL_VGA_DEVICE(0x4570, info), \
INTEL_VGA_DEVICE(0x4571, info)
/* JSL */
@@ -641,6 +642,7 @@
INTEL_VGA_DEVICE(0x4682, info), \
INTEL_VGA_DEVICE(0x4688, info), \
INTEL_VGA_DEVICE(0x468A, info), \
+ INTEL_VGA_DEVICE(0x468B, info), \
INTEL_VGA_DEVICE(0x4690, info), \
INTEL_VGA_DEVICE(0x4692, info), \
INTEL_VGA_DEVICE(0x4693, info)
@@ -683,14 +685,22 @@
INTEL_VGA_DEVICE(0xA78A, info), \
INTEL_VGA_DEVICE(0xA78B, info)
+/* RPL-U */
+#define INTEL_RPLU_IDS(info) \
+ INTEL_VGA_DEVICE(0xA721, info), \
+ INTEL_VGA_DEVICE(0xA7A1, info), \
+ INTEL_VGA_DEVICE(0xA7A9, info), \
+ INTEL_VGA_DEVICE(0xA7AC, info), \
+ INTEL_VGA_DEVICE(0xA7AD, info)
+
/* RPL-P */
#define INTEL_RPLP_IDS(info) \
+ INTEL_RPLU_IDS(info), \
INTEL_VGA_DEVICE(0xA720, info), \
- INTEL_VGA_DEVICE(0xA721, info), \
INTEL_VGA_DEVICE(0xA7A0, info), \
- INTEL_VGA_DEVICE(0xA7A1, info), \
INTEL_VGA_DEVICE(0xA7A8, info), \
- INTEL_VGA_DEVICE(0xA7A9, info)
+ INTEL_VGA_DEVICE(0xA7AA, info), \
+ INTEL_VGA_DEVICE(0xA7AB, info)
/* DG2 */
#define INTEL_DG2_G10_IDS(info) \
@@ -705,11 +715,14 @@
INTEL_VGA_DEVICE(0x5693, info), \
INTEL_VGA_DEVICE(0x5694, info), \
INTEL_VGA_DEVICE(0x5695, info), \
- INTEL_VGA_DEVICE(0x5698, info), \
INTEL_VGA_DEVICE(0x56A5, info), \
INTEL_VGA_DEVICE(0x56A6, info), \
INTEL_VGA_DEVICE(0x56B0, info), \
- INTEL_VGA_DEVICE(0x56B1, info)
+ INTEL_VGA_DEVICE(0x56B1, info), \
+ INTEL_VGA_DEVICE(0x56BA, info), \
+ INTEL_VGA_DEVICE(0x56BB, info), \
+ INTEL_VGA_DEVICE(0x56BC, info), \
+ INTEL_VGA_DEVICE(0x56BD, info)
#define INTEL_DG2_G12_IDS(info) \
INTEL_VGA_DEVICE(0x5696, info), \
@@ -725,7 +738,8 @@
INTEL_DG2_G12_IDS(info)
#define INTEL_ATS_M150_IDS(info) \
- INTEL_VGA_DEVICE(0x56C0, info)
+ INTEL_VGA_DEVICE(0x56C0, info), \
+ INTEL_VGA_DEVICE(0x56C2, info)
#define INTEL_ATS_M75_IDS(info) \
INTEL_VGA_DEVICE(0x56C1, info)
@@ -733,34 +747,14 @@
#define INTEL_ATS_M_IDS(info) \
INTEL_ATS_M150_IDS(info), \
INTEL_ATS_M75_IDS(info)
+
/* MTL */
-#define INTEL_MTL_M_IDS(info) \
+#define INTEL_MTL_IDS(info) \
INTEL_VGA_DEVICE(0x7D40, info), \
- INTEL_VGA_DEVICE(0x7D60, info)
-#define INTEL_MTL_P_GT2_IDS(info) \
- INTEL_VGA_DEVICE(0x7D45, info)
-#define INTEL_MTL_P_GT3_IDS(info) \
+ INTEL_VGA_DEVICE(0x7D45, info), \
INTEL_VGA_DEVICE(0x7D55, info), \
+ INTEL_VGA_DEVICE(0x7D60, info), \
+ INTEL_VGA_DEVICE(0x7D67, info), \
INTEL_VGA_DEVICE(0x7DD5, info)
-#define INTEL_MTL_P_IDS(info) \
- INTEL_MTL_P_GT2_IDS(info), \
- INTEL_MTL_P_GT3_IDS(info)
-
-#define INTEL_MTL_IDS(info) \
- INTEL_MTL_M_IDS(info), \
- INTEL_MTL_P_IDS(info)
-
-/* PVC */
-#define INTEL_PVC_IDS(info) \
- INTEL_VGA_DEVICE(0x0BD0, info), \
- INTEL_VGA_DEVICE(0x0BD5, info), \
- INTEL_VGA_DEVICE(0x0BD6, info), \
- INTEL_VGA_DEVICE(0x0BD7, info), \
- INTEL_VGA_DEVICE(0x0BD8, info), \
- INTEL_VGA_DEVICE(0x0BD9, info), \
- INTEL_VGA_DEVICE(0x0BDA, info), \
- INTEL_VGA_DEVICE(0x0BDB, info), \
- INTEL_VGA_DEVICE(0x0BD1, info), \
- INTEL_VGA_DEVICE(0x0BD2, info)
#endif /* _I915_PCIIDS_H */
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for Sync i915_pciid.h (rev2)
2024-01-09 6:09 [PATCH i-g-t 0/3] Sync i915_pciid.h Chaitanya Kumar Borah
` (2 preceding siblings ...)
2024-01-09 6:09 ` [PATCH v2 i-g-t 3/3] lib: sync i915_pciids.h with kernel Chaitanya Kumar Borah
@ 2024-01-09 7:20 ` Patchwork
2024-01-09 7:23 ` ✓ Fi.CI.BAT: " Patchwork
2024-01-09 13:52 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-01-09 7:20 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3393 bytes --]
== Series Details ==
Series: Sync i915_pciid.h (rev2)
URL : https://patchwork.freedesktop.org/series/128259/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7663_BAT -> XEIGTPW_10490_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10490_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#1033])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10490/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1:
- bat-adlp-7: [FAIL][3] ([Intel XE#480]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10490/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- bat-dg2-oem2: [FAIL][5] ([Intel XE#400] / [Intel XE#616]) -> [PASS][6] +2 other tests pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10490/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@xe_prime_self_import@basic-with_one_bo:
- bat-atsm-2: [FAIL][7] ([Intel XE#999]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10490/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html
- bat-pvc-2: [FAIL][9] ([Intel XE#999]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10490/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/999
Build changes
-------------
* IGT: IGT_7663 -> IGTPW_10490
* Linux: xe-604-a3e6b7b90ce1ff725d7585cbd2c9279e6e39b914 -> xe-607-eacbcdb537a2774959d012206aba22848fdade26
IGTPW_10490: 10490
IGT_7663: b5eca7b97430309e320874594feaeaa8e770e25e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-604-a3e6b7b90ce1ff725d7585cbd2c9279e6e39b914: a3e6b7b90ce1ff725d7585cbd2c9279e6e39b914
xe-607-eacbcdb537a2774959d012206aba22848fdade26: eacbcdb537a2774959d012206aba22848fdade26
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10490/index.html
[-- Attachment #2: Type: text/html, Size: 4121 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for Sync i915_pciid.h (rev2)
2024-01-09 6:09 [PATCH i-g-t 0/3] Sync i915_pciid.h Chaitanya Kumar Borah
` (3 preceding siblings ...)
2024-01-09 7:20 ` ✓ CI.xeBAT: success for Sync i915_pciid.h (rev2) Patchwork
@ 2024-01-09 7:23 ` Patchwork
2024-01-09 13:52 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-01-09 7:23 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6873 bytes --]
== Series Details ==
Series: Sync i915_pciid.h (rev2)
URL : https://patchwork.freedesktop.org/series/128259/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14099 -> IGTPW_10490
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/index.html
Participating hosts (34 -> 34)
------------------------------
Additional (2): bat-kbl-2 bat-mtlp-8
Missing (2): bat-dg2-9 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10490 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][3] ([fdo#109271]) +36 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#6645])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#5190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#4212]) +8 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#4213]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840] / [i915#9159])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][14] ([fdo#109285])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#5274])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#8809])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#3708] / [i915#4077]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#3708]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#10022]: https://gitlab.freedesktop.org/drm/intel/issues/10022
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9943]: https://gitlab.freedesktop.org/drm/intel/issues/9943
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7663 -> IGTPW_10490
CI-20190529: 20190529
CI_DRM_14099: c93d23d8562e6cc46b325ac10b2cb54973a79bf2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10490: 10490
IGT_7663: b5eca7b97430309e320874594feaeaa8e770e25e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/index.html
[-- Attachment #2: Type: text/html, Size: 7990 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h
2024-01-09 6:09 ` [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h Chaitanya Kumar Borah
@ 2024-01-09 12:37 ` Kamil Konieczny
2024-01-10 8:26 ` Borah, Chaitanya Kumar
0 siblings, 1 reply; 9+ messages in thread
From: Kamil Konieczny @ 2024-01-09 12:37 UTC (permalink / raw)
To: igt-dev
Hi Chaitanya,
On 2024-01-09 at 11:39:41 +0530, Chaitanya Kumar Borah wrote:
> perf.c uses PCI ID macros not found in kernel header i915_pciid.h.
> Therefore include i915_pciid_local.h instead of i915_pciid.h so that
-------------------------------------- ^^^^^^^^^^
This is somewhat misleading because _local.h will include i915_pciids.h
imho s/instead of/and/
Or other way to put it:
Therefore include i915_pciid_local.h (which will include i915_pciid.h)
so that
> we can move these macros to the local file. That way we don't lose
> them when i915_pciid.h is synced with kernel.
>
> Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> Cc: Matt Roper <matthew.d.roper@intel.com>
> Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
>
> ---
> lib/i915/perf.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/i915/perf.c b/lib/i915/perf.c
> index ddadb53b6..2006dd4ad 100644
> --- a/lib/i915/perf.c
> +++ b/lib/i915/perf.c
> @@ -37,7 +37,7 @@
>
> #include <i915_drm.h>
>
> -#include "i915_pciids.h"
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Consider adding here comment like:
/* i915_pciids.h will be included by i915_pciids_local.h */
or maybe even just leave that include here.
Regards,
Kamil
> +#include "i915_pciids_local.h"
>
> #include "intel_chipset.h"
> #include "perf.h"
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for Sync i915_pciid.h (rev2)
2024-01-09 6:09 [PATCH i-g-t 0/3] Sync i915_pciid.h Chaitanya Kumar Borah
` (4 preceding siblings ...)
2024-01-09 7:23 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-01-09 13:52 ` Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-01-09 13:52 UTC (permalink / raw)
To: Borah, Chaitanya Kumar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 86197 bytes --]
== Series Details ==
Series: Sync i915_pciid.h (rev2)
URL : https://patchwork.freedesktop.org/series/128259/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14099_full -> IGTPW_10490_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10490_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10490_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10490_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@runner@aborted:
- shard-glk: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk1/igt@runner@aborted.html
Known issues
------------
Here are the changes found in IGTPW_10490_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][4] ([i915#7701])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-7/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#7701])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#7701])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#7701])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][8] ([i915#7742])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +11 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@drm_fdinfo@virtual-busy.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#3281]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-12/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#6335])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][17] -> [FAIL][18] ([i915#6268])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1099])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-6/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-dg2: [PASS][24] -> [ABORT][25] ([i915#7975] / [i915#8213])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg2-11/igt@gem_eio@hibernate.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-4/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4036])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@many-4k-zero:
- shard-glk: NOTRUN -> [FAIL][29] ([i915#9606])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk6/igt@gem_exec_capture@many-4k-zero.html
- shard-rkl: NOTRUN -> [FAIL][30] ([i915#9606])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-flow:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [PASS][32] -> [FAIL][33] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-19/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-tglu: NOTRUN -> [SKIP][35] ([fdo#109283])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-9/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][36] ([fdo#112283])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +8 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-16/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-7/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@gem_lmem_swapping@verify.html
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-7/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#4613]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#284])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-7/igt@gem_media_vme.html
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#284])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@gem_media_vme.html
* igt@gem_mmap@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4083]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +9 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-16/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: NOTRUN -> [SKIP][54] ([fdo#111656])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@gem_pwrite@basic-random.html
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4270])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3282]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-to-vebox-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190]) +13 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][65] ([fdo#110542])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][67] ([i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#3323])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk6/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3323])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297] / [i915#4958])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html
* igt@gen7_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][72] ([fdo#109289]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#2856]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-4/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4881])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@i915_fb_tiling.html
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4881])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#6227])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#6227])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@i915_module_load@load.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg1: NOTRUN -> [SKIP][81] ([fdo#109293] / [fdo#109506])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-19/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#8925])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: NOTRUN -> [FAIL][83] ([i915#8346])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@i915_pm_rps@waitboost.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][84] ([fdo#109303])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-dg1: NOTRUN -> [SKIP][85] ([fdo#109302])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-17/igt@i915_query@query-topology-unsupported.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#5723])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-glk: NOTRUN -> [DMESG-WARN][87] ([i915#9311])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk7/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4212])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4212])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#8709]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#8709]) +7 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#8709]) +11 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][93] ([i915#8247]) +3 other tests fail
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#6228])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5286])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-13/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#5286]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][97] ([fdo#111615] / [i915#5286]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][98] -> [FAIL][99] ([i915#5138])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][100] ([fdo#111614] / [i915#3638]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111614]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-9/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][102] ([fdo#111614]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][103] ([fdo#111614]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][104] -> [FAIL][105] ([i915#3743])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][106] ([fdo#111615]) +7 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][107] ([fdo#111615]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][108] ([fdo#110723]) +4 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5190]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@pipe-b-bad-aux-stride-4-tiled-mtl-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#5354] / [i915#6095]) +23 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-9/igt@kms_ccs@pipe-b-bad-aux-stride-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#5354]) +79 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#5354] / [i915#6095]) +22 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@pipe-c-random-ccs-data-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#5354] / [i915#6095]) +21 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_ccs@pipe-c-random-ccs-data-y-tiled-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#5354]) +24 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@kms_ccs@pipe-d-ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#5354] / [i915#6095]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-19/igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#3742])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#7213] / [i915#9010]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4087] / [i915#7213]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#7213])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-rkl: NOTRUN -> [SKIP][120] ([fdo#111827]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111827]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111827]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-7/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][123] ([fdo#111827]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-7/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#7828]) +8 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#7828]) +6 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#7828])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-19/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#7828]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#7828]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#7118])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#6944] / [i915#9424])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@lic:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#7118])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@kms_content_protection@lic.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#8814])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3359]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#3555]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#8814]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#3555]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#3359])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][138] ([fdo#111767])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#4213])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4103] / [i915#4213])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#4103]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#4103])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-tglu: NOTRUN -> [SKIP][143] ([fdo#109274]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274] / [i915#5354]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#9809]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [fdo#111767] / [i915#5354])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-rkl: NOTRUN -> [SKIP][147] ([fdo#111767] / [fdo#111825])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#9067])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#9723])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#8588])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#8588])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#8812])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#8812])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3840] / [i915#9688])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3840])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#1839])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#1839])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#1839])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#658])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#658])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3637]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][162] ([fdo#109274] / [fdo#111767])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#8381]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109274]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
- shard-tglu: NOTRUN -> [SKIP][165] ([fdo#109274] / [i915#3637])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-dg1: NOTRUN -> [SKIP][166] ([fdo#111825] / [i915#9934]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-13/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8381]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-8/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#2672]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2672]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#2672]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-snb: NOTRUN -> [SKIP][172] ([fdo#109271]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-snb4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-snb: [PASS][173] -> [SKIP][174] ([fdo#109271]) +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111825]) +13 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8708]) +4 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#8708]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#1825]) +21 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825] / [i915#1825]) +28 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][180] ([fdo#109271]) +237 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3458]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3458]) +16 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3023]) +15 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][184] ([fdo#110189]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][185] ([fdo#109280]) +12 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][186] ([fdo#111825]) +5 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#8708]) +13 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-rkl: [PASS][188] -> [SKIP][189] ([i915#433])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-4/igt@kms_hdmi_inject@inject-audio.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][192] ([fdo#109289])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
- shard-dg2: NOTRUN -> [SKIP][193] ([fdo#109289]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
- shard-tglu: NOTRUN -> [SKIP][194] ([fdo#109289])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-9/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][195] ([i915#4573]) +1 other test fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3555]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-10/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3582]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-7/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#9423]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#5176]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#9423]) +7 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#9423]) +23 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#9423]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#5176] / [i915#9423]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#5235]) +7 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#5235]) +11 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#5235]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#5235] / [i915#9423]) +15 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#5235]) +9 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#5235]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#8430])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#8430])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#9519]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [PASS][213] -> [SKIP][214] ([i915#9519])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][215] -> [SKIP][216] ([i915#9519])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#9519])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#9519])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#9519])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-rkl: NOTRUN -> [SKIP][220] ([fdo#109293] / [fdo#109506])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
- shard-tglu: NOTRUN -> [SKIP][221] ([fdo#109293] / [fdo#109506])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][222] ([fdo#109293])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-4/igt@kms_pm_rpm@pc8-residency.html
- shard-dg2: NOTRUN -> [SKIP][223] ([fdo#109293] / [fdo#109506])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-6/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#6524])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_prime@d3hot.html
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#6524] / [i915#6805])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][226] ([fdo#111068] / [i915#9683])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][227] ([fdo#111068] / [i915#9683])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-3/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][228] ([fdo#111068] / [i915#9683])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-19/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#9683])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#4348])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#9683]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#9685]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9685])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#5289])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][235] ([fdo#111615] / [i915#5289])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#4235]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#4235]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#3555])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-13/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][239] -> [FAIL][240] ([IGT#2])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#8623])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2: NOTRUN -> [SKIP][242] ([fdo#109309])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-1/igt@kms_tv_load_detect@load-detect.html
- shard-rkl: NOTRUN -> [SKIP][243] ([fdo#109309])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-4/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [PASS][244] -> [FAIL][245] ([i915#9196]) +1 other test fail
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#9906])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8808])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-7/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#2437] / [i915#9412])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#2437])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2437])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-4/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#2435])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#8440])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#3291] / [i915#3708])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][254] ([fdo#109295] / [i915#3291] / [i915#3708])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#3708] / [i915#4077])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-12/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-tglu: NOTRUN -> [SKIP][256] ([fdo#109295])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-2/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: NOTRUN -> [SKIP][257] ([fdo#109295] / [i915#3708])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9917])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@sriov_basic@bind-unbind-vf.html
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#9917])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
* igt@v3d/v3d_submit_cl@bad-flag:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#2575]) +7 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-4/igt@v3d/v3d_submit_cl@bad-flag.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#2575]) +12 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#2575]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-16/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-rkl: NOTRUN -> [SKIP][263] ([fdo#109315]) +9 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-6/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@v3d/v3d_wait_bo@unused-bo-1ns:
- shard-tglu: NOTRUN -> [SKIP][264] ([fdo#109315] / [i915#2575]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-9/igt@v3d/v3d_wait_bo@unused-bo-1ns.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#7711]) +6 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#7711]) +6 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-5/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_tiling@get-bad-flags:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#7711]) +8 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@vc4/vc4_tiling@get-bad-flags.html
* igt@vc4/vc4_wait_bo@unused-bo-1ns:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#7711])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-16/igt@vc4/vc4_wait_bo@unused-bo-1ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#2575]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-10/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@fbdev@pan:
- shard-snb: [FAIL][270] ([i915#4435]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-snb7/igt@fbdev@pan.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-snb1/igt@fbdev@pan.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][272] ([i915#7297]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][274] ([i915#6268]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [FAIL][276] ([i915#2842]) -> [PASS][277] +1 other test pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-7/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][278] ([i915#2842]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][280] ([i915#2842]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-4/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][282] ([i915#4936] / [i915#5493]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [DMESG-WARN][284] ([i915#4936] / [i915#5493]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [INCOMPLETE][286] ([i915#5566]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-glk9/igt@gen9_exec_parse@allowed-single.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk8/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][288] ([i915#9200]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: [INCOMPLETE][290] ([i915#9200] / [i915#9849]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][292] ([i915#5138]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][294] ([i915#3743]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1:
- shard-tglu: [ABORT][296] -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-9/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][298] ([fdo#109271]) -> [PASS][299] +11 other tests pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg2: [FAIL][300] ([i915#6880]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][302] ([i915#9295]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [SKIP][304] ([i915#9519]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][306] ([i915#9519]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [FAIL][308] ([i915#5465]) -> [PASS][309] +1 other test pass
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][310] ([i915#9196]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][312] ([i915#4349]) -> [PASS][313] +1 other test pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg1: [FAIL][314] ([i915#9593]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-dg1-17/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [INCOMPLETE][316] ([i915#9849]) -> [INCOMPLETE][317] ([i915#9820] / [i915#9849])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: [FAIL][318] ([i915#8247]) -> [DMESG-FAIL][319] ([i915#8561]) +1 other test dmesg-fail
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-mtlp-3/igt@kms_async_flips@crc@pipe-b-edp-1.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-mtlp-1/igt@kms_async_flips@crc@pipe-b-edp-1.html
* igt@kms_content_protection@mei-interface:
- shard-snb: [INCOMPLETE][320] ([i915#9878]) -> [SKIP][321] ([fdo#109271])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-snb7/igt@kms_content_protection@mei-interface.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-snb2/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][322] ([i915#3955]) -> [SKIP][323] ([fdo#110189] / [i915#3955])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [SKIP][324] ([i915#3361]) -> [FAIL][325] ([i915#9295])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14099/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430
[i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9593]: https://gitlab.freedesktop.org/drm/intel/issues/9593
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7663 -> IGTPW_10490
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14099: c93d23d8562e6cc46b325ac10b2cb54973a79bf2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10490: 10490
IGT_7663: b5eca7b97430309e320874594feaeaa8e770e25e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10490/index.html
[-- Attachment #2: Type: text/html, Size: 105381 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h
2024-01-09 12:37 ` Kamil Konieczny
@ 2024-01-10 8:26 ` Borah, Chaitanya Kumar
0 siblings, 0 replies; 9+ messages in thread
From: Borah, Chaitanya Kumar @ 2024-01-10 8:26 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
Hello Kamil,
> -----Original Message-----
> From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Sent: Tuesday, January 9, 2024 6:07 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Borah, Chaitanya Kumar <chaitanya.kumar.borah@intel.com>;
> juhapekka.heikkila@gmail.com; Landwerlin, Lionel G
> <lionel.g.landwerlin@intel.com>; Vishwanathapura, Niranjana
> <niranjana.vishwanathapura@intel.com>; Roper, Matthew D
> <matthew.d.roper@intel.com>
> Subject: Re: [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h
>
> Hi Chaitanya,
> On 2024-01-09 at 11:39:41 +0530, Chaitanya Kumar Borah wrote:
> > perf.c uses PCI ID macros not found in kernel header i915_pciid.h.
> > Therefore include i915_pciid_local.h instead of i915_pciid.h so that
> -------------------------------------- ^^^^^^^^^^ This is somewhat misleading
> because _local.h will include i915_pciids.h imho s/instead of/and/
>
> Or other way to put it:
>
> Therefore include i915_pciid_local.h (which will include i915_pciid.h) so that
>
> > we can move these macros to the local file. That way we don't lose
> > them when i915_pciid.h is synced with kernel.
> >
> > Signed-off-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com>
> > Cc: Matt Roper <matthew.d.roper@intel.com>
> > Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> > Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
> >
> > ---
> > lib/i915/perf.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/lib/i915/perf.c b/lib/i915/perf.c index
> > ddadb53b6..2006dd4ad 100644
> > --- a/lib/i915/perf.c
> > +++ b/lib/i915/perf.c
> > @@ -37,7 +37,7 @@
> >
> > #include <i915_drm.h>
> >
> > -#include "i915_pciids.h"
> ^^^^^^^^^^^^^^^^^^^^^^^^^^^
> Consider adding here comment like:
> /* i915_pciids.h will be included by i915_pciids_local.h */
>
> or maybe even just leave that include here.
>
I decided to go with this as there is already a precedence in lib/intel_device_info.c
Thank you for your feedback. A new version is available now.
Regards
Chaitanya
> Regards,
> Kamil
>
> > +#include "i915_pciids_local.h"
> >
> > #include "intel_chipset.h"
> > #include "perf.h"
> > --
> > 2.25.1
> >
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-01-10 8:26 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-09 6:09 [PATCH i-g-t 0/3] Sync i915_pciid.h Chaitanya Kumar Borah
2024-01-09 6:09 ` [PATCH i-g-t 1/3] lib/i915/perf: include i915_pciid_local.h Chaitanya Kumar Borah
2024-01-09 12:37 ` Kamil Konieczny
2024-01-10 8:26 ` Borah, Chaitanya Kumar
2024-01-09 6:09 ` [PATCH i-g-t 2/3] lib: Add non-kernel macros to i915_pciids_local.h Chaitanya Kumar Borah
2024-01-09 6:09 ` [PATCH v2 i-g-t 3/3] lib: sync i915_pciids.h with kernel Chaitanya Kumar Borah
2024-01-09 7:20 ` ✓ CI.xeBAT: success for Sync i915_pciid.h (rev2) Patchwork
2024-01-09 7:23 ` ✓ Fi.CI.BAT: " Patchwork
2024-01-09 13:52 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox