* [PATCH v1 0/2] drm/xe: ensure fbc cfb size to be page size aligned
@ 2024-01-10 11:00 Vinod Govindapillai
2024-01-10 11:00 ` [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc Vinod Govindapillai
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Vinod Govindapillai @ 2024-01-10 11:00 UTC (permalink / raw)
To: intel-gfx; +Cc: ville.syrjala
DRM gem object handling expet the object size to be page size
aligned. Neither the driver or xe stolen memory handlers do that
causing BUG_ON being triggered in some cases.
Vinod Govindapillai (2):
drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
drm/xe: Modify the cfb size to be page size aligned for FBC
drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++++--
drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h | 3 +++
2 files changed, 7 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
2024-01-10 11:00 [PATCH v1 0/2] drm/xe: ensure fbc cfb size to be page size aligned Vinod Govindapillai
@ 2024-01-10 11:00 ` Vinod Govindapillai
2024-01-11 13:44 ` Ville Syrjälä
2024-01-10 11:00 ` [PATCH v1 2/2] drm/xe: Modify the cfb size to be page size aligned for FBC Vinod Govindapillai
` (3 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Vinod Govindapillai @ 2024-01-10 11:00 UTC (permalink / raw)
To: intel-gfx; +Cc: ville.syrjala
FBC compressed frame buffer size need to be PAGE_SIZE aligned
and the corresponding the drm_gem functions check the object
size alignment using PAGE_SIZE macro. Use the PAGE_SIZE macro
in the cfb alloc as well instead of the magic number.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index f17a1afb4929..9b9c8715d664 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -764,13 +764,15 @@ static int find_compression_limit(struct intel_fbc *fbc,
/* Try to over-allocate to reduce reallocations and fragmentation. */
ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
- size <<= 1, 4096, 0, end);
+ size <<= 1, PAGE_SIZE, 0,
+ end);
if (ret == 0)
return limit;
for (; limit <= intel_fbc_max_limit(i915); limit <<= 1) {
ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
- size >>= 1, 4096, 0, end);
+ size >>= 1, PAGE_SIZE, 0,
+ end);
if (ret == 0)
return limit;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH v1 2/2] drm/xe: Modify the cfb size to be page size aligned for FBC
2024-01-10 11:00 [PATCH v1 0/2] drm/xe: ensure fbc cfb size to be page size aligned Vinod Govindapillai
2024-01-10 11:00 ` [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc Vinod Govindapillai
@ 2024-01-10 11:00 ` Vinod Govindapillai
2024-01-12 8:56 ` Jani Nikula
2024-01-10 15:11 ` ✗ Fi.CI.SPARSE: warning for drm/xe: ensure fbc cfb size to be page size aligned Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Vinod Govindapillai @ 2024-01-10 11:00 UTC (permalink / raw)
To: intel-gfx; +Cc: ville.syrjala
drm_gem_private_object_init expect the object size be page size
aligned. The xe_bo create functions do not update the size for
any alignment requirements. So align cfb size to be page size
aligned in xe stolen memory handling.
Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
---
| 3 +++
1 file changed, 3 insertions(+)
--git a/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
index 888e7a87a925..bd233007c1b7 100644
--- a/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
+++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
@@ -19,6 +19,9 @@ static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
int err;
u32 flags = XE_BO_CREATE_PINNED_BIT | XE_BO_CREATE_STOLEN_BIT;
+ if (align)
+ size = ALIGN(size, align);
+
bo = xe_bo_create_locked_range(xe, xe_device_get_root_tile(xe),
NULL, size, start, end,
ttm_bo_type_kernel, flags);
--
2.34.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/xe: ensure fbc cfb size to be page size aligned
2024-01-10 11:00 [PATCH v1 0/2] drm/xe: ensure fbc cfb size to be page size aligned Vinod Govindapillai
2024-01-10 11:00 ` [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc Vinod Govindapillai
2024-01-10 11:00 ` [PATCH v1 2/2] drm/xe: Modify the cfb size to be page size aligned for FBC Vinod Govindapillai
@ 2024-01-10 15:11 ` Patchwork
2024-01-10 15:23 ` ✓ Fi.CI.BAT: success " Patchwork
2024-01-10 17:53 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-01-10 15:11 UTC (permalink / raw)
To: Vinod Govindapillai; +Cc: intel-gfx
== Series Details ==
Series: drm/xe: ensure fbc cfb size to be page size aligned
URL : https://patchwork.freedesktop.org/series/128425/
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] 12+ messages in thread
* ✓ Fi.CI.BAT: success for drm/xe: ensure fbc cfb size to be page size aligned
2024-01-10 11:00 [PATCH v1 0/2] drm/xe: ensure fbc cfb size to be page size aligned Vinod Govindapillai
` (2 preceding siblings ...)
2024-01-10 15:11 ` ✗ Fi.CI.SPARSE: warning for drm/xe: ensure fbc cfb size to be page size aligned Patchwork
@ 2024-01-10 15:23 ` Patchwork
2024-01-10 17:53 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-01-10 15:23 UTC (permalink / raw)
To: Vinod Govindapillai; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 11259 bytes --]
== Series Details ==
Series: drm/xe: ensure fbc cfb size to be page size aligned
URL : https://patchwork.freedesktop.org/series/128425/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14108 -> Patchwork_128425v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/index.html
Participating hosts (38 -> 39)
------------------------------
Additional (2): bat-dg2-8 bat-mtlp-8
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_128425v1 that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- bat-jsl-1: [PASS][1] -> [FAIL][2] ([i915#8293])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/bat-jsl-1/boot.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-jsl-1/boot.html
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@gem_mmap@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#6621])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#6645])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#6645])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#5190])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#5190])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#4212]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#4215] / [i915#5190])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-8: NOTRUN -> [SKIP][19] ([i915#4212]) +7 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#4213]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#4103] / [i915#4213]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#3840] / [i915#9159])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][23] ([fdo#109285])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-8: NOTRUN -> [SKIP][24] ([fdo#109285])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][25] ([i915#5274])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: NOTRUN -> [SKIP][26] ([i915#5274])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-atsm-1: NOTRUN -> [SKIP][27] ([i915#1836])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-8: NOTRUN -> [SKIP][28] ([i915#5354])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#8809])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][30] ([i915#3555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-8: NOTRUN -> [SKIP][31] ([i915#3708])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-8: NOTRUN -> [SKIP][32] ([i915#3708] / [i915#4077]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
- bat-mtlp-8: NOTRUN -> [SKIP][33] ([i915#3708] / [i915#4077]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][34] ([i915#3708]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- bat-dg2-8: NOTRUN -> [SKIP][35] ([i915#3291] / [i915#3708]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3@lmem0:
- bat-atsm-1: [ABORT][36] -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/bat-atsm-1/igt@gem_exec_suspend@basic-s3@lmem0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/bat-atsm-1/igt@gem_exec_suspend@basic-s3@lmem0.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
Build changes
-------------
* Linux: CI_DRM_14108 -> Patchwork_128425v1
CI-20190529: 20190529
CI_DRM_14108: c58d1352dd193d8df380a14e95c05455acaf5b82 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7666: 5f97adfd0e1636788a6af5b592f0d15b4f1027c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_128425v1: c58d1352dd193d8df380a14e95c05455acaf5b82 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
2b2eb6ddef05 drm/xe: Modify the cfb size to be page size aligned for FBC
627cdbc88285 drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/index.html
[-- Attachment #2: Type: text/html, Size: 13576 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/xe: ensure fbc cfb size to be page size aligned
2024-01-10 11:00 [PATCH v1 0/2] drm/xe: ensure fbc cfb size to be page size aligned Vinod Govindapillai
` (3 preceding siblings ...)
2024-01-10 15:23 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-01-10 17:53 ` Patchwork
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-01-10 17:53 UTC (permalink / raw)
To: Vinod Govindapillai; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100278 bytes --]
== Series Details ==
Series: drm/xe: ensure fbc cfb size to be page size aligned
URL : https://patchwork.freedesktop.org/series/128425/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14108_full -> Patchwork_128425v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_128425v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_128425v1_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 (8 -> 9)
------------------------------
Additional (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_128425v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@hangcheck:
- shard-tglu: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-8/igt@i915_selftest@live@hangcheck.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-10/igt@i915_selftest@live@hangcheck.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg1: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-17/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-14/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [PASS][5] -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-mtlp-8/igt@perf_pmu@frequency@gt0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-5/igt@perf_pmu@frequency@gt0.html
Known issues
------------
Here are the changes found in Patchwork_128425v1_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27]) -> ([PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [FAIL][38], [PASS][39], [FAIL][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47]) ([i915#8293])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk9/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk9/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk9/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk9/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk8/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk8/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk8/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk8/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk7/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk7/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk7/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk4/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk4/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk4/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk4/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk3/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk3/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk3/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk3/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk1/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk1/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk7/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk7/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk4/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk4/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk4/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk3/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk3/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk3/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk3/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk1/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk1/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk1/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk7/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk9/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk9/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk9/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/boot.html
#### Possible fixes ####
* boot:
- shard-rkl: ([PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [FAIL][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70]) ([i915#8293]) -> ([PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-1/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-1/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-7/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-7/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-7/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-7/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-7/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-6/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-6/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/boot.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/boot.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/boot.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/boot.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/boot.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/boot.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/boot.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/boot.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/boot.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/boot.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-3/boot.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-2/boot.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-2/boot.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-1/boot.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-7/boot.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-7/boot.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-7/boot.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-7/boot.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-6/boot.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-6/boot.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/boot.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/boot.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/boot.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/boot.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/boot.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/boot.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/boot.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/boot.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/boot.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/boot.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/boot.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/boot.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/boot.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/boot.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-1/boot.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-1/boot.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-1/boot.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-1/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#6230])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8411]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#8411]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#7701])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8414]) +12 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@busy@rcs0:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#8414]) +11 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@drm_fdinfo@busy@rcs0.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#8414])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#7697])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3936])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-1/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3936])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_busy@semaphore.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#9323])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [PASS][106] -> [INCOMPLETE][107] ([i915#7297])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#7697])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6335])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [INCOMPLETE][110] ([i915#9364])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8555]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#8555]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-args:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#280])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4771]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4771])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#4525])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][117] ([i915#9606])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-mtlp: NOTRUN -> [FAIL][118] ([i915#9606])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#3539] / [i915#4852]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][120] -> [FAIL][121] ([i915#2842])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][122] ([i915#2842])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3539] / [i915#4852]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-glk: [PASS][124] -> [FAIL][125] ([i915#2842])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][126] -> [FAIL][127] ([i915#2842]) +3 other tests fail
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#3539])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4812])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#3711])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7697])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][132] ([fdo#112283]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-1/igt@gem_exec_params@secure-non-root.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([fdo#112283])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3281]) +8 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3281]) +7 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3281]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#3281]) +6 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#4537] / [i915#4812]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#4537] / [i915#4812])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4860]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#4860]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#4613] / [i915#7582])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][143] ([fdo#109271] / [i915#4613]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#4613]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#4613])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][146] -> [DMESG-WARN][147] ([i915#4936] / [i915#5493])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#4613])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4565])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8289])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#4077]) +13 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#4077])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#4077]) +8 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_wc@bad-size:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#4083])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#4083]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@gem_mmap_wc@read-write.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#4083]) +7 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3282]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#3282])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][159] ([i915#2658])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#4270]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#4270]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#4270])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#4270])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#4270]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3282]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8428]) +4 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#8411])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#4079]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4079])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3282]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#4885]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@gem_softpin@evict-snoop-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#4885])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3297]) +3 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#3297])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3297] / [i915#4880]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3297]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gen3_mixed_blits:
- shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109289]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@gen3_mixed_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][178] ([fdo#109289]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#2856]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#2856]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#2527])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#2527])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#2527] / [i915#2856])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][184] ([fdo#109271] / [i915#6227])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk3/igt@i915_module_load@load.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#6227])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][186] ([i915#9820])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [PASS][187] -> [INCOMPLETE][188] ([i915#9849])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][189] -> [ABORT][190] ([i915#9820])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [PASS][191] -> [INCOMPLETE][192] ([i915#9820] / [i915#9849])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8436])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#8399])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][195] -> [FAIL][196] ([i915#3591])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rpm@gem-mmap-type@gtt-smem0:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#8431])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#6621])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8925])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8925])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#8925]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-2/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8437])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][203] -> [FAIL][204] ([i915#10031])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#7707])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#4212]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4212])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8709]) +11 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#8709]) +11 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [FAIL][210] ([i915#8247]) +3 other tests fail
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-2/igt@kms_async_flips@crc@pipe-b-hdmi-a-2.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][211] ([i915#8561]) +3 other tests dmesg-fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#6228])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#4538] / [i915#5286])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#5286]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][215] ([fdo#111615] / [i915#5286])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][216] ([fdo#111614] / [i915#3638])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][217] ([fdo#111614]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][218] ([fdo#111614])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][219] ([fdo#111614]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][220] -> [FAIL][221] ([i915#3743])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#6187])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#4538] / [i915#5190]) +4 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][224] ([fdo#110723]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#4538])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][226] ([fdo#111615])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][227] ([fdo#111615]) +10 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#2705])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_big_joiner@2x-modeset.html
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#2705])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#5354] / [i915#6095]) +12 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_ccs@pipe-a-bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#5354] / [i915#6095]) +11 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_ccs@pipe-a-bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#5354] / [i915#6095]) +8 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#5354]) +76 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#5354] / [i915#6095]) +38 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#5354]) +14 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#4087]) +3 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#4087]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#7828]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg1: NOTRUN -> [SKIP][239] ([fdo#111827])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][240] ([fdo#111827]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color@gamma:
- shard-rkl: NOTRUN -> [SKIP][241] ([fdo#111827])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#7828]) +4 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#7828]) +9 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#7828]) +7 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#7828])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#6944])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#9424])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3299]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#9424])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#3359])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#3359])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#8814]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#3555])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#3555]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8814]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#4103])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-tglu: NOTRUN -> [SKIP][257] ([fdo#109274]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][258] ([fdo#109274] / [i915#5354]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#9809])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][260] ([fdo#111767]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][261] ([fdo#109274] / [fdo#111767] / [i915#5354])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][262] -> [FAIL][263] ([i915#2346]) +1 other test fail
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#4103] / [i915#4213]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [PASS][265] -> [DMESG-WARN][266] ([i915#2017])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-mtlp-5/igt@kms_cursor_legacy@single-move@all-pipes.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#9723]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#8588])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8812])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#3840])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#3840] / [i915#9159])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3840] / [i915#9688])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#3469])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][274] ([fdo#109274] / [i915#3637]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][275] ([fdo#111767] / [fdo#111825]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][276] ([fdo#111767] / [i915#3637])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#8381]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][278] ([fdo#111825] / [i915#9934])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3637]) +7 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][280] ([fdo#109274]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#2672]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8810]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#2672])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#2587] / [i915#2672]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#2672]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#8810])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#5274])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#8708]) +8 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#8708]) +4 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#8708]) +18 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][291] ([fdo#111825]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][292] -> [SKIP][293] ([fdo#109271]) +8 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#10055])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#3458]) +12 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#3458]) +4 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#1825]) +24 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][298] ([fdo#111825]) +5 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#10055])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][300] ([fdo#110189]) +5 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][301] ([fdo#111825] / [i915#1825]) +17 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][302] ([fdo#109280]) +7 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#3023]) +10 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#6118])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#433])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8228])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8228])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@kms_hdr@static-swap.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#9457]) +3 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#6301])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][310] ([fdo#109289])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3582]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#3555]) +3 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8806])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][314] ([i915#8292])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#9423]) +7 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#9423]) +3 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#5176]) +5 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#5176] / [i915#9423]) +3 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9423]) +3 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#9423]) +3 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#5235]) +3 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#5235]) +2 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#3555] / [i915#5235])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#5235]) +7 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#5235] / [i915#9423]) +15 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/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-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][326] ([fdo#109271]) +101 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#9685])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][328] -> [SKIP][329] ([i915#4281])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#8430])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][331] -> [SKIP][332] ([i915#9519])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-snb: NOTRUN -> [SKIP][333] ([fdo#109271]) +23 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-snb4/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#9519])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#9519])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#6524] / [i915#6805])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#6524])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][338] ([i915#9683])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_psr2_sf@cursor-plane-update-sf.html
- shard-rkl: NOTRUN -> [SKIP][339] ([fdo#111068] / [i915#9683]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#9683])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#4884])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#5289])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#4235])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#5190]) +13 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][345] ([i915#5289])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#4235] / [i915#5190])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#4235]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][348] ([i915#3555]) +2 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#3555] / [i915#8809])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2: NOTRUN -> [SKIP][350] ([fdo#109309])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@kms_tv_load_detect@load-detect.html
- shard-rkl: NOTRUN -> [SKIP][351] ([fdo#109309])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][352] ([i915#9196])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][353] -> [FAIL][354] ([i915#9196])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
- shard-dg1: [PASS][355] -> [FAIL][356] ([i915#9196]) +1 other test fail
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4.html
* igt@kms_vrr@flip-basic-fastset:
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#9906])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][358] ([i915#2437])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][359] ([i915#2437])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#8850])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-1/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [PASS][361] -> [FAIL][362] ([i915#4349])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-1/igt@perf_pmu@most-busy-check-all@rcs0.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/igt@perf_pmu@most-busy-check-all@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#8516])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#8516])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#3708] / [i915#4077])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#3708])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#3291] / [i915#3708])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#3708])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][369] ([i915#9917])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#9917])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][371] ([i915#9781])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk8/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#2575]) +11 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-6/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#2575]) +11 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-7/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_submit_cl@single-in-sync:
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#2575]) +3 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@v3d/v3d_submit_cl@single-in-sync.html
* igt@v3d/v3d_submit_csd@bad-multisync-extension:
- shard-rkl: NOTRUN -> [SKIP][375] ([fdo#109315]) +4 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@v3d/v3d_submit_csd@bad-multisync-extension.html
* igt@v3d/v3d_wait_bo@bad-pad:
- shard-tglu: NOTRUN -> [SKIP][376] ([fdo#109315] / [i915#2575]) +1 other test skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@v3d/v3d_wait_bo@bad-pad.html
* igt@vc4/vc4_label_bo@set-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][377] ([i915#2575]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@vc4/vc4_label_bo@set-bad-handle.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#7711]) +7 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-3/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#7711]) +2 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_wait_bo@bad-pad:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#7711]) +6 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-10/igt@vc4/vc4_wait_bo@bad-pad.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#7711]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-17/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][382] ([i915#5784]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg1-16/igt@gem_eio@unwedge-stress.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: [FAIL][384] ([i915#2842]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-glk9/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-tglu: [FAIL][386] ([i915#2842]) -> [PASS][387] +1 other test pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [INCOMPLETE][388] ([i915#9275]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [INCOMPLETE][390] ([i915#9200]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live@gt_pm:
- shard-rkl: [DMESG-FAIL][392] -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/igt@i915_selftest@live@gt_pm.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-1/igt@i915_selftest@live@gt_pm.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][394] ([i915#5138]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][396] ([i915#3743]) -> [PASS][397] +1 other test pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [FAIL][398] -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [FAIL][400] ([i915#6880]) -> [PASS][401] +2 other tests pass
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-snb: [SKIP][402] ([fdo#109271]) -> [PASS][403] +2 other tests pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][404] ([i915#9519]) -> [PASS][405] +1 other test pass
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@tools_test@tools_test:
- shard-dg2: [INCOMPLETE][406] ([i915#2295]) -> [PASS][407]
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-dg2-5/igt@tools_test@tools_test.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-dg2-1/igt@tools_test@tools_test.html
#### Warnings ####
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: [INCOMPLETE][408] ([i915#10042]) -> [WARN][409] ([i915#2658])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-6/igt@gem_pwrite@basic-exhaustion.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-tglu: [WARN][410] ([i915#2681]) -> [FAIL][411] ([i915#3591])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-tglu: [FAIL][412] ([i915#3591]) -> [WARN][413] ([i915#2681])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_content_protection@uevent:
- shard-snb: [SKIP][414] ([fdo#109271]) -> [INCOMPLETE][415] ([i915#8816])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-snb5/igt@kms_content_protection@uevent.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-snb7/igt@kms_content_protection@uevent.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][416] ([i915#4070] / [i915#4816]) -> [SKIP][417] ([i915#4816])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [SKIP][418] ([i915#3361]) -> [FAIL][419] ([i915#9295])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14108/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
### Piglit changes ###
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10062]: https://gitlab.freedesktop.org/drm/intel/issues/10062
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[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#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[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#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[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#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[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#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[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#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431
[i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[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#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9457]: https://gitlab.freedesktop.org/drm/intel/issues/9457
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128425v1/index.html
[-- Attachment #2: Type: text/html, Size: 120850 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
2024-01-10 11:00 ` [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc Vinod Govindapillai
@ 2024-01-11 13:44 ` Ville Syrjälä
2024-01-11 13:47 ` Govindapillai, Vinod
0 siblings, 1 reply; 12+ messages in thread
From: Ville Syrjälä @ 2024-01-11 13:44 UTC (permalink / raw)
To: Vinod Govindapillai; +Cc: intel-gfx, ville.syrjala
On Wed, Jan 10, 2024 at 01:00:08PM +0200, Vinod Govindapillai wrote:
> FBC compressed frame buffer size need to be PAGE_SIZE aligned
> and the corresponding the drm_gem functions check the object
> size alignment using PAGE_SIZE macro. Use the PAGE_SIZE macro
> in the cfb alloc as well instead of the magic number.
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index f17a1afb4929..9b9c8715d664 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -764,13 +764,15 @@ static int find_compression_limit(struct intel_fbc *fbc,
>
> /* Try to over-allocate to reduce reallocations and fragmentation. */
> ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
> - size <<= 1, 4096, 0, end);
> + size <<= 1, PAGE_SIZE, 0,
> + end);
> if (ret == 0)
> return limit;
>
> for (; limit <= intel_fbc_max_limit(i915); limit <<= 1) {
> ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
> - size >>= 1, 4096, 0, end);
> + size >>= 1, PAGE_SIZE, 0,
> + end);
PAGE_SIZE is 4k so I can't see this doing anything at all.
The correct fix is probably either:
- fix the xe gem code to always page align the size
- page align it in xe's i915_gem_stolen_insert_node_in_range()
> if (ret == 0)
> return limit;
> }
> --
> 2.34.1
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
2024-01-11 13:44 ` Ville Syrjälä
@ 2024-01-11 13:47 ` Govindapillai, Vinod
2024-01-11 13:59 ` Ville Syrjälä
0 siblings, 1 reply; 12+ messages in thread
From: Govindapillai, Vinod @ 2024-01-11 13:47 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx@lists.freedesktop.org, Syrjala, Ville
[-- Attachment #1: Type: text/plain, Size: 2565 bytes --]
Hi Ville
The fix is in the next patch.
This pach changes the 4096 to page size macro as the BUG on is based on that macro explicitly.
Br
Vinod
________________________________
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Sent: Thursday, January 11, 2024 3:44:22 pm
To: Govindapillai, Vinod <vinod.govindapillai@intel.com>
Cc: intel-gfx@lists.freedesktop.org <intel-gfx@lists.freedesktop.org>; Syrjala, Ville <ville.syrjala@intel.com>
Subject: Re: [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
On Wed, Jan 10, 2024 at 01:00:08PM +0200, Vinod Govindapillai wrote:
> FBC compressed frame buffer size need to be PAGE_SIZE aligned
> and the corresponding the drm_gem functions check the object
> size alignment using PAGE_SIZE macro. Use the PAGE_SIZE macro
> in the cfb alloc as well instead of the magic number.
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> index f17a1afb4929..9b9c8715d664 100644
> --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> @@ -764,13 +764,15 @@ static int find_compression_limit(struct intel_fbc *fbc,
>
> /* Try to over-allocate to reduce reallocations and fragmentation. */
> ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
> - size <<= 1, 4096, 0, end);
> + size <<= 1, PAGE_SIZE, 0,
> + end);
> if (ret == 0)
> return limit;
>
> for (; limit <= intel_fbc_max_limit(i915); limit <<= 1) {
> ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
> - size >>= 1, 4096, 0, end);
> + size >>= 1, PAGE_SIZE, 0,
> + end);
PAGE_SIZE is 4k so I can't see this doing anything at all.
The correct fix is probably either:
- fix the xe gem code to always page align the size
- page align it in xe's i915_gem_stolen_insert_node_in_range()
> if (ret == 0)
> return limit;
> }
> --
> 2.34.1
--
Ville Syrjälä
Intel
[-- Attachment #2: Type: text/html, Size: 5769 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
2024-01-11 13:47 ` Govindapillai, Vinod
@ 2024-01-11 13:59 ` Ville Syrjälä
2024-01-11 14:37 ` Govindapillai, Vinod
0 siblings, 1 reply; 12+ messages in thread
From: Ville Syrjälä @ 2024-01-11 13:59 UTC (permalink / raw)
To: Govindapillai, Vinod; +Cc: intel-gfx@lists.freedesktop.org, Syrjala, Ville
On Thu, Jan 11, 2024 at 01:47:02PM +0000, Govindapillai, Vinod wrote:
> Hi Ville
>
> The fix is in the next patch.
>
> This pach changes the 4096 to page size macro as the BUG on is based on that macro explicitly.
I think the whole PAGE_SIZE handling should be in the xe code
since it's an implementation detail of the xe code.
>
> Br
> Vinod
>
> ________________________________
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Sent: Thursday, January 11, 2024 3:44:22 pm
> To: Govindapillai, Vinod <vinod.govindapillai@intel.com>
> Cc: intel-gfx@lists.freedesktop.org <intel-gfx@lists.freedesktop.org>; Syrjala, Ville <ville.syrjala@intel.com>
> Subject: Re: [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
>
> On Wed, Jan 10, 2024 at 01:00:08PM +0200, Vinod Govindapillai wrote:
> > FBC compressed frame buffer size need to be PAGE_SIZE aligned
> > and the corresponding the drm_gem functions check the object
> > size alignment using PAGE_SIZE macro. Use the PAGE_SIZE macro
> > in the cfb alloc as well instead of the magic number.
> >
> > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++++--
> > 1 file changed, 4 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
> > index f17a1afb4929..9b9c8715d664 100644
> > --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> > @@ -764,13 +764,15 @@ static int find_compression_limit(struct intel_fbc *fbc,
> >
> > /* Try to over-allocate to reduce reallocations and fragmentation. */
> > ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
> > - size <<= 1, 4096, 0, end);
> > + size <<= 1, PAGE_SIZE, 0,
> > + end);
> > if (ret == 0)
> > return limit;
> >
> > for (; limit <= intel_fbc_max_limit(i915); limit <<= 1) {
> > ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
> > - size >>= 1, 4096, 0, end);
> > + size >>= 1, PAGE_SIZE, 0,
> > + end);
>
> PAGE_SIZE is 4k so I can't see this doing anything at all.
>
> The correct fix is probably either:
> - fix the xe gem code to always page align the size
> - page align it in xe's i915_gem_stolen_insert_node_in_range()
>
> > if (ret == 0)
> > return limit;
> > }
> > --
> > 2.34.1
>
> --
> Ville Syrjälä
> Intel
>
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
2024-01-11 13:59 ` Ville Syrjälä
@ 2024-01-11 14:37 ` Govindapillai, Vinod
0 siblings, 0 replies; 12+ messages in thread
From: Govindapillai, Vinod @ 2024-01-11 14:37 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com
Cc: intel-gfx@lists.freedesktop.org, Syrjala, Ville
On Thu, 2024-01-11 at 15:59 +0200, Ville Syrjälä wrote:
> On Thu, Jan 11, 2024 at 01:47:02PM +0000, Govindapillai, Vinod wrote:
> > Hi Ville
> >
> > The fix is in the next patch.
> >
> > This pach changes the 4096 to page size macro as the BUG on is based on that macro explicitly.
>
> I think the whole PAGE_SIZE handling should be in the xe code
> since it's an implementation detail of the xe code.
Sorry.. I am not sure if I get your point correctly! I just changed the magic number with PAGE_SIZE
because in the subsequent "drm_gem_private_object_init()", the BUG_ON is based on "PAGE_SIZE"
explicitly and not 4096
BUG_ON((size & (PAGE_SIZE - 1)) != 0);
The next patch in the series https://patchwork.freedesktop.org/patch/573909/?series=128425&rev=1 .
handles alignment in xe code
static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
int err;
u32 flags = XE_BO_CREATE_PINNED_BIT | XE_BO_CREATE_STOLEN_BIT;
+ if (align)
+ size = ALIGN(size, align);
+
As per some comments in the xe_bo handling, it expects the userspace to be aware of the alignment
restrictions and handle the alignments return error in such cased. For kernel, it doesnt explicitly
handle anything and fails at the BUG_ON() eventually of the size is no page aligned.
>
> >
> > Br
> > Vinod
> >
> > ________________________________
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > Sent: Thursday, January 11, 2024 3:44:22 pm
> > To: Govindapillai, Vinod <vinod.govindapillai@intel.com>
> > Cc: intel-gfx@lists.freedesktop.org <intel-gfx@lists.freedesktop.org>; Syrjala, Ville
> > <ville.syrjala@intel.com>
> > Subject: Re: [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc
> >
> > On Wed, Jan 10, 2024 at 01:00:08PM +0200, Vinod Govindapillai wrote:
> > > FBC compressed frame buffer size need to be PAGE_SIZE aligned
> > > and the corresponding the drm_gem functions check the object
> > > size alignment using PAGE_SIZE macro. Use the PAGE_SIZE macro
> > > in the cfb alloc as well instead of the magic number.
> > >
> > > Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/intel_fbc.c | 6 ++++--
> > > 1 file changed, 4 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c
> > > b/drivers/gpu/drm/i915/display/intel_fbc.c
> > > index f17a1afb4929..9b9c8715d664 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_fbc.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c
> > > @@ -764,13 +764,15 @@ static int find_compression_limit(struct intel_fbc *fbc,
> > >
> > > /* Try to over-allocate to reduce reallocations and fragmentation. */
> > > ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
> > > - size <<= 1, 4096, 0, end);
> > > + size <<= 1, PAGE_SIZE, 0,
> > > + end);
> > > if (ret == 0)
> > > return limit;
> > >
> > > for (; limit <= intel_fbc_max_limit(i915); limit <<= 1) {
> > > ret = i915_gem_stolen_insert_node_in_range(i915, &fbc->compressed_fb,
> > > - size >>= 1, 4096, 0, end);
> > > + size >>= 1, PAGE_SIZE, 0,
> > > + end);
> >
> > PAGE_SIZE is 4k so I can't see this doing anything at all.
> >
> > The correct fix is probably either:
> > - fix the xe gem code to always page align the size
> > - page align it in xe's i915_gem_stolen_insert_node_in_range()
> >
> > > if (ret == 0)
> > > return limit;
> > > }
> > > --
> > > 2.34.1
> >
> > --
> > Ville Syrjälä
> > Intel
> >
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v1 2/2] drm/xe: Modify the cfb size to be page size aligned for FBC
2024-01-10 11:00 ` [PATCH v1 2/2] drm/xe: Modify the cfb size to be page size aligned for FBC Vinod Govindapillai
@ 2024-01-12 8:56 ` Jani Nikula
2024-01-12 8:58 ` Jani Nikula
0 siblings, 1 reply; 12+ messages in thread
From: Jani Nikula @ 2024-01-12 8:56 UTC (permalink / raw)
To: Vinod Govindapillai, intel-gfx; +Cc: ville.syrjala
On Wed, 10 Jan 2024, Vinod Govindapillai <vinod.govindapillai@intel.com> wrote:
> drm_gem_private_object_init expect the object size be page size
> aligned. The xe_bo create functions do not update the size for
> any alignment requirements. So align cfb size to be page size
> aligned in xe stolen memory handling.
Please send this to the intel-xe mailing list.
BR,
Jani.
>
> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> ---
> drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
> index 888e7a87a925..bd233007c1b7 100644
> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
> @@ -19,6 +19,9 @@ static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
> int err;
> u32 flags = XE_BO_CREATE_PINNED_BIT | XE_BO_CREATE_STOLEN_BIT;
>
> + if (align)
> + size = ALIGN(size, align);
> +
> bo = xe_bo_create_locked_range(xe, xe_device_get_root_tile(xe),
> NULL, size, start, end,
> ttm_bo_type_kernel, flags);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v1 2/2] drm/xe: Modify the cfb size to be page size aligned for FBC
2024-01-12 8:56 ` Jani Nikula
@ 2024-01-12 8:58 ` Jani Nikula
0 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2024-01-12 8:58 UTC (permalink / raw)
To: Vinod Govindapillai, intel-gfx; +Cc: ville.syrjala
On Fri, 12 Jan 2024, Jani Nikula <jani.nikula@linux.intel.com> wrote:
> On Wed, 10 Jan 2024, Vinod Govindapillai <vinod.govindapillai@intel.com> wrote:
>> drm_gem_private_object_init expect the object size be page size
>> aligned. The xe_bo create functions do not update the size for
>> any alignment requirements. So align cfb size to be page size
>> aligned in xe stolen memory handling.
>
> Please send this to the intel-xe mailing list.
Oh, and by "this" I mean this one patch. Patch 1 is mostly
non-functional cleanup.
>
> BR,
> Jani.
>
>
>>
>> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
>> ---
>> drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h b/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
>> index 888e7a87a925..bd233007c1b7 100644
>> --- a/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
>> +++ b/drivers/gpu/drm/xe/compat-i915-headers/i915_gem_stolen.h
>> @@ -19,6 +19,9 @@ static inline int i915_gem_stolen_insert_node_in_range(struct xe_device *xe,
>> int err;
>> u32 flags = XE_BO_CREATE_PINNED_BIT | XE_BO_CREATE_STOLEN_BIT;
>>
>> + if (align)
>> + size = ALIGN(size, align);
>> +
>> bo = xe_bo_create_locked_range(xe, xe_device_get_root_tile(xe),
>> NULL, size, start, end,
>> ttm_bo_type_kernel, flags);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-01-12 8:58 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-10 11:00 [PATCH v1 0/2] drm/xe: ensure fbc cfb size to be page size aligned Vinod Govindapillai
2024-01-10 11:00 ` [PATCH v1 1/2] drm/i915/display: use PAGE_SIZE macro for FBC cfb alloc Vinod Govindapillai
2024-01-11 13:44 ` Ville Syrjälä
2024-01-11 13:47 ` Govindapillai, Vinod
2024-01-11 13:59 ` Ville Syrjälä
2024-01-11 14:37 ` Govindapillai, Vinod
2024-01-10 11:00 ` [PATCH v1 2/2] drm/xe: Modify the cfb size to be page size aligned for FBC Vinod Govindapillai
2024-01-12 8:56 ` Jani Nikula
2024-01-12 8:58 ` Jani Nikula
2024-01-10 15:11 ` ✗ Fi.CI.SPARSE: warning for drm/xe: ensure fbc cfb size to be page size aligned Patchwork
2024-01-10 15:23 ` ✓ Fi.CI.BAT: success " Patchwork
2024-01-10 17:53 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox