* [CI 1/2] Revert "drm/i915/gt: Do not generate the command streamer for all the CCS"
2024-04-22 16:27 [CI 0/2] Force CCS mode to the maximum Andi Shyti
@ 2024-04-22 16:27 ` Andi Shyti
2024-04-22 16:27 ` [CI 2/2] drm/i915/gt: Force ccs_mode 4 Andi Shyti
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Andi Shyti @ 2024-04-22 16:27 UTC (permalink / raw)
To: intel-gfx, dri-devel; +Cc: Joonas Lahtinen, Andi Shyti
This reverts commit ea315f98e5d6d3191b74beb0c3e5fc16081d517c.
---
drivers/gpu/drm/i915/gt/intel_engine_cs.c | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
index 8c44af1c3451..476651bd0a21 100644
--- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c
+++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c
@@ -874,23 +874,6 @@ static intel_engine_mask_t init_engine_mask(struct intel_gt *gt)
info->engine_mask &= ~BIT(GSC0);
}
- /*
- * Do not create the command streamer for CCS slices beyond the first.
- * All the workload submitted to the first engine will be shared among
- * all the slices.
- *
- * Once the user will be allowed to customize the CCS mode, then this
- * check needs to be removed.
- */
- if (IS_DG2(gt->i915)) {
- u8 first_ccs = __ffs(CCS_MASK(gt));
-
- /* Mask off all the CCS engine */
- info->engine_mask &= ~GENMASK(CCS3, CCS0);
- /* Put back in the first CCS engine */
- info->engine_mask |= BIT(_CCS(first_ccs));
- }
-
return info->engine_mask;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [CI 2/2] drm/i915/gt: Force ccs_mode 4
2024-04-22 16:27 [CI 0/2] Force CCS mode to the maximum Andi Shyti
2024-04-22 16:27 ` [CI 1/2] Revert "drm/i915/gt: Do not generate the command streamer for all the CCS" Andi Shyti
@ 2024-04-22 16:27 ` Andi Shyti
2024-04-22 17:20 ` ✗ Fi.CI.CHECKPATCH: warning for Force CCS mode to the maximum Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Andi Shyti @ 2024-04-22 16:27 UTC (permalink / raw)
To: intel-gfx, dri-devel; +Cc: Joonas Lahtinen, Andi Shyti
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.c b/drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.c
index 044219c5960a..d0f181a8e73e 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.c
@@ -10,29 +10,33 @@
void intel_gt_apply_ccs_mode(struct intel_gt *gt)
{
+ unsigned long ccs_mask = CCS_MASK(gt);
int cslice;
u32 mode = 0;
- int first_ccs = __ffs(CCS_MASK(gt));
+ int first_ccs = __ffs(ccs_mask);
if (!IS_DG2(gt->i915))
return;
/* Build the value for the fixed CCS load balancing */
for (cslice = 0; cslice < I915_MAX_CCS; cslice++) {
- if (CCS_MASK(gt) & BIT(cslice))
+ if (CCS_MASK(gt) & BIT(cslice)) {
/*
* If available, assign the cslice
* to the first available engine...
*/
mode |= XEHP_CCS_MODE_CSLICE(cslice, first_ccs);
-
- else
+ first_ccs = find_next_bit(&ccs_mask,
+ I915_MAX_CCS,
+ first_ccs + 1);
+ } else {
/*
* ... otherwise, mark the cslice as
* unavailable if no CCS dispatches here
*/
mode |= XEHP_CCS_MODE_CSLICE(cslice,
XEHP_CCS_MODE_CSLICE_MASK);
+ }
}
intel_uncore_write(gt->uncore, XEHP_CCS_MODE, mode);
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✗ Fi.CI.CHECKPATCH: warning for Force CCS mode to the maximum
2024-04-22 16:27 [CI 0/2] Force CCS mode to the maximum Andi Shyti
2024-04-22 16:27 ` [CI 1/2] Revert "drm/i915/gt: Do not generate the command streamer for all the CCS" Andi Shyti
2024-04-22 16:27 ` [CI 2/2] drm/i915/gt: Force ccs_mode 4 Andi Shyti
@ 2024-04-22 17:20 ` Patchwork
2024-04-22 17:20 ` ✗ Fi.CI.SPARSE: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-04-22 17:20 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
== Series Details ==
Series: Force CCS mode to the maximum
URL : https://patchwork.freedesktop.org/series/132721/
State : warning
== Summary ==
Error: dim checkpatch failed
1f3baf11fbf6 Revert "drm/i915/gt: Do not generate the command streamer for all the CCS"
-:10: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
-:36: ERROR:MISSING_SIGN_OFF: Missing Signed-off-by: line(s)
total: 1 errors, 1 warnings, 0 checks, 23 lines checked
1a3548b4d3d2 drm/i915/gt: Force ccs_mode 4
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
total: 0 errors, 1 warnings, 0 checks, 37 lines checked
^ permalink raw reply [flat|nested] 7+ messages in thread* ✗ Fi.CI.SPARSE: warning for Force CCS mode to the maximum
2024-04-22 16:27 [CI 0/2] Force CCS mode to the maximum Andi Shyti
` (2 preceding siblings ...)
2024-04-22 17:20 ` ✗ Fi.CI.CHECKPATCH: warning for Force CCS mode to the maximum Patchwork
@ 2024-04-22 17:20 ` Patchwork
2024-04-22 17:28 ` ✓ Fi.CI.BAT: success " Patchwork
2024-04-23 9:08 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-04-22 17:20 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
== Series Details ==
Series: Force CCS mode to the maximum
URL : https://patchwork.freedesktop.org/series/132721/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./drivers/gpu/drm/i915/intel_uncore.h:346:1: warning: trying to copy expression type 31
+./drivers/gpu/drm/i915/intel_uncore.h:351:1: warning: trying to copy expression type 31
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
^ permalink raw reply [flat|nested] 7+ messages in thread* ✓ Fi.CI.BAT: success for Force CCS mode to the maximum
2024-04-22 16:27 [CI 0/2] Force CCS mode to the maximum Andi Shyti
` (3 preceding siblings ...)
2024-04-22 17:20 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-04-22 17:28 ` Patchwork
2024-04-23 9:08 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-04-22 17:28 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8258 bytes --]
== Series Details ==
Series: Force CCS mode to the maximum
URL : https://patchwork.freedesktop.org/series/132721/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14626 -> Patchwork_132721v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/index.html
Participating hosts (35 -> 34)
------------------------------
Additional (3): fi-cfl-8109u bat-jsl-1 fi-elk-e7500
Missing (4): fi-kbl-7567u fi-bsw-n3050 bat-mtlp-6 bat-arls-3
Known issues
------------
Here are the changes found in Patchwork_132721v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-cfl-8109u: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@verify-random:
- fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html
- bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html
* igt@i915_selftest@live@active:
- fi-cfl-guc: [PASS][6] -> [DMESG-FAIL][7] ([i915#10606])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-cfl-guc/igt@i915_selftest@live@active.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-cfl-guc/igt@i915_selftest@live@active.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-1: NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9886])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-1: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- fi-cfl-8109u: NOTRUN -> [SKIP][11] +11 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-elk-e7500: NOTRUN -> [SKIP][12] +24 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-elk-e7500/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-jsl-1: NOTRUN -> [SKIP][13] ([i915#3555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@i915_module_load@load:
- fi-apl-guc: [DMESG-WARN][14] ([i915#10875] / [i915#180] / [i915#8585]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-apl-guc/igt@i915_module_load@load.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-apl-guc/igt@i915_module_load@load.html
* igt@i915_module_load@reload:
- fi-apl-guc: [DMESG-WARN][16] ([i915#10636] / [i915#180] / [i915#1982] / [i915#8585]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-apl-guc/igt@i915_module_load@reload.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-apl-guc/igt@i915_module_load@reload.html
* igt@i915_selftest@live@reset:
- fi-apl-guc: [DMESG-WARN][18] ([i915#10636]) -> [PASS][19] +36 other tests pass
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-apl-guc/igt@i915_selftest@live@reset.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-apl-guc/igt@i915_selftest@live@reset.html
* igt@kms_addfb_basic@addfb25-4-tiled:
- fi-apl-guc: [DMESG-WARN][20] -> [PASS][21] +41 other tests pass
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-apl-guc/igt@kms_addfb_basic@addfb25-4-tiled.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-apl-guc/igt@kms_addfb_basic@addfb25-4-tiled.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp1:
- fi-apl-guc: [DMESG-WARN][22] ([i915#10875] / [i915#180]) -> [PASS][23] +4 other tests pass
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-apl-guc/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-apl-guc/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
- fi-apl-guc: [DMESG-WARN][24] ([i915#180] / [i915#1982]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-apl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-apl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-1:
- fi-apl-guc: [DMESG-WARN][26] ([i915#180]) -> [PASS][27] +22 other tests pass
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-apl-guc/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-1.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-apl-guc/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-1.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1:
- fi-apl-guc: [DMESG-WARN][28] ([i915#180] / [i915#8585]) -> [PASS][29] +7 other tests pass
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/fi-apl-guc/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/fi-apl-guc/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10435]: https://gitlab.freedesktop.org/drm/intel/issues/10435
[i915#10606]: https://gitlab.freedesktop.org/drm/intel/issues/10606
[i915#10636]: https://gitlab.freedesktop.org/drm/intel/issues/10636
[i915#10875]: https://gitlab.freedesktop.org/drm/intel/issues/10875
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
[i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
Build changes
-------------
* Linux: CI_DRM_14626 -> Patchwork_132721v1
CI-20190529: 20190529
CI_DRM_14626: a53d157b0bd321e30804e935e010d77fc575b033 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7815: d5d516bfdf77898e934b4c7ed947a43711cfb226 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_132721v1: a53d157b0bd321e30804e935e010d77fc575b033 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/index.html
[-- Attachment #2: Type: text/html, Size: 10053 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* ✗ Fi.CI.IGT: failure for Force CCS mode to the maximum
2024-04-22 16:27 [CI 0/2] Force CCS mode to the maximum Andi Shyti
` (4 preceding siblings ...)
2024-04-22 17:28 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-04-23 9:08 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-04-23 9:08 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 83260 bytes --]
== Series Details ==
Series: Force CCS mode to the maximum
URL : https://patchwork.freedesktop.org/series/132721/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14626_full -> Patchwork_132721v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_132721v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_132721v1_full, please notify your bug team ('I915-ci-infra@lists.freedesktop.org') to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_132721v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_gttfill@engines@ccs0:
- shard-dg2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-10/igt@gem_exec_gttfill@engines@ccs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_exec_gttfill@engines@ccs0.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible@bc-hdmi-a1-hdmi-a2.html
Known issues
------------
Here are the changes found in Patchwork_132721v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_fdinfo@busy-idle-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +12 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-1/igt@drm_fdinfo@busy-idle-check-all@ccs3.html
* igt@drm_fdinfo@busy-idle@vcs1:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +5 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@drm_fdinfo@busy-idle@vcs1.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +11 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@drm_fdinfo@isolation@rcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs1:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#5882]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs1.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-dg2: NOTRUN -> [INCOMPLETE][20] ([i915#10513])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: NOTRUN -> [FAIL][21] ([i915#5784])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@hog:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg1: NOTRUN -> [FAIL][24] ([i915#9606])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@gem_exec_capture@many-4k-zero.html
- shard-rkl: NOTRUN -> [FAIL][25] ([i915#9606])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-tglu: NOTRUN -> [FAIL][26] ([i915#2842])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][27] ([i915#2842]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [PASS][28] -> [FAIL][29] ([i915#2842]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-rkl-4/igt@gem_exec_fair@basic-none@vecs0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-5/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: NOTRUN -> [FAIL][30] ([i915#2842])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [PASS][32] -> [FAIL][33] ([i915#2842]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-tglu-4/igt@gem_exec_fair@basic-pace@rcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@gem_exec_fair@basic-sync.html
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +5 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +6 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-active:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-active.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +8 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][47] ([i915#10378])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg1: NOTRUN -> [FAIL][48] ([i915#10378])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
- shard-dg2: [PASS][49] -> [FAIL][50] ([i915#10378]) +1 other test fail
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][53] -> [TIMEOUT][54] ([i915#5493])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +14 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +5 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@gem_pread@bench.html
* igt@gem_pxp@create-regular-context-1:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@gem_render_tiled_blits@basic.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][74] +8 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#2856]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][79] -> [INCOMPLETE][80] ([i915#9820] / [i915#9849])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][81] -> [ABORT][82] ([i915#10131] / [i915#9697])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#7091])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#8399]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#8925])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#8925])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4387])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8437])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#6245])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock@memory_region:
- shard-dg1: NOTRUN -> [DMESG-WARN][90] ([i915#9311])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4212]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#8709]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#6228])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#1769] / [i915#3555])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#5286]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#5286]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#5286])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5286]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/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-hflip:
- shard-mtlp: [PASS][99] -> [DMESG-FAIL][100] ([i915#2017])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][101] +21 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#3638]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [DMESG-WARN][103] ([i915#4423])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5190]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][105] -> [FAIL][106] ([i915#3743]) +3 other tests fail
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#4538]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_joiner@basic:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#10656])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_big_joiner@basic.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#6095]) +49 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#10278]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#6095]) +15 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#10307] / [i915#6095]) +136 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#6095]) +15 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#10434] / [i915#6095]) +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#6095]) +43 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-snb: NOTRUN -> [SKIP][116] +30 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-snb2/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#7213]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3742])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#7828]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#7828])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#7828]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#7828]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#7828]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#7116] / [i915#9424])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3116])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#3299])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#3116] / [i915#3299])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3299])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#3299])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#9424]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#7118] / [i915#9424]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#8814])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#3359])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#3359]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#3359])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3359]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3555]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#9809])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#4103]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4103] / [i915#4213])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#4213])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#4103] / [i915#4213])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#9227])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#3804])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#8812])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#3840])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3840] / [i915#9688])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#3840])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#4854])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#1839])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#1839]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#658])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4881])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][155] -> [FAIL][156] ([i915#2122]) +1 other test fail
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][157] +28 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3637]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#9934]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][160] +10 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3637]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][162] ([i915#79])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#2587] / [i915#2672]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#2672]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#2672]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#8708]) +11 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#1825]) +20 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#5354]) +11 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][171] +48 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [PASS][172] -> [SKIP][173] +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#8708]) +14 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#5439])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#3458]) +19 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3023]) +18 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#10070])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#10070])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][180] +128 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-glk7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3458]) +7 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#1825]) +15 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#8708]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8228])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8228])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8228]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8228])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-4/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_plane@pixel-format@pipe-b:
- shard-mtlp: [PASS][189] -> [ABORT][190] ([i915#10608] / [i915#10650])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-mtlp-6/igt@kms_plane@pixel-format@pipe-b.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-2/igt@kms_plane@pixel-format@pipe-b.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#5354] / [i915#9423])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#9423]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#9423]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#9423]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#5176]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#5176] / [i915#9423]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#9423]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#5235]) +5 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#5235]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/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-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#5235]) +6 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#5235] / [i915#9423]) +11 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#5235]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#5235])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#9293])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#9340])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#8430])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#9519]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#9519])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [PASS][209] -> [FAIL][210] ([i915#8717])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-6/igt@kms_pm_rpm@i2c.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#9519])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][212] -> [SKIP][213] ([i915#9519]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][214] -> [SKIP][215] ([i915#9519]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#4348])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#9683])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#1072] / [i915#9732]) +8 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_psr@fbc-psr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#9688]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#1072] / [i915#9732]) +15 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-basic:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#9732]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@kms_psr@pr-basic.html
* igt@kms_psr@psr2-suspend:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#1072] / [i915#9732]) +18 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#4235])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#5289])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#5289])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][227] ([IGT#2] / [i915#6493])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
- shard-dg1: [PASS][228] -> [FAIL][229] ([i915#9196])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8808])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-4/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#9906]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#9906]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#2437])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#2437] / [i915#9412])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-13/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#2437] / [i915#9412])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2437] / [i915#9412])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][237] ([i915#2437])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-glk8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#2436])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#2434])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@perf@mi-rpc.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#2434])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@perf@mi-rpc.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#8850])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@perf_pmu@cpu-hotplug.html
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#8850])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@enable-race@vcs1:
- shard-dg2: [PASS][243] -> [INCOMPLETE][244] ([i915#9853])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-11/igt@perf_pmu@enable-race@vcs1.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-4/igt@perf_pmu@enable-race@vcs1.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#3708] / [i915#4077])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-17/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3708])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#3708])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#9917])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#9917]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@v3d/v3d_get_bo_offset@get-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#2575]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@v3d/v3d_get_bo_offset@get-bad-handle.html
* igt@v3d/v3d_submit_cl@bad-extension:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#2575]) +9 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-16/igt@v3d/v3d_submit_cl@bad-extension.html
* igt@v3d/v3d_submit_csd@bad-pad:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#2575]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-8/igt@v3d/v3d_submit_csd@bad-pad.html
* igt@v3d/v3d_wait_bo@map-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#2575]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@v3d/v3d_wait_bo@map-bo-0ns.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#7711]) +8 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-14/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#7711]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-mtlp-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_tiling@set-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#7711]) +5 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-2/igt@vc4/vc4_tiling@set-bad-handle.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#7711]) +4 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@vc4/vc4_tiling@set-get.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][258] ([i915#7742]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][260] ([i915#6268]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][262] ([i915#2842]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
- shard-tglu: [FAIL][264] ([i915#2842]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-tglu-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][266] ([i915#7790]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-snb2/igt@i915_pm_rps@reset.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-snb2/igt@i915_pm_rps@reset.html
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-dg1: [INCOMPLETE][268] -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-0.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg1-15/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-tglu: [FAIL][270] ([i915#4767]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-tglu-6/igt@kms_fbcon_fbt@fbc-suspend.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][272] ([i915#79]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [FAIL][274] ([i915#6880]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: [SKIP][276] -> [PASS][277] +3 other tests pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][278] ([i915#9519]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][280] ([i915#9196]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][282] ([i915#9846]) -> [INCOMPLETE][283] ([i915#9364])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg2: [FAIL][284] ([i915#10446]) -> [FAIL][285] ([i915#10378])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-3/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [WARN][286] ([i915#10852] / [i915#7356]) -> [INCOMPLETE][287] ([i915#9820] / [i915#9849])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@content-type-change:
- shard-snb: [SKIP][288] -> [INCOMPLETE][289] ([i915#8816])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-snb2/igt@kms_content_protection@content-type-change.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-snb7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@mei-interface:
- shard-snb: [SKIP][290] -> [INCOMPLETE][291] ([i915#9878])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-snb2/igt@kms_content_protection@mei-interface.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-snb7/igt@kms_content_protection@mei-interface.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [SKIP][292] ([i915#10433] / [i915#3458]) -> [SKIP][293] ([i915#3458]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][294] ([i915#3458]) -> [SKIP][295] ([i915#10433] / [i915#3458]) +4 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][296] ([i915#3361]) -> [SKIP][297] ([i915#4281])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-pr-suspend:
- shard-dg2: [SKIP][298] ([i915#1072] / [i915#9732]) -> [SKIP][299] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-8/igt@kms_psr@fbc-pr-suspend.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][300] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][301] ([i915#1072] / [i915#9732]) +9 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-4/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][302] ([i915#9100]) -> [FAIL][303] ([i915#7484])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14626/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/intel/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#10446]: https://gitlab.freedesktop.org/drm/intel/issues/10446
[i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513
[i915#10608]: https://gitlab.freedesktop.org/drm/intel/issues/10608
[i915#10650]: https://gitlab.freedesktop.org/drm/intel/issues/10650
[i915#10656]: https://gitlab.freedesktop.org/drm/intel/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#10852]: https://gitlab.freedesktop.org/drm/intel/issues/10852
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[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#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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[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#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[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#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[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#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[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#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[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#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#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[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
-------------
* Linux: CI_DRM_14626 -> Patchwork_132721v1
CI-20190529: 20190529
CI_DRM_14626: a53d157b0bd321e30804e935e010d77fc575b033 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7815: d5d516bfdf77898e934b4c7ed947a43711cfb226 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_132721v1: a53d157b0bd321e30804e935e010d77fc575b033 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_132721v1/index.html
[-- Attachment #2: Type: text/html, Size: 101000 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread