* [PATCH] tests/amdgpu: add gem create fuzzing test
@ 2024-03-27 4:27 vitaly.prosyak
2024-03-27 5:03 ` ✗ GitLab.Pipeline: warning for tests/amdgpu: add gem create fuzzing test (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: vitaly.prosyak @ 2024-03-27 4:27 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Joonkyo Jung,
Kamil Konieczny, Jesse Zhang, Tvrtko Ursulin
From: Vitaly Prosyak <vitaly.prosyak@amd.com>
The bug in amdgpu was found using customized Syzkaller and with Kazan enabled.
Report a slab-use-after-free bug in the AMDGPU DRM driver.
Ftrace enablement is mandatory precondition to reproduce the error once after boot.
The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
The following scenario is a different reproduction of same issue:
BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646.
Fix Christian König ckoenig.leichtzumerken at gmail.com
https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html.
The issue is visible only when Kazan enables and dumps to the kernel log:
BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90.
We accessed the freed memory during the ftrace enablement in a
amdgpu_bo_move_notify.
The test amd_gem_create_fuzzing does amdgpu_bo_reserve 2 times.
Signed-off-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Joonkyo Jung <joonkyoj@yonsei.ac.kr>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Jesse Zhang <Jesse.Zhang@amd.com>
Cc: Tvrtko Ursulin <tursulin@igalia.com>
---
tests/amdgpu/amd_fuzzing.c | 69 ++++++++++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/tests/amdgpu/amd_fuzzing.c b/tests/amdgpu/amd_fuzzing.c
index 69c9e8dad..dccac8cc1 100644
--- a/tests/amdgpu/amd_fuzzing.c
+++ b/tests/amdgpu/amd_fuzzing.c
@@ -95,6 +95,67 @@ void amd_cs_wait_fuzzing(int fd, const enum amd_ip_block_type types[], int size)
}
}
+static int
+amdgpu_ftrace_enablement(const char *function, bool enable)
+{
+ char cmd[128];
+ int ret;
+
+ snprintf(cmd, sizeof(cmd),
+ "echo %s > /sys/kernel/debug/tracing/events/amdgpu/%s/enable",
+ enable == true ? "1":"0", function);
+ ret = igt_system(cmd);
+
+ return ret;
+}
+
+/* The bug was found using customized Syzkaller and with Kazan enabled.
+ * Report a slab-use-after-free bug in the AMDGPU DRM driver.
+ * Ftrace enablement is mandatory precondition to reproduce the error once after boot.
+ * The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
+ *
+ * BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
+ * https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
+ *
+ * Fix Christian König ckoenig.leichtzumerken at gmail.com
+ * https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html
+ *
+ * The issue is visible only when Kazan enables and dumps to the kernel log:
+ * BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90
+ * We accessed the freed memory during the ftrace enablement in a
+ * amdgpu_bo_move_notify.
+ * The test amd_gem_create_fuzzing does amdgpu_bo_reserve
+ */
+static void
+amd_gem_create_fuzzing(int fd)
+{
+ static const char function_amdgpu_bo_move[] = "amdgpu_bo_move";
+ union drm_amdgpu_gem_create arg;
+ int ret;
+
+ ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, true);
+ igt_assert_eq(ret, 0);
+ arg.in.bo_size = 0x8;
+ arg.in.alignment = 0x0;
+ arg.in.domains = 0x4;
+ arg.in.domain_flags = 0x9;
+ ret = drmIoctl(fd, 0xc0206440
+ /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
+ igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
+
+ arg.in.bo_size = 0x7fffffff;
+ arg.in.alignment = 0x0;
+ arg.in.domains = 0x4;
+ arg.in.domain_flags = 0x9;
+ ret = drmIoctl(fd, 0xc0206440
+ /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
+ igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
+
+ ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, false);
+ igt_assert_eq(ret, 0);
+
+}
+
igt_main
{
int fd = -1;
@@ -114,6 +175,14 @@ igt_main
igt_subtest("cs-wait-fuzzing")
amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
+ igt_describe("Check cs wait fuzzing");
+ igt_subtest("cs-wait-fuzzing")
+ amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
+
+ igt_describe("Check gem create fuzzing");
+ igt_subtest("gem-create-fuzzing")
+ amd_gem_create_fuzzing(fd);
+
igt_fixture {
drm_close_driver(fd);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread* ✗ GitLab.Pipeline: warning for tests/amdgpu: add gem create fuzzing test (rev2)
2024-03-27 4:27 [PATCH] tests/amdgpu: add gem create fuzzing test vitaly.prosyak
@ 2024-03-27 5:03 ` Patchwork
2024-03-27 5:16 ` ✓ CI.xeBAT: success " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-03-27 5:03 UTC (permalink / raw)
To: vitaly.prosyak; +Cc: igt-dev
== Series Details ==
Series: tests/amdgpu: add gem create fuzzing test (rev2)
URL : https://patchwork.freedesktop.org/series/131671/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1138551 for the overview.
test:ninja-test has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/56843872):
422/426 assembler test/rnde-intsrc OK 0.01 s
423/426 assembler test/rndz OK 0.01 s
424/426 assembler test/lzd OK 0.01 s
425/426 assembler test/not OK 0.01 s
426/426 assembler test/immediate OK 0.01 s
Ok: 421
Expected Fail: 4
Fail: 1
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1711515477:step_script
section_start:1711515477:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1711515477:cleanup_file_variables
ERROR: Job failed: exit code 1
test:ninja-test-clang has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/56843873):
422/426 assembler test/rnde-intsrc OK 0.02 s
423/426 assembler test/rndz OK 0.02 s
424/426 assembler test/lzd OK 0.01 s
425/426 assembler test/not OK 0.01 s
426/426 assembler test/immediate OK 0.02 s
Ok: 421
Expected Fail: 4
Fail: 1
Unexpected Pass: 0
Skipped: 0
Timeout: 0
Full log written to /builds/gfx-ci/igt-ci-tags/build/meson-logs/testlog.txt
section_end:1711515505:step_script
section_start:1711515505:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1711515506:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1138551
^ permalink raw reply [flat|nested] 10+ messages in thread* ✓ CI.xeBAT: success for tests/amdgpu: add gem create fuzzing test (rev2)
2024-03-27 4:27 [PATCH] tests/amdgpu: add gem create fuzzing test vitaly.prosyak
2024-03-27 5:03 ` ✗ GitLab.Pipeline: warning for tests/amdgpu: add gem create fuzzing test (rev2) Patchwork
@ 2024-03-27 5:16 ` Patchwork
2024-03-27 5:30 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-03-27 5:16 UTC (permalink / raw)
To: vitaly.prosyak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1676 bytes --]
== Series Details ==
Series: tests/amdgpu: add gem create fuzzing test (rev2)
URL : https://patchwork.freedesktop.org/series/131671/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7785_BAT -> XEIGTPW_10924_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10924_BAT that come from known issues:
### IGT changes ###
#### Warnings ####
* igt@xe_exec_threads@threads-mixed-userptr-invalidate:
- bat-adlp-7: [INCOMPLETE][1] ([Intel XE#1044]) -> [INCOMPLETE][2] ([Intel XE#1044] / [Intel XE#1376])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7785/bat-adlp-7/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10924/bat-adlp-7/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html
[Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
[Intel XE#1376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1376
Build changes
-------------
* IGT: IGT_7785 -> IGTPW_10924
* Linux: xe-995-79a0d94585cad50ad2446ebdf3f1317b7d18157c -> xe-998-f9c56f1a03b5c35488671e4ffe61e28b12ffe163
IGTPW_10924: 10924
IGT_7785: 7785
xe-995-79a0d94585cad50ad2446ebdf3f1317b7d18157c: 79a0d94585cad50ad2446ebdf3f1317b7d18157c
xe-998-f9c56f1a03b5c35488671e4ffe61e28b12ffe163: f9c56f1a03b5c35488671e4ffe61e28b12ffe163
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10924/index.html
[-- Attachment #2: Type: text/html, Size: 2314 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* ✓ Fi.CI.BAT: success for tests/amdgpu: add gem create fuzzing test (rev2)
2024-03-27 4:27 [PATCH] tests/amdgpu: add gem create fuzzing test vitaly.prosyak
2024-03-27 5:03 ` ✗ GitLab.Pipeline: warning for tests/amdgpu: add gem create fuzzing test (rev2) Patchwork
2024-03-27 5:16 ` ✓ CI.xeBAT: success " Patchwork
@ 2024-03-27 5:30 ` Patchwork
2024-03-28 1:44 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-03-28 13:01 ` [PATCH] tests/amdgpu: add gem create fuzzing test Kamil Konieczny
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-03-27 5:30 UTC (permalink / raw)
To: vitaly.prosyak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7801 bytes --]
== Series Details ==
Series: tests/amdgpu: add gem create fuzzing test (rev2)
URL : https://patchwork.freedesktop.org/series/131671/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14489 -> IGTPW_10924
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/index.html
Participating hosts (38 -> 35)
------------------------------
Additional (2): bat-dg1-7 fi-kbl-8809g
Missing (5): bat-arls-4 fi-snb-2520m fi-cfl-8109u bat-atsm-1 bat-dg2-11
Known issues
------------
Here are the changes found in IGTPW_10924 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-14: [PASS][1] -> [FAIL][2] ([i915#10378])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/bat-dg2-14/igt@gem_lmem_swapping@basic@lmem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg2-14/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_mmap@basic:
- bat-dg1-7: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@hangcheck:
- bat-mtlp-6: [PASS][7] -> [DMESG-WARN][8] ([i915#9522])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@reset:
- bat-adlm-1: [PASS][9] -> [INCOMPLETE][10] ([i915#10231])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/bat-adlm-1/igt@i915_selftest@live@reset.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-adlm-1/igt@i915_selftest@live@reset.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][11] ([i915#4212]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#4215])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][13] ([i915#4103] / [i915#4213]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#3840])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg1-7: NOTRUN -> [SKIP][15]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][16] ([i915#433])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#5354])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#1072] / [i915#9732]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#3555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg1-7: NOTRUN -> [SKIP][20] ([i915#3708]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
* igt@runner@aborted:
- fi-kbl-8809g: NOTRUN -> [FAIL][22] ([i915#4991])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/fi-kbl-8809g/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- bat-rpls-3: [DMESG-WARN][23] ([i915#5591]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@ring_submission:
- bat-dg2-14: [ABORT][25] ([i915#10366]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/bat-dg2-14/igt@i915_selftest@live@ring_submission.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/bat-dg2-14/igt@i915_selftest@live@ring_submission.html
[i915#10231]: https://gitlab.freedesktop.org/drm/intel/issues/10231
[i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[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#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#9522]: https://gitlab.freedesktop.org/drm/intel/issues/9522
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7785 -> IGTPW_10924
CI-20190529: 20190529
CI_DRM_14489: f9c56f1a03b5c35488671e4ffe61e28b12ffe163 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10924: 10924
IGT_7785: 7785
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/index.html
[-- Attachment #2: Type: text/html, Size: 9132 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* ✗ Fi.CI.IGT: failure for tests/amdgpu: add gem create fuzzing test (rev2)
2024-03-27 4:27 [PATCH] tests/amdgpu: add gem create fuzzing test vitaly.prosyak
` (2 preceding siblings ...)
2024-03-27 5:30 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-03-28 1:44 ` Patchwork
2024-03-28 13:01 ` [PATCH] tests/amdgpu: add gem create fuzzing test Kamil Konieczny
4 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-03-28 1:44 UTC (permalink / raw)
To: vitaly.prosyak; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 96384 bytes --]
== Series Details ==
Series: tests/amdgpu: add gem create fuzzing test (rev2)
URL : https://patchwork.freedesktop.org/series/131671/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14489_full -> IGTPW_10924_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10924_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10924_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10924_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-6/igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4:
- shard-dg1: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a4.html
* igt@kms_plane@pixel-format@pipe-a:
- shard-mtlp: [PASS][4] -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-a.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-a.html
Known issues
------------
Here are the changes found in IGTPW_10924_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +6 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-13/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@busy@bcs0:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +12 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-6/igt@drm_fdinfo@busy@bcs0.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][9] ([i915#7742])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@isolation@vcs1:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +11 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-11/igt@drm_fdinfo@isolation@vcs1.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#3936])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-3/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [PASS][16] -> [ABORT][17] ([i915#9846])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#8562])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-8/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-snb2/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-1/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@gem_ctx_sseu@invalid-sseu.html
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][26] ([i915#5784])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-2/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html
- shard-tglu: NOTRUN -> [FAIL][32] ([i915#6117])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#6334]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#6334])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#6334])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-rkl: NOTRUN -> [FAIL][36] ([i915#9606])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [PASS][39] -> [FAIL][40] ([i915#2842])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-9/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2842]) +2 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +4 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +11 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +15 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-13/igt@gem_exec_schedule@preempt-queue.html
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-7/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#2190])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-glk1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-multi@lmem0:
- shard-dg1: [PASS][56] -> [FAIL][57] ([i915#10378])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg1-15/igt@gem_lmem_swapping@heavy-multi@lmem0.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@gem_lmem_swapping@heavy-multi@lmem0.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg2: [PASS][59] -> [FAIL][60] ([i915#10378])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-7/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#284])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-6/igt@gem_media_vme.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-4/igt@gem_mmap@bad-size.html
* igt@gem_mmap@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@gem_mmap@pf-nonblock.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +12 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +16 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@gem_mmap_wc@write-read.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +9 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-6/igt@gem_pread@snoop.html
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@gem_pread@snoop.html
* igt@gem_pxp@create-regular-buffer:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-2/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#4270])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#4270])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-4/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#8411])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4885])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4885])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4885])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4079]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4879])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-4/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][98] ([i915#6227])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-snb7/igt@i915_module_load@load.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#6227])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-13/igt@i915_module_load@load.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][100] -> [INCOMPLETE][101] ([i915#9849])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-snb7/igt@i915_module_load@reload-no-display.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-snb7/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: NOTRUN -> [ABORT][102] ([i915#10131] / [i915#9697])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#8399])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#6590])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: NOTRUN -> [FAIL][105] ([i915#3591])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rpm@gem-evict-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#4077]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@i915_pm_rpm@gem-evict-pwrite.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#6621])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][108] ([i915#8346])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-1/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8925])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-idle-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3555] / [i915#8925])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@i915_pm_rps@thresholds-idle-park@gt1.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#8925]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4387])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#6188])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-mtlp: [PASS][114] -> [INCOMPLETE][115] ([i915#8797])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-mtlp-6/igt@i915_suspend@basic-s2idle-without-i915.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-4/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#7707])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@intel_hwmon@hwmon-write.html
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#7707]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4212]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#4212])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#4212])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#8709]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#8709]) +7 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#6228])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#9531])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#1769] / [i915#3555])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +6 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#5286]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#5286]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][130] +11 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#3638]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#3638]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +10 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#5190]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][135] -> [FAIL][136] ([i915#3743])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6187])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@2x-modeset:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#2705])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-1/igt@kms_big_joiner@2x-modeset.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#2705])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-13/igt@kms_big_joiner@2x-modeset.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#2705])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-5/igt@kms_big_joiner@2x-modeset.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#2705])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@kms_big_joiner@invalid-modeset.html
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#2705])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#6095]) +87 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#6095]) +71 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#10278])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#6095]) +19 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +31 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#10278])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#6095]) +145 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#10278]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][153] +117 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#7213]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3742])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_cdclk@plane-scaling.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3742])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-10/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#7828]) +9 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#7828]) +5 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#7828]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#7828]) +13 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#7828]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#9424]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#3299])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3299])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#9424])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#9424]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#7118])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_content_protection@srm.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#7118])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_content_protection@srm.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#7116])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#7118] / [i915#9424])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#7118] / [i915#9424])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#7116] / [i915#9424])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-13/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3555]) +3 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8814])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#4423])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3359]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-9/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8814]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#3555]) +5 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3359]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3359])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#9809]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#4213])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#4103] / [i915#4213])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#4103])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_cursor_legacy@single-move@pipe-a:
- shard-rkl: [PASS][186] -> [DMESG-WARN][187] ([i915#10166])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-rkl-1/igt@kms_cursor_legacy@single-move@pipe-a.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@kms_cursor_legacy@single-move@pipe-a.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#9227])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#9723])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#9723])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9833])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#8812]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3840] / [i915#9688])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3840] / [i915#9688])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3840])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#3840] / [i915#9053])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#3840] / [i915#9053])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#2065] / [i915#4854])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-10/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#4854])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#1839])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#1839])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#9337])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#658])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3637]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#3637]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#9934]) +5 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#3637] / [i915#3966])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][211] +26 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][212] +35 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#8381]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8381])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4:
- shard-dg1: [PASS][215] -> [FAIL][216] ([i915#2122])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a4.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a2:
- shard-dg2: NOTRUN -> [FAIL][217] ([i915#2122]) +3 other tests fail
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_flip@plain-flip-ts-check-interruptible@c-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#2587] / [i915#2672])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#2672]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#2672] / [i915#3555])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [PASS][224] -> [FAIL][225] ([i915#6880])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][226] +72 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#8708]) +21 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#8708]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#5439])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][230] +41 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#3458]) +18 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#1825]) +29 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#8708]) +25 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#1825]) +25 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#10055])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3023]) +15 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#5354]) +35 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#3458]) +23 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +4 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_hdr@static-swap.html
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-1/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#6301])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][245] ([i915#4573]) +1 other test fail
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#3555]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#5354] / [i915#9423])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#6953])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#6953] / [i915#9423])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#9423]) +7 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#9423]) +5 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#5176] / [i915#9423]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#5235]) +9 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#5235]) +7 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#5235]) +5 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#5235]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#5235] / [i915#9423]) +11 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#5354])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#9685])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#10139])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#3361])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#8430])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#9519]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#9519])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][266] -> [SKIP][267] ([i915#9519])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#9519])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#6524] / [i915#6805])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#9808]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-6/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2-pipe-b-edp-1.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#9683])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#9683])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#9683]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#4348])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9732]) +15 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#9688]) +8 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#1072] / [i915#9732]) +22 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +28 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-cursor-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#9732]) +10 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-4/igt@kms_psr@psr-cursor-mmap-gtt.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#4077] / [i915#9688])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-11/igt@kms_psr@psr2-primary-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg1: [PASS][282] -> [DMESG-WARN][283] ([i915#4423])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg1-18/igt@kms_rotation_crc@bad-pixel-format.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#4235]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#4884])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#4235]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#5289])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#5289])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#4235] / [i915#5190])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#5030]) +2 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#5030] / [i915#9041])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#3555]) +10 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][293] ([IGT#2] / [i915#6493])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#8623])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#8623])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][296] -> [FAIL][297] ([i915#9196])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#8808] / [i915#9906])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-check-output:
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#2437])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@kms_writeback@writeback-check-output.html
- shard-glk: NOTRUN -> [SKIP][300] ([i915#2437])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-glk1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#2437] / [i915#9412])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#2437] / [i915#9412])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2437] / [i915#9412])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#2437])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-7/igt@kms_writeback@writeback-fb-id.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#7387])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@perf@global-sseu-config-invalid.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][306] ([i915#7484])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#2433])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-17/igt@perf@unprivileged-single-ctx-counters.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#3708])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-14/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#3708] / [i915#4077])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#3291] / [i915#3708])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-8/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#10216] / [i915#3708])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#3708] / [i915#4077])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#3708])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-1/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#9917])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#4818])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#4818])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_mmap@mmap-bad-flags:
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#2575]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-3/igt@v3d/v3d_mmap@mmap-bad-flags.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#2575]) +9 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_perfmon@get-values-invalid-pad:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#2575]) +16 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@v3d/v3d_perfmon@get-values-invalid-pad.html
* igt@v3d/v3d_submit_csd@single-out-sync:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#2575]) +15 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@v3d/v3d_submit_csd@single-out-sync.html
* igt@v3d/v3d_wait_bo@bad-pad:
- shard-snb: NOTRUN -> [SKIP][321] +213 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-snb4/igt@v3d/v3d_wait_bo@bad-pad.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#7711]) +7 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_tiling@get-bad-flags:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#7711]) +4 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@vc4/vc4_tiling@get-bad-flags.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#7711]) +9 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@vc4/vc4_wait_bo@used-bo-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#7711]) +3 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-8/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][326] ([i915#6268]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@smoketest:
- shard-dg1: [INCOMPLETE][328] -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg1-16/igt@gem_ctx_persistence@smoketest.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-18/igt@gem_ctx_persistence@smoketest.html
* igt@gem_eio@kms:
- shard-tglu: [INCOMPLETE][330] ([i915#10513]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-tglu-5/igt@gem_eio@kms.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-7/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][332] ([i915#5784]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-8/igt@gem_eio@reset-stress.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-2/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [FAIL][334] ([i915#2842]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-tglu-5/igt@gem_exec_fair@basic-none-share@rcs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_parallel@fds@vcs1:
- shard-mtlp: [ABORT][336] -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-mtlp-4/igt@gem_exec_parallel@fds@vcs1.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-1/igt@gem_exec_parallel@fds@vcs1.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][338] ([i915#5493]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [ABORT][340] ([i915#5566]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-glk5/igt@gen9_exec_parse@allowed-single.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-glk9/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [INCOMPLETE][342] ([i915#9849]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg2: [INCOMPLETE][344] -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][346] ([i915#3743]) -> [PASS][347] +1 other test pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-edp-1-4-rc-ccs-cc-to-linear:
- shard-mtlp: [DMESG-WARN][348] ([i915#1982]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-mtlp-2/igt@kms_flip_tiling@flip-change-tiling@pipe-d-edp-1-4-rc-ccs-cc-to-linear.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-mtlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-edp-1-4-rc-ccs-cc-to-linear.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][350] ([i915#9295]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [FAIL][352] ([i915#9196]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
#### Warnings ####
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg2: [FAIL][354] ([i915#10378]) -> [FAIL][355] ([i915#10446])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [INCOMPLETE][356] ([i915#9697] / [i915#9849]) -> [INCOMPLETE][357] ([i915#9820] / [i915#9849])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg1: [SKIP][358] -> [SKIP][359] ([i915#4423])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][360] ([i915#4281]) -> [SKIP][361] ([i915#3361])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@pr-cursor-render:
- shard-dg2: [SKIP][362] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][363] ([i915#1072] / [i915#9732]) +6 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-11/igt@kms_psr@pr-cursor-render.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-5/igt@kms_psr@pr-cursor-render.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-dg2: [SKIP][364] ([i915#1072] / [i915#9732]) -> [SKIP][365] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-3/igt@kms_psr@pr-primary-mmap-cpu.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-11/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [CRASH][366] ([i915#9351]) -> [INCOMPLETE][367] ([i915#5493])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14489/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166
[i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216
[i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378
[i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434
[i915#10446]: https://gitlab.freedesktop.org/drm/intel/issues/10446
[i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[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#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[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#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9041]: https://gitlab.freedesktop.org/drm/intel/issues/9041
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846
[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/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7785 -> IGTPW_10924
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14489: f9c56f1a03b5c35488671e4ffe61e28b12ffe163 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10924: 10924
IGT_7785: 7785
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10924/index.html
[-- Attachment #2: Type: text/html, Size: 119226 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [PATCH] tests/amdgpu: add gem create fuzzing test
2024-03-27 4:27 [PATCH] tests/amdgpu: add gem create fuzzing test vitaly.prosyak
` (3 preceding siblings ...)
2024-03-28 1:44 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-03-28 13:01 ` Kamil Konieczny
2024-03-28 13:04 ` vitaly prosyak
4 siblings, 1 reply; 10+ messages in thread
From: Kamil Konieczny @ 2024-03-28 13:01 UTC (permalink / raw)
To: igt-dev
Cc: vitaly.prosyak, Alex Deucher, Christian Koenig, Joonkyo Jung,
Jesse Zhang, Tvrtko Ursulin
Hi Vitaly,
On 2024-03-27 at 00:27:03 -0400, vitaly.prosyak@amd.com wrote:
> From: Vitaly Prosyak <vitaly.prosyak@amd.com>
>
You didn't address my comments, I have also more nits, first is
your code fails in GitLab check:
meson test -C build
> The bug in amdgpu was found using customized Syzkaller and with Kazan enabled.
> Report a slab-use-after-free bug in the AMDGPU DRM driver.
> Ftrace enablement is mandatory precondition to reproduce the error once after boot.
> The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Instead of this write it as Reported-by: before your Signed-off-by:
>
> The following scenario is a different reproduction of same issue:
> BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
> https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646.
imho (note final dot removed) it is better:
https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
>
> Fix Christian König ckoenig.leichtzumerken at gmail.com
> https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html.
Same here (final dot).
>
> The issue is visible only when Kazan enables and dumps to the kernel log:
> BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90.
Add newline here.
Regards,
Kamil
> We accessed the freed memory during the ftrace enablement in a
> amdgpu_bo_move_notify.
>
> The test amd_gem_create_fuzzing does amdgpu_bo_reserve 2 times.
>
> Signed-off-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: Christian Koenig <christian.koenig@amd.com>
> Cc: Joonkyo Jung <joonkyoj@yonsei.ac.kr>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Jesse Zhang <Jesse.Zhang@amd.com>
> Cc: Tvrtko Ursulin <tursulin@igalia.com>
> ---
> tests/amdgpu/amd_fuzzing.c | 69 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 69 insertions(+)
>
> diff --git a/tests/amdgpu/amd_fuzzing.c b/tests/amdgpu/amd_fuzzing.c
> index 69c9e8dad..dccac8cc1 100644
> --- a/tests/amdgpu/amd_fuzzing.c
> +++ b/tests/amdgpu/amd_fuzzing.c
> @@ -95,6 +95,67 @@ void amd_cs_wait_fuzzing(int fd, const enum amd_ip_block_type types[], int size)
> }
> }
>
> +static int
> +amdgpu_ftrace_enablement(const char *function, bool enable)
> +{
> + char cmd[128];
> + int ret;
> +
> + snprintf(cmd, sizeof(cmd),
> + "echo %s > /sys/kernel/debug/tracing/events/amdgpu/%s/enable",
> + enable == true ? "1":"0", function);
> + ret = igt_system(cmd);
> +
> + return ret;
> +}
> +
> +/* The bug was found using customized Syzkaller and with Kazan enabled.
> + * Report a slab-use-after-free bug in the AMDGPU DRM driver.
> + * Ftrace enablement is mandatory precondition to reproduce the error once after boot.
> + * The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
> + *
> + * BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
> + * https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
> + *
> + * Fix Christian König ckoenig.leichtzumerken at gmail.com
> + * https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html
> + *
> + * The issue is visible only when Kazan enables and dumps to the kernel log:
> + * BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90
> + * We accessed the freed memory during the ftrace enablement in a
> + * amdgpu_bo_move_notify.
> + * The test amd_gem_create_fuzzing does amdgpu_bo_reserve
> + */
> +static void
> +amd_gem_create_fuzzing(int fd)
> +{
> + static const char function_amdgpu_bo_move[] = "amdgpu_bo_move";
> + union drm_amdgpu_gem_create arg;
> + int ret;
> +
> + ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, true);
> + igt_assert_eq(ret, 0);
> + arg.in.bo_size = 0x8;
> + arg.in.alignment = 0x0;
> + arg.in.domains = 0x4;
> + arg.in.domain_flags = 0x9;
> + ret = drmIoctl(fd, 0xc0206440
> + /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
> + igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
> +
> + arg.in.bo_size = 0x7fffffff;
> + arg.in.alignment = 0x0;
> + arg.in.domains = 0x4;
> + arg.in.domain_flags = 0x9;
> + ret = drmIoctl(fd, 0xc0206440
> + /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
> + igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
> +
> + ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, false);
> + igt_assert_eq(ret, 0);
> +
> +}
> +
> igt_main
> {
> int fd = -1;
> @@ -114,6 +175,14 @@ igt_main
> igt_subtest("cs-wait-fuzzing")
> amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
>
> + igt_describe("Check cs wait fuzzing");
> + igt_subtest("cs-wait-fuzzing")
> + amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
> +
> + igt_describe("Check gem create fuzzing");
> + igt_subtest("gem-create-fuzzing")
> + amd_gem_create_fuzzing(fd);
> +
> igt_fixture {
> drm_close_driver(fd);
> }
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [PATCH] tests/amdgpu: add gem create fuzzing test
2024-03-28 13:01 ` [PATCH] tests/amdgpu: add gem create fuzzing test Kamil Konieczny
@ 2024-03-28 13:04 ` vitaly prosyak
0 siblings, 0 replies; 10+ messages in thread
From: vitaly prosyak @ 2024-03-28 13:04 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev, vitaly.prosyak, Alex Deucher,
Christian Koenig, Joonkyo Jung, Jesse Zhang, Tvrtko Ursulin
Hi Kamil,
Thanks for your email!
On 2024-03-28 09:01, Kamil Konieczny wrote:
> Hi Vitaly,
>
> On 2024-03-27 at 00:27:03 -0400, vitaly.prosyak@amd.com wrote:
>> From: Vitaly Prosyak <vitaly.prosyak@amd.com>
>>
> You didn't address my comments, I have also more nits, first is
> your code fails in GitLab check:
Sorry for delay, i will do
>
> meson test -C build
>
>> The bug in amdgpu was found using customized Syzkaller and with Kazan enabled.
>> Report a slab-use-after-free bug in the AMDGPU DRM driver.
>> Ftrace enablement is mandatory precondition to reproduce the error once after boot.
>> The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
> - ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> Instead of this write it as Reported-by: before your Signed-off-by:
>
>> The following scenario is a different reproduction of same issue:
>> BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
>> https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646.
> imho (note final dot removed) it is better:
> https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
>
>> Fix Christian König ckoenig.leichtzumerken at gmail.com
>> https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html.
> Same here (final dot).
>
>> The issue is visible only when Kazan enables and dumps to the kernel log:
>> BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90.
> Add newline here.
>
> Regards,
> Kamil
>
>> We accessed the freed memory during the ftrace enablement in a
>> amdgpu_bo_move_notify.
>>
>> The test amd_gem_create_fuzzing does amdgpu_bo_reserve 2 times.
>>
>> Signed-off-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
>> Cc: Alex Deucher <alexander.deucher@amd.com>
>> Cc: Christian Koenig <christian.koenig@amd.com>
>> Cc: Joonkyo Jung <joonkyoj@yonsei.ac.kr>
>> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>> Cc: Jesse Zhang <Jesse.Zhang@amd.com>
>> Cc: Tvrtko Ursulin <tursulin@igalia.com>
>> ---
>> tests/amdgpu/amd_fuzzing.c | 69 ++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 69 insertions(+)
>>
>> diff --git a/tests/amdgpu/amd_fuzzing.c b/tests/amdgpu/amd_fuzzing.c
>> index 69c9e8dad..dccac8cc1 100644
>> --- a/tests/amdgpu/amd_fuzzing.c
>> +++ b/tests/amdgpu/amd_fuzzing.c
>> @@ -95,6 +95,67 @@ void amd_cs_wait_fuzzing(int fd, const enum amd_ip_block_type types[], int size)
>> }
>> }
>>
>> +static int
>> +amdgpu_ftrace_enablement(const char *function, bool enable)
>> +{
>> + char cmd[128];
>> + int ret;
>> +
>> + snprintf(cmd, sizeof(cmd),
>> + "echo %s > /sys/kernel/debug/tracing/events/amdgpu/%s/enable",
>> + enable == true ? "1":"0", function);
>> + ret = igt_system(cmd);
>> +
>> + return ret;
>> +}
>> +
>> +/* The bug was found using customized Syzkaller and with Kazan enabled.
>> + * Report a slab-use-after-free bug in the AMDGPU DRM driver.
>> + * Ftrace enablement is mandatory precondition to reproduce the error once after boot.
>> + * The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
>> + *
>> + * BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
>> + * https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
>> + *
>> + * Fix Christian König ckoenig.leichtzumerken at gmail.com
>> + * https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html
>> + *
>> + * The issue is visible only when Kazan enables and dumps to the kernel log:
>> + * BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90
>> + * We accessed the freed memory during the ftrace enablement in a
>> + * amdgpu_bo_move_notify.
>> + * The test amd_gem_create_fuzzing does amdgpu_bo_reserve
>> + */
>> +static void
>> +amd_gem_create_fuzzing(int fd)
>> +{
>> + static const char function_amdgpu_bo_move[] = "amdgpu_bo_move";
>> + union drm_amdgpu_gem_create arg;
>> + int ret;
>> +
>> + ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, true);
>> + igt_assert_eq(ret, 0);
>> + arg.in.bo_size = 0x8;
>> + arg.in.alignment = 0x0;
>> + arg.in.domains = 0x4;
>> + arg.in.domain_flags = 0x9;
>> + ret = drmIoctl(fd, 0xc0206440
>> + /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
>> + igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
>> +
>> + arg.in.bo_size = 0x7fffffff;
>> + arg.in.alignment = 0x0;
>> + arg.in.domains = 0x4;
>> + arg.in.domain_flags = 0x9;
>> + ret = drmIoctl(fd, 0xc0206440
>> + /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
>> + igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
>> +
>> + ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, false);
>> + igt_assert_eq(ret, 0);
>> +
>> +}
>> +
>> igt_main
>> {
>> int fd = -1;
>> @@ -114,6 +175,14 @@ igt_main
>> igt_subtest("cs-wait-fuzzing")
>> amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
>>
>> + igt_describe("Check cs wait fuzzing");
>> + igt_subtest("cs-wait-fuzzing")
>> + amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
>> +
>> + igt_describe("Check gem create fuzzing");
>> + igt_subtest("gem-create-fuzzing")
>> + amd_gem_create_fuzzing(fd);
>> +
>> igt_fixture {
>> drm_close_driver(fd);
>> }
>> --
>> 2.25.1
Thanks, Vitaly
>>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] tests/amdgpu: add gem create fuzzing test
@ 2024-03-27 4:00 vitaly.prosyak
2024-03-27 14:14 ` Kamil Konieczny
0 siblings, 1 reply; 10+ messages in thread
From: vitaly.prosyak @ 2024-03-27 4:00 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Joonkyo Jung,
Kamil Konieczny, Jesse Zhang, Tvrtko Ursulin
From: Vitaly Prosyak <vitaly.prosyak@amd.com>
The bug in amdgpu was found using customized Syzkaller and with Kazan enabled.
Report a slab-use-after-free bug in the AMDGPU DRM driver.
Ftrace enablement is mandatory precondition to reproduce the error once after boot.
The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
The following scenario is a different reproduction of same issue:
BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646.
Fix Christian König ckoenig.leichtzumerken at gmail.com
https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html.
The issue is visible only when Kazan enables and dumps to the kernel log:
BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90.
We accessed the freed memory during the ftrace enablement in a
amdgpu_bo_move_notify.
The test amd_gem_create_fuzzing does amdgpu_bo_reserve 2 times.
Signed-off-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Joonkyo Jung <joonkyoj@yonsei.ac.kr>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Jesse Zhang <Jesse.Zhang@amd.com>
Cc: Tvrtko Ursulin <tursulin@igalia.com>
---
tests/amdgpu/amd_fuzzing.c | 69 ++++++++++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/tests/amdgpu/amd_fuzzing.c b/tests/amdgpu/amd_fuzzing.c
index 69c9e8dad..dccac8cc1 100644
--- a/tests/amdgpu/amd_fuzzing.c
+++ b/tests/amdgpu/amd_fuzzing.c
@@ -95,6 +95,67 @@ void amd_cs_wait_fuzzing(int fd, const enum amd_ip_block_type types[], int size)
}
}
+static int
+amdgpu_ftrace_enablement(const char *function, bool enable)
+{
+ char cmd[128];
+ int ret;
+
+ snprintf(cmd, sizeof(cmd),
+ "echo %s > /sys/kernel/debug/tracing/events/amdgpu/%s/enable",
+ enable == true ? "1":"0", function);
+ ret = igt_system(cmd);
+
+ return ret;
+}
+
+/* The bug was found using customized Syzkaller and with Kazan enabled.
+ * Report a slab-use-after-free bug in the AMDGPU DRM driver.
+ * Ftrace enablement is mandatory precondition to reproduce the error once after boot.
+ * The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
+ *
+ * BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
+ * https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
+ *
+ * Fix Christian König ckoenig.leichtzumerken at gmail.com
+ * https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html
+ *
+ * The issue is visible only when Kazan enables and dumps to the kernel log:
+ * BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90
+ * We accessed the freed memory during the ftrace enablement in a
+ * amdgpu_bo_move_notify.
+ * The test amd_gem_create_fuzzing does amdgpu_bo_reserve
+ */
+static void
+amd_gem_create_fuzzing(int fd)
+{
+ static const char function_amdgpu_bo_move[] = "amdgpu_bo_move";
+ union drm_amdgpu_gem_create arg;
+ int ret;
+
+ ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, true);
+ igt_assert_eq(ret, 0);
+ arg.in.bo_size = 0x8;
+ arg.in.alignment = 0x0;
+ arg.in.domains = 0x4;
+ arg.in.domain_flags = 0x9;
+ ret = drmIoctl(fd, 0xc0206440
+ /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
+ igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
+
+ arg.in.bo_size = 0x7fffffff;
+ arg.in.alignment = 0x0;
+ arg.in.domains = 0x4;
+ arg.in.domain_flags = 0x9;
+ ret = drmIoctl(fd, 0xc0206440
+ /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
+ igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
+
+ ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, false);
+ igt_assert_eq(ret, 0);
+
+}
+
igt_main
{
int fd = -1;
@@ -114,6 +175,14 @@ igt_main
igt_subtest("cs-wait-fuzzing")
amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
+ igt_describe("Check cs wait fuzzing");
+ igt_subtest("cs-wait-fuzzing")
+ amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
+
+ igt_describe("Check gem create fuzzing");
+ igt_subtest("gem-create-fuzzing")
+ amd_gem_create_fuzzing(fd);
+
igt_fixture {
drm_close_driver(fd);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH] tests/amdgpu: add gem create fuzzing test
2024-03-27 4:00 vitaly.prosyak
@ 2024-03-27 14:14 ` Kamil Konieczny
2024-04-07 2:55 ` Zhang, Jesse(Jie)
0 siblings, 1 reply; 10+ messages in thread
From: Kamil Konieczny @ 2024-03-27 14:14 UTC (permalink / raw)
To: igt-dev
Cc: vitaly.prosyak, Alex Deucher, Christian Koenig, Joonkyo Jung,
Jesse Zhang, Tvrtko Ursulin
Hi Vitaly,
On 2024-03-27 at 00:00:55 -0400, vitaly.prosyak@amd.com wrote:
> From: Vitaly Prosyak <vitaly.prosyak@amd.com>
>
> The bug in amdgpu was found using customized Syzkaller and with Kazan enabled.
> Report a slab-use-after-free bug in the AMDGPU DRM driver.
> Ftrace enablement is mandatory precondition to reproduce the error once after boot.
> The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
>
> The following scenario is a different reproduction of same issue:
> BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
> https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646.
-------------------------------------------------------------------^
Please no dots at end of https links, so:
https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
>
> Fix Christian König ckoenig.leichtzumerken at gmail.com
> https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html.
Same here, remove dot at end of link.
>
> The issue is visible only when Kazan enables and dumps to the kernel log:
> BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90.
> We accessed the freed memory during the ftrace enablement in a
> amdgpu_bo_move_notify.
>
> The test amd_gem_create_fuzzing does amdgpu_bo_reserve 2 times.
>
imho add here:
Reported-by: Christian König <ckoenig.leichtzumerken@gmail.com>
Reported-by: Joonkyo Jung <joonkyoj@yonsei.ac.kr>
> Signed-off-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: Christian Koenig <christian.koenig@amd.com>
> Cc: Joonkyo Jung <joonkyoj@yonsei.ac.kr>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Jesse Zhang <Jesse.Zhang@amd.com>
> Cc: Tvrtko Ursulin <tursulin@igalia.com>
> ---
> tests/amdgpu/amd_fuzzing.c | 69 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 69 insertions(+)
>
> diff --git a/tests/amdgpu/amd_fuzzing.c b/tests/amdgpu/amd_fuzzing.c
> index 69c9e8dad..dccac8cc1 100644
> --- a/tests/amdgpu/amd_fuzzing.c
> +++ b/tests/amdgpu/amd_fuzzing.c
> @@ -95,6 +95,67 @@ void amd_cs_wait_fuzzing(int fd, const enum amd_ip_block_type types[], int size)
> }
> }
>
> +static int
> +amdgpu_ftrace_enablement(const char *function, bool enable)
> +{
> + char cmd[128];
> + int ret;
> +
> + snprintf(cmd, sizeof(cmd),
> + "echo %s > /sys/kernel/debug/tracing/events/amdgpu/%s/enable",
> + enable == true ? "1":"0", function);
> + ret = igt_system(cmd);
> +
> + return ret;
> +}
> +
> +/* The bug was found using customized Syzkaller and with Kazan enabled.
> + * Report a slab-use-after-free bug in the AMDGPU DRM driver.
> + * Ftrace enablement is mandatory precondition to reproduce the error once after boot.
> + * The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
> + *
> + * BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710 [amdgpu]
> + * https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
> + *
> + * Fix Christian König ckoenig.leichtzumerken at gmail.com
> + * https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html
> + *
> + * The issue is visible only when Kazan enables and dumps to the kernel log:
> + * BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90
> + * We accessed the freed memory during the ftrace enablement in a
> + * amdgpu_bo_move_notify.
> + * The test amd_gem_create_fuzzing does amdgpu_bo_reserve
> + */
> +static void
> +amd_gem_create_fuzzing(int fd)
> +{
> + static const char function_amdgpu_bo_move[] = "amdgpu_bo_move";
> + union drm_amdgpu_gem_create arg;
> + int ret;
> +
> + ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, true);
> + igt_assert_eq(ret, 0);
> + arg.in.bo_size = 0x8;
> + arg.in.alignment = 0x0;
> + arg.in.domains = 0x4;
> + arg.in.domain_flags = 0x9;
> + ret = drmIoctl(fd, 0xc0206440
> + /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
> + igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
> +
> + arg.in.bo_size = 0x7fffffff;
> + arg.in.alignment = 0x0;
> + arg.in.domains = 0x4;
> + arg.in.domain_flags = 0x9;
> + ret = drmIoctl(fd, 0xc0206440
> + /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
> + igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
> +
> + ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, false);
> + igt_assert_eq(ret, 0);
> +
> +}
> +
> igt_main
> {
> int fd = -1;
> @@ -114,6 +175,14 @@ igt_main
> igt_subtest("cs-wait-fuzzing")
---------------- ^
> amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
------- ^
>
> + igt_describe("Check cs wait fuzzing");
> + igt_subtest("cs-wait-fuzzing")
---------------- ^
You have that exact subtest above? is it copy-paste?
> + amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
------- ^
Same as above.
> +
> + igt_describe("Check gem create fuzzing");
> + igt_subtest("gem-create-fuzzing")
> + amd_gem_create_fuzzing(fd);
> +
Just curious, will it work with --r ?
sudo tests/amd_fuzzing --r cs-wait-fuzzing
and
sudo tests/amd_fuzzing --r gem-create-fuzzing
Regards,
Kamil
> igt_fixture {
> drm_close_driver(fd);
> }
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread* RE: [PATCH] tests/amdgpu: add gem create fuzzing test
2024-03-27 14:14 ` Kamil Konieczny
@ 2024-04-07 2:55 ` Zhang, Jesse(Jie)
0 siblings, 0 replies; 10+ messages in thread
From: Zhang, Jesse(Jie) @ 2024-04-07 2:55 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
Cc: Prosyak, Vitaly, Deucher, Alexander, Koenig, Christian,
Joonkyo Jung, Tvrtko Ursulin
[AMD Official Use Only - General]
Hi Kamil
-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Wednesday, March 27, 2024 10:15 PM
To: igt-dev@lists.freedesktop.org
Cc: Prosyak, Vitaly <Vitaly.Prosyak@amd.com>; Deucher, Alexander <Alexander.Deucher@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; Joonkyo Jung <joonkyoj@yonsei.ac.kr>; Zhang, Jesse(Jie) <Jesse.Zhang@amd.com>; Tvrtko Ursulin <tursulin@igalia.com>
Subject: Re: [PATCH] tests/amdgpu: add gem create fuzzing test
Hi Vitaly,
On 2024-03-27 at 00:00:55 -0400, vitaly.prosyak@amd.com wrote:
> From: Vitaly Prosyak <vitaly.prosyak@amd.com>
>
> The bug in amdgpu was found using customized Syzkaller and with Kazan enabled.
> Report a slab-use-after-free bug in the AMDGPU DRM driver.
> Ftrace enablement is mandatory precondition to reproduce the error once after boot.
> The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
>
> The following scenario is a different reproduction of same issue:
> BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710
> [amdgpu] https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646.
-------------------------------------------------------------------^
Please no dots at end of https links, so:
https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
>
> Fix Christian König ckoenig.leichtzumerken at gmail.com
> https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html.
Same here, remove dot at end of link.
>
> The issue is visible only when Kazan enables and dumps to the kernel log:
> BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90.
> We accessed the freed memory during the ftrace enablement in a
> amdgpu_bo_move_notify.
>
> The test amd_gem_create_fuzzing does amdgpu_bo_reserve 2 times.
>
imho add here:
Reported-by: Christian König <ckoenig.leichtzumerken@gmail.com>
Reported-by: Joonkyo Jung <joonkyoj@yonsei.ac.kr>
> Signed-off-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: Christian Koenig <christian.koenig@amd.com>
> Cc: Joonkyo Jung <joonkyoj@yonsei.ac.kr>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Jesse Zhang <Jesse.Zhang@amd.com>
> Cc: Tvrtko Ursulin <tursulin@igalia.com>
> ---
> tests/amdgpu/amd_fuzzing.c | 69
> ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 69 insertions(+)
>
> diff --git a/tests/amdgpu/amd_fuzzing.c b/tests/amdgpu/amd_fuzzing.c
> index 69c9e8dad..dccac8cc1 100644
> --- a/tests/amdgpu/amd_fuzzing.c
> +++ b/tests/amdgpu/amd_fuzzing.c
> @@ -95,6 +95,67 @@ void amd_cs_wait_fuzzing(int fd, const enum amd_ip_block_type types[], int size)
> }
> }
>
> +static int
> +amdgpu_ftrace_enablement(const char *function, bool enable) {
> + char cmd[128];
> + int ret;
> +
> + snprintf(cmd, sizeof(cmd),
> + "echo %s > /sys/kernel/debug/tracing/events/amdgpu/%s/enable",
> + enable == true ? "1":"0", function);
> + ret = igt_system(cmd);
> +
> + return ret;
> +}
> +
> +/* The bug was found using customized Syzkaller and with Kazan enabled.
> + * Report a slab-use-after-free bug in the AMDGPU DRM driver.
> + * Ftrace enablement is mandatory precondition to reproduce the error once after boot.
> + * The bug was reported by Joonkyo Jung <joonkyoj@yonsei.ac.kr>.
> + *
> + * BUG: KFENCE: use-after-free read in amdgpu_bo_move+0x1ce/0x710
> +[amdgpu]
> + * https://gitlab.freedesktop.org/drm/amd/-/issues/3171#note_2287646
> + *
> + * Fix Christian König ckoenig.leichtzumerken at gmail.com
> + *
> +https://lists.freedesktop.org/archives/amd-gfx/2024-March/105680.html
> + *
> + * The issue is visible only when Kazan enables and dumps to the kernel log:
> + * BUG: KASAN: slab-use-after-free in amdgpu_bo_move+0x974/0xd90
> + * We accessed the freed memory during the ftrace enablement in a
> + * amdgpu_bo_move_notify.
> + * The test amd_gem_create_fuzzing does amdgpu_bo_reserve */ static
> +void amd_gem_create_fuzzing(int fd) {
> + static const char function_amdgpu_bo_move[] = "amdgpu_bo_move";
> + union drm_amdgpu_gem_create arg;
> + int ret;
> +
> + ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, true);
> + igt_assert_eq(ret, 0);
> + arg.in.bo_size = 0x8;
> + arg.in.alignment = 0x0;
> + arg.in.domains = 0x4;
> + arg.in.domain_flags = 0x9;
> + ret = drmIoctl(fd, 0xc0206440
> + /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
> + igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
> +
> + arg.in.bo_size = 0x7fffffff;
> + arg.in.alignment = 0x0;
> + arg.in.domains = 0x4;
> + arg.in.domain_flags = 0x9;
> + ret = drmIoctl(fd, 0xc0206440
> + /* DRM_AMDGPU_GEM_CREATE amdgpu_gem_create_ioctl */, &arg);
> + igt_info("drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret %d\n", ret);
> +
> + ret = amdgpu_ftrace_enablement(function_amdgpu_bo_move, false);
> + igt_assert_eq(ret, 0);
> +
> +}
> +
> igt_main
> {
> int fd = -1;
> @@ -114,6 +175,14 @@ igt_main
> igt_subtest("cs-wait-fuzzing")
---------------- ^
> amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
------- ^
>
> + igt_describe("Check cs wait fuzzing");
> + igt_subtest("cs-wait-fuzzing")
---------------- ^
You have that exact subtest above? is it copy-paste?
> + amd_cs_wait_fuzzing(fd, arr_types, ARRAY_SIZE(arr_types));
------- ^
Same as above.
> +
> + igt_describe("Check gem create fuzzing");
> + igt_subtest("gem-create-fuzzing")
> + amd_gem_create_fuzzing(fd);
> +
Just curious, will it work with --r ?
sudo tests/amd_fuzzing --r cs-wait-fuzzing and sudo tests/amd_fuzzing --r gem-create-fuzzing
Yes, they can work with --r. example:
IGT-Version: 1.28-gcab77f029 (x86_64) (Linux: 6.7.0+ x86_64)
Using IGT_SRANDOM=1712458363 for randomisation
Opened device: /dev/dri/card0
Starting subtest: gem-create-fuzzing
drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret 0
drmCommandWriteRead DRM_AMDGPU_GEM_CREATE ret 0
Subtest gem-create-fuzzing: SUCCESS (0.031s)
Regards,
Jesse
Regards,
Kamil
> igt_fixture {
> drm_close_driver(fd);
> }
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-04-07 2:55 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-27 4:27 [PATCH] tests/amdgpu: add gem create fuzzing test vitaly.prosyak
2024-03-27 5:03 ` ✗ GitLab.Pipeline: warning for tests/amdgpu: add gem create fuzzing test (rev2) Patchwork
2024-03-27 5:16 ` ✓ CI.xeBAT: success " Patchwork
2024-03-27 5:30 ` ✓ Fi.CI.BAT: " Patchwork
2024-03-28 1:44 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-03-28 13:01 ` [PATCH] tests/amdgpu: add gem create fuzzing test Kamil Konieczny
2024-03-28 13:04 ` vitaly prosyak
-- strict thread matches above, loose matches on Subject: below --
2024-03-27 4:00 vitaly.prosyak
2024-03-27 14:14 ` Kamil Konieczny
2024-04-07 2:55 ` Zhang, Jesse(Jie)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox