* [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests
@ 2026-07-17 7:52 Sobin Thomas
2026-07-17 9:04 ` ✓ Xe.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Sobin Thomas @ 2026-07-17 7:52 UTC (permalink / raw)
To: igt-dev, daniele.ceraolospurio
Add coverage for GT-specific debugfs entries by introducing a new
gt-dir subtest that validates the presence of required files in the
GT debugfs hierarchy. The test currently verifies the existence of
the following debugfs nodes:
- uc/gsc_info
- uc/huc_info
- uc/guc_info
- uc/guc_pc
These additions improve validation of Xe GT debugfs interfaces and
provide basic functional coverage for the GSC information debugfs node.
v2: Add support for guc and huc info (Daniele)
v3: Added checks for the device nodes.
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_debugfs.c | 120 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 119 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
index da482157e..e7d89ec9d 100644
--- a/tests/intel/xe_debugfs.c
+++ b/tests/intel/xe_debugfs.c
@@ -451,6 +451,32 @@ skip:
igt_skip("Failed to open debugfs directory\n");
}
+/**
+ * SUBTEST: gt-dir
+ * Description: Check required debugfs devnodes exist in the GT debugfs directory
+ */
+static void test_gt_dir(struct xe_device *xe_dev, unsigned int gt)
+{
+ const struct check_entry expected_files[] = {
+ { "uc/gsc_info", O_RDONLY },
+ { "uc/huc_info", O_RDONLY },
+ { "uc/guc_info", O_RDONLY },
+ { "uc/guc_pc", O_RDONLY },
+ };
+ int debugfs_fd = igt_debugfs_gt_dir(xe_dev->fd, gt);
+ int missing_count;
+
+ igt_skip_on_f(debugfs_fd < 0, "Failed to open debugfs directory\n");
+
+ missing_count = debugfs_validate_entries(xe_dev, debugfs_fd, expected_files,
+ ARRAY_SIZE(expected_files));
+
+ close(debugfs_fd);
+
+ igt_fail_on_f(missing_count > 0, "Found %d missing debugfs files (see warnings above)\n",
+ missing_count);
+}
+
/**
* SUBTEST: tile-dir
* Description: Check required debugfs devnodes exist in the tile debugfs directory
@@ -595,6 +621,71 @@ static void check_gt_reg_sr(int fd, int gt)
igt_assert_eq(problems, 0);
}
+static void test_uc_info_read(struct xe_device *xe_dev, unsigned int gt, const char *node,
+ bool mandatory)
+{
+ int debugfs_fd = igt_debugfs_gt_dir(xe_dev->fd, gt);
+ char *buf;
+
+ debugfs_fd = igt_debugfs_gt_dir(xe_dev->fd, gt);
+ igt_skip_on_f(debugfs_fd < 0, "Failed to open debugfs directory\n");
+
+ if (faccessat(debugfs_fd, node, F_OK, 0) < 0) {
+ close(debugfs_fd);
+ igt_fail_on_f(mandatory,
+ "Mandatory debugfs node %s is missing on GT-%u\n",
+ node, gt);
+
+ igt_skip("%s debugfs node not present on GT-%u\n",
+ node, gt);
+ }
+ buf = igt_sysfs_get(debugfs_fd, node);
+
+ igt_info("Successfully read %s: %zu bytes\n%s\n", node, strlen(buf), buf);
+
+ close(debugfs_fd);
+ igt_assert_f(buf, "Failed to read %s debugfs file\n", node);
+ igt_assert_f(buf[0] != '\0', "%s debugfs file is empty\n", node);
+ free(buf);
+}
+
+/**
+ * SUBTEST: gsc-info-read
+ * Description: Check GSC info debugfs devnode contents
+ */
+static void test_gsc_info_read(struct xe_device *xe_dev, unsigned int gt)
+{
+ test_uc_info_read(xe_dev, gt, "uc/gsc_info", false);
+}
+
+/**
+ * SUBTEST: huc-info-read
+ * Description: Check HUC info debugfs devnode contents
+ */
+static void test_huc_info_read(struct xe_device *xe_dev, unsigned int gt)
+{
+ test_uc_info_read(xe_dev, gt, "uc/huc_info", false);
+}
+
+/**
+ * SUBTEST: guc-pc-read
+ * Description: Read the guc pc info from the debugfs node contents
+ */
+
+static void test_guc_pc_info(struct xe_device *xe_dev, unsigned int gt)
+{
+ test_uc_info_read(xe_dev, gt, "uc/guc_pc", true);
+}
+
+/**
+ * SUBTEST: guc-info-read
+ * Description: Check GUC info debugfs devnode contents
+ */
+static void test_guc_info_read(struct xe_device *xe_dev, unsigned int gt)
+{
+ test_uc_info_read(xe_dev, gt, "uc/guc_info", true);
+}
+
const char *help_str =
" --warn-not-hit|--w\tWarn about devfs nodes that have no tests";
@@ -619,8 +710,9 @@ static int opt_handler(int option, int option_index, void *input)
int igt_main_args("", long_options, help_str, opt_handler, NULL)
{
struct xe_device *xe_dev;
+ unsigned int gt;
unsigned int t;
- int fd = -1, gt;
+ int fd = -1;
igt_fixture() {
fd = drm_open_driver_master(DRIVER_XE);
@@ -633,6 +725,12 @@ int igt_main_args("", long_options, help_str, opt_handler, NULL)
igt_subtest("root-dir")
test_root_dir(xe_dev);
+ igt_describe("Check required debugfs devnodes exist in the GT debugfs directory.");
+ igt_subtest_with_dynamic("gt-dir")
+ xe_for_each_gt(fd, gt)
+ igt_dynamic_f("gt-%u", gt)
+ test_gt_dir(xe_dev, gt);
+
igt_describe("Check required debugfs devnodes exist in the tile debugfs directory.");
igt_subtest_with_dynamic("tile-dir")
xe_for_each_tile(fd, t)
@@ -648,6 +746,26 @@ int igt_main_args("", long_options, help_str, opt_handler, NULL)
igt_dynamic_f("gt%d", gt)
check_gt_reg_sr(fd, gt);
+ igt_describe("Check GSC info debugfs devnode contents.");
+ igt_subtest_with_dynamic("gsc-info-read")
+ xe_for_each_gt(fd, gt)
+ igt_dynamic_f("gt-%u", gt)
+ test_gsc_info_read(xe_dev, gt);
+ igt_describe("Read GuC information from debugfs.");
+ igt_subtest("guc-info-read")
+ xe_for_each_gt(fd, gt)
+ test_guc_info_read(xe_dev, gt);
+
+ igt_describe("Read HuC information from debugfs.");
+ igt_subtest("huc-info-read")
+ xe_for_each_gt(fd, gt)
+ test_huc_info_read(xe_dev, gt);
+
+ igt_describe("Read guc pc information from debugfs.");
+ igt_subtest("guc-pc-read")
+ xe_for_each_gt(fd, gt)
+ test_guc_pc_info(xe_dev, gt);
+
igt_fixture() {
drm_close_driver(fd);
}
--
2.52.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* ✓ Xe.CI.BAT: success for tests/xe_debugfs: add uc debugfs validation and read tests
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
@ 2026-07-17 9:04 ` Patchwork
2026-07-17 9:04 ` ✓ i915.CI.BAT: " Patchwork
2026-07-17 12:33 ` ✗ Xe.CI.FULL: failure " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-07-17 9:04 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 969 bytes --]
== Series Details ==
Series: tests/xe_debugfs: add uc debugfs validation and read tests
URL : https://patchwork.freedesktop.org/series/170621/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_9012_BAT -> XEIGTPW_15548_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_9012 -> IGTPW_15548
IGTPW_15548: 2f7786286e5ff878fd032ca9e8e11be46f98c272 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9012: d94a55886c7eec82a791728d3cc1c4a6aa945281 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5424-22852552aa1b7198931842ddf824af4dd09e2814: 22852552aa1b7198931842ddf824af4dd09e2814
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/index.html
[-- Attachment #2: Type: text/html, Size: 1514 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✓ i915.CI.BAT: success for tests/xe_debugfs: add uc debugfs validation and read tests
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
2026-07-17 9:04 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-07-17 9:04 ` Patchwork
2026-07-17 12:33 ` ✗ Xe.CI.FULL: failure " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-07-17 9:04 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1099 bytes --]
== Series Details ==
Series: tests/xe_debugfs: add uc debugfs validation and read tests
URL : https://patchwork.freedesktop.org/series/170621/
State : success
== Summary ==
CI Bug Log - changes from IGT_9012 -> IGTPW_15548
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 bat-arls-5
Changes
-------
No changes found
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_9012 -> IGTPW_15548
CI-20190529: 20190529
CI_DRM_18842: 22852552aa1b7198931842ddf824af4dd09e2814 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15548: 2f7786286e5ff878fd032ca9e8e11be46f98c272 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9012: d94a55886c7eec82a791728d3cc1c4a6aa945281 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15548/index.html
[-- Attachment #2: Type: text/html, Size: 1665 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/xe_debugfs: add uc debugfs validation and read tests
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
2026-07-17 9:04 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-07-17 9:04 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-07-17 12:33 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-07-17 12:33 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30500 bytes --]
== Series Details ==
Series: tests/xe_debugfs: add uc debugfs validation and read tests
URL : https://patchwork.freedesktop.org/series/170621/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_9012_FULL -> XEIGTPW_15548_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15548_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15548_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15548_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_reset@long-spin-many-preempt-threads:
- shard-lnl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-lnl-4/igt@xe_exec_reset@long-spin-many-preempt-threads.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-6/igt@xe_exec_reset@long-spin-many-preempt-threads.html
New tests
---------
New tests have been introduced between XEIGT_9012_FULL and XEIGTPW_15548_FULL:
### New IGT tests (9) ###
* igt@xe_debugfs@gsc-info-read:
- Statuses : 2 pass(s)
- Exec time: [0.07, 0.10] s
* igt@xe_debugfs@gsc-info-read@gt-0:
- Statuses : 2 pass(s)
- Exec time: [0.02, 0.03] s
* igt@xe_debugfs@gsc-info-read@gt-1:
- Statuses : 2 pass(s)
- Exec time: [0.02, 0.04] s
* igt@xe_debugfs@gt-dir:
- Statuses : 2 pass(s)
- Exec time: [0.05, 0.07] s
* igt@xe_debugfs@gt-dir@gt-0:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
* igt@xe_debugfs@gt-dir@gt-1:
- Statuses : 2 pass(s)
- Exec time: [0.02] s
* igt@xe_debugfs@guc-info-read:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@xe_debugfs@guc-pc-read:
- Statuses : 2 pass(s)
- Exec time: [0.02, 0.04] s
* igt@xe_debugfs@huc-info-read:
- Statuses : 2 pass(s)
- Exec time: [0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_15548_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#2887])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][7] -> [INCOMPLETE][8] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2652]) +17 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: NOTRUN -> [FAIL][10] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1340] / [Intel XE#7435])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#4422] / [Intel XE#7442])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7178] / [Intel XE#7351])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#6312] / [Intel XE#651])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2311]) +17 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-4/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4141]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7061] / [Intel XE#7356])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#7905]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2313]) +16 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#656] / [Intel XE#7905])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7061]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#1503])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#6911] / [Intel XE#7378])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2486])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7283]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2393])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#8399]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1489]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-suspend:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1406])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-6/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@psr2-suspend:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3904] / [Intel XE#7342])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6503]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vrr@lobf-dc3co:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8397])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@kms_vrr@lobf-dc3co.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_evict@evict-cm-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#8370])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_evict@evict-cm-threads-small-multi-queue.html
* igt@xe_evict@evict-large:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-8/igt@xe_evict@evict-large.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8374]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#8374])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-priority:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8364]) +8 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-close-fd:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#8364])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-1/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-close-fd.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][47] ([Intel XE#7098] / [Intel XE#8159])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#8378])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#8378]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early:
- shard-bmg: NOTRUN -> [ABORT][50] ([Intel XE#8007])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [PASS][51] -> [ABORT][52] ([Intel XE#8007]) +2 other tests abort
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2833])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6964])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_page_reclaim@many-vma-same-bo:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7793])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_page_reclaim@many-vma-same-bo.html
* igt@xe_pm@s3-basic:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#584] / [Intel XE#7369])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-lnl-5/igt@xe_pm@s3-basic.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#944])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#6569])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][61] -> [FAIL][62] ([Intel XE#7992])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][63] ([Intel XE#6321] / [Intel XE#8355]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-bmg: [ABORT][65] ([Intel XE#8007]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_module_load@load:
- shard-bmg: ([SKIP][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-8/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-1/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-1/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-6/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-6/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-5/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-5/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-2/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-7/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-2/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-4/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-3/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-10/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-10/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-9/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-8/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-8/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-1/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-7/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-4/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9012/shard-bmg-4/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-3/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-6/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-5/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-7/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-8/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-4/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-4/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-2/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-9/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-10/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/shard-bmg-1/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992
[Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8397
[Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_9012 -> IGTPW_15548
IGTPW_15548: 2f7786286e5ff878fd032ca9e8e11be46f98c272 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_9012: d94a55886c7eec82a791728d3cc1c4a6aa945281 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5424-22852552aa1b7198931842ddf824af4dd09e2814: 22852552aa1b7198931842ddf824af4dd09e2814
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15548/index.html
[-- Attachment #2: Type: text/html, Size: 33452 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-07-17 12:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-17 7:52 [PATCH i-g-t v3] tests/xe_debugfs: add uc debugfs validation and read tests Sobin Thomas
2026-07-17 9:04 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-07-17 9:04 ` ✓ i915.CI.BAT: " Patchwork
2026-07-17 12:33 ` ✗ Xe.CI.FULL: failure " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.