* [PATCH] tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs
@ 2025-11-21 11:49 Sk Anirban
2025-11-25 3:53 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Sk Anirban @ 2025-11-21 11:49 UTC (permalink / raw)
To: igt-dev
Cc: anshuman.gupta, badal.nilawar, riana.tauro, karthik.poosa,
raag.jadav, soham.purkait, mallesh.koujalagi, rodrigo.vivi,
Sk Anirban
Change throttle_basic_api to read the new atomic reasons attribute
instead of checking status and individual reason files separately.
This validates the kernel's TOCTOU-free throttling interface.
Signed-off-by: Sk Anirban <sk.anirban@intel.com>
---
tests/intel/xe_gt_freq.c | 45 ++++++++++++----------------------------
1 file changed, 13 insertions(+), 32 deletions(-)
diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
index d0f35b10a..30e359a47 100644
--- a/tests/intel/xe_gt_freq.c
+++ b/tests/intel/xe_gt_freq.c
@@ -47,48 +47,29 @@ static bool within_expected_range(uint32_t freq, uint32_t val)
(freq >= val - FREQ_UNIT_MHZ);
}
-static uint32_t get_throttle(int fd, int gt_id, const char *throttle_file)
+/**
+ * SUBTEST: throttle_basic_api
+ * Description: Test basic throttle API
+ */
+
+static void test_throttle_basic_api(int fd, int gt_id)
{
- uint32_t val;
+ char reasons[1024];
char throttle_attr[40];
int gt_fd;
- snprintf(throttle_attr, sizeof(throttle_attr),
- "freq0/throttle/%s", throttle_file);
+ snprintf(throttle_attr, sizeof(throttle_attr), "freq0/throttle/reasons");
gt_fd = xe_sysfs_gt_open(fd, gt_id);
igt_assert_lte(0, gt_fd);
- igt_sysfs_scanf(gt_fd, throttle_attr, "%u", &val);
+ igt_assert(igt_sysfs_scanf(gt_fd, throttle_attr, "%1023s", reasons) == 1);
- igt_debug("gt%d/freq0/throttle/%s: %u\n", gt_id, throttle_file, val);
+ igt_debug("gt%d/freq0/throttle/reasons: %s\n", gt_id, reasons);
- close(gt_fd);
- return val;
-}
+ if (strcmp(reasons, "none") != 0)
+ igt_info("GT %d is being throttled due to: %s\n", gt_id, reasons);
-/**
- * SUBTEST: throttle_basic_api
- * Description: Test basic throttle API
- */
-
-static void test_throttle_basic_api(int fd, int gt_id)
-{
- uint32_t status, reasons;
-
- status = get_throttle(fd, gt_id, "status");
- reasons = get_throttle(fd, gt_id, "reason_pl1");
- reasons |= get_throttle(fd, gt_id, "reason_pl2");
- reasons |= get_throttle(fd, gt_id, "reason_pl4");
- reasons |= get_throttle(fd, gt_id, "reason_prochot");
- reasons |= get_throttle(fd, gt_id, "reason_ratl");
- reasons |= get_throttle(fd, gt_id, "reason_thermal");
- reasons |= get_throttle(fd, gt_id, "reason_vr_tdc");
- reasons |= get_throttle(fd, gt_id, "reason_vr_thermalert");
-
- if (status)
- igt_assert(reasons);
- else
- igt_assert(!reasons);
+ close(gt_fd);
}
/**
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs
2025-11-21 11:49 [PATCH] tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs Sk Anirban
@ 2025-11-25 3:53 ` Patchwork
2025-11-25 4:21 ` ✗ i915.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-11-25 3:53 UTC (permalink / raw)
To: Sk Anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1447 bytes --]
== Series Details ==
Series: tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs
URL : https://patchwork.freedesktop.org/series/157903/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8637_BAT -> XEIGTPW_14097_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 11)
------------------------------
Missing (1): bat-pvc-2
Known issues
------------
Here are the changes found in XEIGTPW_14097_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-plain-flip@d-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
Build changes
-------------
* IGT: IGT_8637 -> IGTPW_14097
IGTPW_14097: 14097
IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4141-c701e79730169fab373fba7e759497d755fac592: c701e79730169fab373fba7e759497d755fac592
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/index.html
[-- Attachment #2: Type: text/html, Size: 2009 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs
2025-11-21 11:49 [PATCH] tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs Sk Anirban
2025-11-25 3:53 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2025-11-25 4:21 ` Patchwork
2025-11-25 6:11 ` ✗ Xe.CI.Full: " Patchwork
2025-11-26 13:58 ` [PATCH] " Raag Jadav
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-11-25 4:21 UTC (permalink / raw)
To: Sk Anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3396 bytes --]
== Series Details ==
Series: tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs
URL : https://patchwork.freedesktop.org/series/157903/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8637 -> IGTPW_14097
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14097 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14097, 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_14097/index.html
Participating hosts (44 -> 44)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14097:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- bat-jsl-1: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-jsl-1/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14097/bat-jsl-1/igt@i915_selftest@live.html
Known issues
------------
Here are the changes found in IGTPW_14097 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14097/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14097/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14097/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-adlp-9: [FAIL][9] -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8637/bat-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14097/bat-adlp-9/igt@kms_flip@basic-flip-vs-wf_vblank.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8637 -> IGTPW_14097
CI-20190529: 20190529
CI_DRM_17580: c701e79730169fab373fba7e759497d755fac592 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14097: 14097
IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14097/index.html
[-- Attachment #2: Type: text/html, Size: 4247 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs
2025-11-21 11:49 [PATCH] tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs Sk Anirban
2025-11-25 3:53 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-11-25 4:21 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-11-25 6:11 ` Patchwork
2025-11-26 13:58 ` [PATCH] " Raag Jadav
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-11-25 6:11 UTC (permalink / raw)
To: Sk Anirban; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 76948 bytes --]
== Series Details ==
Series: tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs
URL : https://patchwork.freedesktop.org/series/157903/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8637_FULL -> XEIGTPW_14097_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14097_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14097_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 (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14097_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-b-edp-1.html
* igt@kms_content_protection@dp-mst-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@kms_content_protection@dp-mst-suspend-resume.html
- shard-dg2-set2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@kms_content_protection@dp-mst-suspend-resume.html
- shard-lnl: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_content_protection@dp-mst-suspend-resume.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_hdr@bpc-switch:
- shard-bmg: NOTRUN -> [ABORT][7] +3 other tests abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@kms_hdr@bpc-switch.html
New tests
---------
New tests have been introduced between XEIGT_8637_FULL and XEIGTPW_14097_FULL:
### New IGT tests (16) ###
* igt@kms_content_protection@srm@pipe-a-dp-2:
- Statuses : 1 dmesg-fail(s)
- Exec time: [94.76] s
* igt@kms_flip@absolute-wf_vblank-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.03] s
* igt@kms_flip@dpms-off-confusion-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [3.98] s
* igt@kms_flip@dpms-vs-vblank-race-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [1.70] s
* igt@kms_flip@flip-vs-dpms-off-vs-modeset@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_flip@flip-vs-panning-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.00] s
* igt@kms_flip@flip-vs-rmfb-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.01] s
* igt@kms_flip@modeset-vs-vblank-race@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [1.92] s
* igt@kms_flip@nonexisting-fb@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [0.24] s
* igt@kms_flip@plain-flip-fb-recreate@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.30] s
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-dp2:
- Statuses : 1 pass(s)
- Exec time: [4.34] s
* igt@kms_flip_event_leak@basic@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_plane_multiple@tiling-4@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.96] s
* igt@kms_plane_multiple@tiling-4@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.93] s
* igt@kms_plane_multiple@tiling-4@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.95] s
* igt@kms_plane_multiple@tiling-4@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [1.01] s
Known issues
------------
Here are the changes found in XEIGTPW_14097_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-edp-1-linear-rgb565:
- shard-lnl: NOTRUN -> [FAIL][8] ([Intel XE#6676]) +39 other tests fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-edp-1-linear-rgb565.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +3 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-7/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#316]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +10 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +10 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#619])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#610])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#610])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2314] / [Intel XE#2894])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2191]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1512])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#367])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +12 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +62 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +14 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3432])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#3442])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +22 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2669]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#2907]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#306])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_chamelium_color@ctm-negative.html
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2325]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@kms_chamelium_color@ctm-negative.html
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#306])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2252]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#373]) +9 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6507])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@kms_chamelium_sharpness_filter@filter-basic.html
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#6507])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@content-type-change:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#307])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2341])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_content_protection@mei-interface.html
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1468])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-bmg: NOTRUN -> [DMESG-FAIL][47] ([Intel XE#3428]) +1 other test dmesg-fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#308]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#2321])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2321]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2320]) +6 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455]) +14 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1424]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: NOTRUN -> [ABORT][54] ([Intel XE#6675]) +12 other tests abort
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2291])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#323])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2286])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1508])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#4354])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#4356])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4294])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2244])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2244])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#776]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#776]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1138])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_feature_discovery@display-4x.html
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1138])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1138])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1421]) +11 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2316]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@absolute-wf_vblank-interruptible@c-dp2:
- shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#5352]) +2 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_flip@absolute-wf_vblank-interruptible@c-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1401]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2293]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#651]) +8 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2311]) +29 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#4141]) +14 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2312]) +10 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#656]) +46 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1469])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#6312])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#651]) +31 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#6312]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2313]) +34 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +29 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1470] / [Intel XE#2853])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#3374] / [Intel XE#3544])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1503])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#2925] / [Intel XE#2927])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2927])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#4090])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2925]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#2925])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#4596]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4596])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#5021])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#3307])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2763]) +9 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +15 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#870]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#870]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#3309])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#3309])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#3309])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1439] / [Intel XE#3141])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-lnl: [PASS][110] -> [ABORT][111] ([Intel XE#6675])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@kms_pm_rpm@system-suspend-modeset.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-7/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1406] / [Intel XE#1489]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1406] / [Intel XE#2893]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406] / [Intel XE#4609]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +11 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-suspend@edp-1:
- shard-lnl: [PASS][121] -> [ABORT][122] ([Intel XE#2625] / [Intel XE#6675]) +1 other test abort
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-8/igt@kms_psr@psr2-suspend@edp-1.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_psr@psr2-suspend@edp-1.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#3414]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-7/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [FAIL][125] ([Intel XE#4689])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1127]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2330]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#1127]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1435]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1435])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#6503]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][133] ([Intel XE#1729])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2450])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2168])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@kms_vrr@cmrr.html
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2168])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@kms_vrr@cmrr.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][137] ([Intel XE#4459]) +1 other test fail
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#1499])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1499])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1091] / [Intel XE#2849])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1091] / [Intel XE#2849])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1447])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-3/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#6599])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@xe_compute@eu-busy-10s.html
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#6598])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@xe_compute@eu-busy-10s.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#6360]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1123]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_eu_stall@invalid-gt-id:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#5626])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@xe_eu_stall@invalid-gt-id.html
* igt@xe_eudebug@basic-vm-access-parameters:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#4837]) +12 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@xe_eudebug@basic-vm-access-parameters.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#4837]) +13 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_eudebug_online@set-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#4837]) +14 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@xe_eudebug_online@set-breakpoint.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#5793])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@xe_eudebug_sriov@deny-sriov.html
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#4518])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@xe_eudebug_sriov@deny-sriov.html
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#4518])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-4/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][154] -> [INCOMPLETE][155] ([Intel XE#6321] / [Intel XE#6606])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-small:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#688]) +5 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-4/igt@xe_evict@evict-beng-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1392]) +8 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#2322]) +9 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#288]) +27 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2360])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][161] ([Intel XE#6299])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-463/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
* igt@xe_exec_system_allocator@many-64k-mmap-mlock-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#4915]) +334 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@xe_exec_system_allocator@many-64k-mmap-mlock-nomemset.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#5007])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#5007])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-4/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@many-stride-malloc-prefetch-madvise:
- shard-lnl: NOTRUN -> [WARN][165] ([Intel XE#5786])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@xe_exec_system_allocator@many-stride-malloc-prefetch-madvise.html
* igt@xe_exec_system_allocator@process-many-stride-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#4943]) +24 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@xe_exec_system_allocator@process-many-stride-mmap-huge.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#4943]) +29 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#6281])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
- shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#6281])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#586])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@xe_mmap@small-bar.html
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#512])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@xe_mmap@small-bar.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#6032])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@non-zero-reason-all:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#6377])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@xe_oa@non-zero-reason-all.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#3573]) +6 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#1337])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2427])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2284])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1948])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#2284] / [Intel XE#366])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-8/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: NOTRUN -> [ABORT][180] ([Intel XE#6675]) +22 other tests abort
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@xe_pm@s2idle-exec-after.html
- shard-lnl: NOTRUN -> [ABORT][181] ([Intel XE#6675]) +15 other tests abort
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-7/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#584]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#4650])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#4733]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@xe_pxp@pxp-optout.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#4733]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#944])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#944]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@xe_query@multigpu-query-mem-usage.html
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#944]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#4814])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#4273])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_sriov_flr@flr-twice.html
- shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#4273])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-2/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#6376])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-1/igt@xe_sriov_vram@vf-access-after-resize-up.html
* igt@xe_sriov_vram@vf-access-provisioned:
- shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#6318])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@xe_sriov_vram@vf-access-provisioned.html
#### Possible fixes ####
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-bmg: [SKIP][194] ([Intel XE#2316]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@kms_flip@2x-plain-flip-ts-check.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1:
- shard-lnl: [INCOMPLETE][196] -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-edp-1.html
* igt@kms_psr@fbc-psr-suspend@edp-1:
- shard-lnl: [ABORT][198] ([Intel XE#2625]) -> [PASS][199] +1 other test pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-7/igt@kms_psr@fbc-psr-suspend@edp-1.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-5/igt@kms_psr@fbc-psr-suspend@edp-1.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [SKIP][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223]) ([Intel XE#2457]) -> ([PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-8/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-8/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-8/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-6/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-6/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-6/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-7/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-3/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-3/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-3/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-5/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-5/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-6/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-8/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-1/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][248], [SKIP][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272]) ([Intel XE#378]) -> ([PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-466/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-466/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-466/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-466/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-463/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-463/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-463/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-434/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-434/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-464/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-464/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-464/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-432/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-432/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-432/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-433/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-433/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-433/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-436/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-436/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-436/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-436/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-435/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-435/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-463/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-463/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-463/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-435/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-434/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-435/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-464/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-432/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-433/igt@xe_module_load@load.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [ABORT][298] ([Intel XE#6675]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-433/igt@xe_pm@s3-exec-after.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-466/igt@xe_pm@s3-exec-after.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: [FAIL][300] ([Intel XE#6251]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-50.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-lnl-7/igt@xe_pmu@engine-activity-accuracy-50.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][302] ([Intel XE#4819]) -> [PASS][303] +1 other test pass
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-dg2-435/igt@xe_pmu@gt-frequency.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-dg2-436/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][304] ([Intel XE#2312]) -> [SKIP][305] ([Intel XE#4141])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move:
- shard-bmg: [SKIP][306] ([Intel XE#2311]) -> [SKIP][307] ([Intel XE#2312]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][308] ([Intel XE#2312]) -> [SKIP][309] ([Intel XE#2311])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][310] ([Intel XE#2313]) -> [SKIP][311] ([Intel XE#2312])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][312] ([Intel XE#2312]) -> [SKIP][313] ([Intel XE#2313]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8637/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5352
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[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#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6299
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6377
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6598]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6598
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6606]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6606
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8637 -> IGTPW_14097
IGTPW_14097: 14097
IGT_8637: 730ee3dfb26f8d7891fc240b0132a08c5bc7b949 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4141-c701e79730169fab373fba7e759497d755fac592: c701e79730169fab373fba7e759497d755fac592
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14097/index.html
[-- Attachment #2: Type: text/html, Size: 88073 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs
2025-11-21 11:49 [PATCH] tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs Sk Anirban
` (2 preceding siblings ...)
2025-11-25 6:11 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-11-26 13:58 ` Raag Jadav
3 siblings, 0 replies; 5+ messages in thread
From: Raag Jadav @ 2025-11-26 13:58 UTC (permalink / raw)
To: Sk Anirban
Cc: igt-dev, anshuman.gupta, badal.nilawar, riana.tauro,
karthik.poosa, soham.purkait, mallesh.koujalagi, rodrigo.vivi
On Fri, Nov 21, 2025 at 05:19:48PM +0530, Sk Anirban wrote:
> Change throttle_basic_api to read the new atomic reasons attribute
> instead of checking status and individual reason files separately.
> This validates the kernel's TOCTOU-free throttling interface.
>
> Signed-off-by: Sk Anirban <sk.anirban@intel.com>
> ---
> tests/intel/xe_gt_freq.c | 45 ++++++++++++----------------------------
> 1 file changed, 13 insertions(+), 32 deletions(-)
>
> diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
> index d0f35b10a..30e359a47 100644
> --- a/tests/intel/xe_gt_freq.c
> +++ b/tests/intel/xe_gt_freq.c
> @@ -47,48 +47,29 @@ static bool within_expected_range(uint32_t freq, uint32_t val)
> (freq >= val - FREQ_UNIT_MHZ);
> }
>
> -static uint32_t get_throttle(int fd, int gt_id, const char *throttle_file)
> +/**
> + * SUBTEST: throttle_basic_api
> + * Description: Test basic throttle API
> + */
> +
> +static void test_throttle_basic_api(int fd, int gt_id)
> {
> - uint32_t val;
> + char reasons[1024];
A bit too optimistic? :D
Let's use only what we need.
> char throttle_attr[40];
> int gt_fd;
>
> - snprintf(throttle_attr, sizeof(throttle_attr),
> - "freq0/throttle/%s", throttle_file);
> + snprintf(throttle_attr, sizeof(throttle_attr), "freq0/throttle/reasons");
> gt_fd = xe_sysfs_gt_open(fd, gt_id);
> igt_assert_lte(0, gt_fd);
>
> - igt_sysfs_scanf(gt_fd, throttle_attr, "%u", &val);
> + igt_assert(igt_sysfs_scanf(gt_fd, throttle_attr, "%1023s", reasons) == 1);
Can this be igt_assert_eq()?
> - igt_debug("gt%d/freq0/throttle/%s: %u\n", gt_id, throttle_file, val);
> + igt_debug("gt%d/freq0/throttle/reasons: %s\n", gt_id, reasons);
>
> - close(gt_fd);
> - return val;
> -}
> + if (strcmp(reasons, "none") != 0)
Do you need '!= 0'?
Raag
> + igt_info("GT %d is being throttled due to: %s\n", gt_id, reasons);
>
> -/**
> - * SUBTEST: throttle_basic_api
> - * Description: Test basic throttle API
> - */
> -
> -static void test_throttle_basic_api(int fd, int gt_id)
> -{
> - uint32_t status, reasons;
> -
> - status = get_throttle(fd, gt_id, "status");
> - reasons = get_throttle(fd, gt_id, "reason_pl1");
> - reasons |= get_throttle(fd, gt_id, "reason_pl2");
> - reasons |= get_throttle(fd, gt_id, "reason_pl4");
> - reasons |= get_throttle(fd, gt_id, "reason_prochot");
> - reasons |= get_throttle(fd, gt_id, "reason_ratl");
> - reasons |= get_throttle(fd, gt_id, "reason_thermal");
> - reasons |= get_throttle(fd, gt_id, "reason_vr_tdc");
> - reasons |= get_throttle(fd, gt_id, "reason_vr_thermalert");
> -
> - if (status)
> - igt_assert(reasons);
> - else
> - igt_assert(!reasons);
> + close(gt_fd);
> }
>
> /**
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-11-26 13:58 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-21 11:49 [PATCH] tests/intel/xe_gt_freq: Modify test to support new throttle reasons sysfs Sk Anirban
2025-11-25 3:53 ` ✓ Xe.CI.BAT: success for " Patchwork
2025-11-25 4:21 ` ✗ i915.CI.BAT: failure " Patchwork
2025-11-25 6:11 ` ✗ Xe.CI.Full: " Patchwork
2025-11-26 13:58 ` [PATCH] " Raag Jadav
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox