* [PATCH 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-12-06 21:54 [PATCH 1/2] Revert "tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout" Jonathan Cavitt
@ 2024-12-06 21:54 ` Jonathan Cavitt
2024-12-06 22:47 ` ✓ Xe.CI.BAT: success for series starting with [1/2] Revert "tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout" Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Jonathan Cavitt @ 2024-12-06 21:54 UTC (permalink / raw)
To: igt-dev; +Cc: jonathan.cavitt, kamil.konieczny
The subtests of sysfs_timeslice_duration modify the preempt_timeout_us
and timeslice_duration_us values. However, while the test does restore
the timeslice_duration_us value at the end of execution, it does not do
the same for preempt_timeout_us. Because the value is not properly
restored, future tests can end up using the unexpected preempt timeout
value and thus have unexpected behavior.
Save and restore the preempt_timeout_us value during the test.
This fix does not apply to xe_sysfs_preempt_timeout because only the
preempt_timeout_us is modified during those tests, and the value is
correcty restored before the tests end.
v2: Also restore preempt_timeout_us on test failure (Kamil)
v3: Abort on restore failure (Kamil)
v4: Use a correct Closes link
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/3198
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
CC: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_sysfs_timeslice_duration.c | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
index 899093a9df..752672691f 100644
--- a/tests/intel/xe_sysfs_timeslice_duration.c
+++ b/tests/intel/xe_sysfs_timeslice_duration.c
@@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int engine, unsigned int timeout, uint16_
static void test_timeout(int fd, int engine, const char **property, uint16_t class, int gt)
{
uint64_t delays[] = { 1000, 50000, 100000, 500000 };
- unsigned int saved;
+ unsigned int saved, old_pt;
uint64_t elapsed;
uint64_t epsilon;
+ igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &old_pt) == 1);
igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) == 1);
igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", property[0], saved);
@@ -140,6 +141,9 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
}
set_timeslice_duration(engine, saved);
+ igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us", "%u", old_pt));
+ igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
+ igt_assert_eq(saved, old_pt);
}
#define MAX_GTS 8
@@ -159,6 +163,7 @@ igt_main
int gt_count = 0;
int fd = -1, sys_fd, gt;
int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
+ unsigned int pts[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
unsigned int tds[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
int *engine_list[MAX_GTS];
@@ -184,6 +189,8 @@ igt_main
while (list[i] != -1) {
igt_require(igt_sysfs_scanf(list[i], "timeslice_duration_us", "%u",
&tds[gt_count][i]) == 1);
+ igt_require(igt_sysfs_scanf(list[i], "preempt_timeout_us", "%u",
+ &pts[gt_count][i]) == 1);
i++;
}
@@ -215,8 +222,16 @@ igt_main
while (list[j] != -1) {
unsigned int store = UINT_MAX;
+ igt_sysfs_printf(list[j], "preempt_timeout_us",
+ "%u", pts[i][j]);
+ igt_sysfs_scanf(list[j], "preempt_timeout_us",
+ "%u", &store);
+ igt_abort_on_f(store != pts[i][j],
+ "preempt_timeout_us not restored!\n");
+
+ store = UINT_MAX;
igt_sysfs_printf(list[j], "timeslice_duration_us",
- "%u", tds[i][j]);
+ "%u", tds[i][j]);
igt_sysfs_scanf(list[j], "timeslice_duration_us",
"%u", &store);
igt_abort_on_f(store != tds[i][j],
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✗ Xe.CI.Full: failure for series starting with [1/2] Revert "tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout"
2024-12-06 21:54 [PATCH 1/2] Revert "tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout" Jonathan Cavitt
` (2 preceding siblings ...)
2024-12-06 22:54 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-12-07 3:55 ` Patchwork
2024-12-09 17:31 ` [PATCH 1/2] " Kamil Konieczny
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-12-07 3:55 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 83494 bytes --]
== Series Details ==
Series: series starting with [1/2] Revert "tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout"
URL : https://patchwork.freedesktop.org/series/142255/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8143_full -> XEIGTPW_12273_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12273_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12273_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 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12273_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-lnl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2:
- shard-bmg: [PASS][2] -> [INCOMPLETE][3] +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs@pipe-c-dp-2.html
* igt@kms_psr@psr2-cursor-render@edp-1:
- shard-lnl: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-8/igt@kms_psr@psr2-cursor-render@edp-1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_psr@psr2-cursor-render@edp-1.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
- shard-lnl: NOTRUN -> [ABORT][6] +3 other tests abort
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: NOTRUN -> [DMESG-WARN][7] +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_vm@large-userptr-split-misaligned-binds-536870912:
- shard-bmg: [PASS][8] -> [DMESG-WARN][9] +6 other tests dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_vm@large-userptr-split-misaligned-binds-536870912.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_vm@large-userptr-split-misaligned-binds-536870912.html
#### Warnings ####
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [ABORT][10] ([Intel XE#3421]) -> [ABORT][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_12273_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotunbind-rebind:
- shard-bmg: NOTRUN -> [DMESG-WARN][12] ([Intel XE#1727] / [Intel XE#3467] / [Intel XE#3468])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@core_hotunplug@hotunbind-rebind.html
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1125])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#911]) +3 other tests fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@invalid-async-flip:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#873])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_async_flips@invalid-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#873])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3279])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking:
- shard-bmg: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#3468] / [Intel XE#877]) +1 other test dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1407]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#3658]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-lnl: NOTRUN -> [DMESG-WARN][23] ([Intel XE#1725])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2327]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +15 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#607])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1124]) +15 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1512]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#367]) +4 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#367]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +21 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#3432]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3432]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +19 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2724])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2325]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +8 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][44] ([Intel XE#1178]) +2 other tests fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2390])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#307])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2341])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2321])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2:
- shard-bmg: [PASS][49] -> [DMESG-FAIL][50] ([Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-fail
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x128@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1424])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2321])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-lnl: NOTRUN -> [FAIL][54] ([Intel XE#2577] / [Intel XE#3106]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2291]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2286]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#1340])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#1340])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#3070])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-render:
- shard-bmg: NOTRUN -> [INCOMPLETE][64] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_draw_crc@draw-method-render.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2244])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2244]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#703])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2316]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#3321]) +3 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][73] -> [DMESG-FAIL][74] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-FAIL][75] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][76] ([Intel XE#2882]) +3 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-lnl: NOTRUN -> [FAIL][77] ([Intel XE#886]) +1 other test fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2:
- shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#2882]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-bmg: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test incomplete
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2293] / [Intel XE#2380]) +9 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1401]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1397]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-bmg: [PASS][89] -> [DMESG-WARN][90] ([Intel XE#2705] / [Intel XE#3468])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293]) +9 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#651]) +19 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2311]) +32 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [FAIL][94] ([Intel XE#2333]) +12 other tests fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#656]) +44 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2312]) +15 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2313]) +38 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@static-swap:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#1503])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_hdr@static-swap.html
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1503])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#1503]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_hdr@static-toggle-suspend.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#346])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2934])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2927])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2934])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_cursor@overlay@pipe-d-dp-2-size-64:
- shard-bmg: NOTRUN -> [DMESG-WARN][106] ([Intel XE#3468]) +30 other tests dmesg-warn
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_plane_cursor@overlay@pipe-d-dp-2-size-64.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128:
- shard-bmg: NOTRUN -> [DMESG-FAIL][107] ([Intel XE#2705] / [Intel XE#3468]) +2 other tests dmesg-fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64:
- shard-bmg: NOTRUN -> [DMESG-FAIL][108] ([Intel XE#3468]) +16 other tests dmesg-fail
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2393])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2493])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2763]) +7 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#870])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2391])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#3309])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc9-dpms:
- shard-bmg: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_pm_dc@dc9-dpms.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#1439] / [Intel XE#836])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1439] / [Intel XE#3141])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-bmg: NOTRUN -> [DMESG-WARN][120] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-lnl: NOTRUN -> [ABORT][121] ([Intel XE#3673]) +6 other tests abort
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2893]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +4 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#2234] / [Intel XE#2850]) +22 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1406]) +7 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_psr@pr-no-drrs.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#3414]) +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#3414]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#2413] / [Intel XE#374])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#374]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_sequence@get-forked-busy@pipe-d-dp-2:
- shard-bmg: [PASS][130] -> [DMESG-WARN][131] ([Intel XE#3468]) +72 other tests dmesg-warn
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@kms_sequence@get-forked-busy@pipe-d-dp-2.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_sequence@get-forked-busy@pipe-d-dp-2.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [FAIL][132] ([Intel XE#3559]) +4 other tests fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][133] -> [SKIP][134] ([Intel XE#1435])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1435])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1435])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][137] ([Intel XE#899]) +1 other test fail
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@wait-busy-hang:
- shard-bmg: [PASS][138] -> [DMESG-FAIL][139] ([Intel XE#3468]) +19 other tests dmesg-fail
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_vblank@wait-busy-hang.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_vblank@wait-busy-hang.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1499]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1499])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [PASS][142] -> [FAIL][143] ([Intel XE#1522]) +1 other test fail
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#756])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#1447]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2905]) +14 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@resume-one:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#2905]) +12 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][150] ([Intel XE#1473])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#688]) +9 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [TIMEOUT][152] ([Intel XE#1473] / [Intel XE#2472])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#1392]) +7 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2322]) +13 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_compute_mode@many-rebind:
- shard-bmg: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#1727]) +2 other tests dmesg-warn
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_exec_compute_mode@many-rebind.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_exec_compute_mode@many-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][157] -> [DMESG-WARN][158] ([Intel XE#3467]) +1 other test dmesg-warn
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [PASS][159] -> [DMESG-WARN][160] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2229])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186]) -> ([PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [SKIP][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212]) ([Intel XE#378])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-3/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-3/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-3/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-3/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-7/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-7/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-4/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-4/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-4/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-4/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-7/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-7/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-7/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-4/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-4/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-8/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-8/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-8/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-8/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-8/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-5/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-5/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-5/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-5/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-5/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-3/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-4/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@xe_module_load@load.html
- shard-bmg: ([PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [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], [SKIP][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][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]) ([Intel XE#2457])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_module_load@load.html
* igt@xe_module_load@reload:
- shard-bmg: NOTRUN -> [DMESG-WARN][264] ([Intel XE#3467])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_module_load@reload.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][265] ([Intel XE#2248])
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][266] ([Intel XE#2248])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][267] ([Intel XE#2245])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][268] ([Intel XE#2284])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-basic:
- shard-lnl: NOTRUN -> [ABORT][269] ([Intel XE#1358] / [Intel XE#3673])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][270] ([Intel XE#1358] / [Intel XE#1616])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: NOTRUN -> [ABORT][271] ([Intel XE#1616])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][272] -> [DMESG-WARN][273] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_pm@s3-vm-bind-userptr.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][274] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-8/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-bmg: NOTRUN -> [DMESG-WARN][275] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-bmg: [PASS][276] -> [DMESG-WARN][277] ([Intel XE#2280] / [Intel XE#3468]) +1 other test dmesg-warn
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_pm@s4-vm-bind-unbind-all.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][278] ([Intel XE#584]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-5/igt@xe_pm_residency@cpg-basic.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][279] ([Intel XE#944]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][280] ([Intel XE#944]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@xe_query@multigpu-query-uc-fw-version-huc.html
#### Possible fixes ####
* igt@kms_atomic@plane-invalid-params:
- shard-bmg: [DMESG-WARN][281] ([Intel XE#3468]) -> [PASS][282] +24 other tests pass
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_atomic@plane-invalid-params.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_atomic@plane-invalid-params.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-bmg: [INCOMPLETE][283] ([Intel XE#1727]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_atomic@plane-invalid-params-fence.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][285] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][286] +4 other tests pass
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][287] ([Intel XE#2291]) -> [PASS][288] +3 other tests pass
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][289] ([Intel XE#2316]) -> [PASS][290] +8 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-lnl: [FAIL][291] ([Intel XE#886]) -> [PASS][292] +1 other test pass
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-lnl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-bmg: [DMESG-WARN][293] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][294] +1 other test pass
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: [INCOMPLETE][295] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3663]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- shard-bmg: [DMESG-WARN][297] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_vblank@query-idle@pipe-a-dp-2:
- shard-bmg: [DMESG-FAIL][299] ([Intel XE#3468]) -> [PASS][300] +2 other tests pass
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_vblank@query-idle@pipe-a-dp-2.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_vblank@query-idle@pipe-a-dp-2.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
- shard-bmg: [DMESG-WARN][301] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][302] +2 other tests pass
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
* igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01:
- shard-bmg: [DMESG-FAIL][303] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][304] +4 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01:
- shard-bmg: [INCOMPLETE][305] -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01.html
* igt@xe_exec_balancer@no-exec-parallel-userptr:
- shard-bmg: [DMESG-WARN][307] ([Intel XE#1727]) -> [PASS][308] +3 other tests pass
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_exec_balancer@no-exec-parallel-userptr.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@xe_exec_balancer@no-exec-parallel-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-bmg: [DMESG-WARN][309] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-bmg: [DMESG-WARN][311] ([Intel XE#3467]) -> [PASS][312] +1 other test pass
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_intel_bb@intel-bb-blit-none:
- shard-bmg: [DMESG-WARN][313] -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_intel_bb@intel-bb-blit-none.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@xe_intel_bb@intel-bb-blit-none.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][315] ([Intel XE#2341]) -> [FAIL][316] ([Intel XE#1178])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [INCOMPLETE][317] ([Intel XE#3468]) -> [INCOMPLETE][318] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [DMESG-FAIL][319] ([Intel XE#3468]) -> [FAIL][320] ([Intel XE#1695])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][321] ([Intel XE#2882]) -> [SKIP][322] ([Intel XE#2316])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][323] ([Intel XE#2316]) -> [DMESG-FAIL][324] ([Intel XE#3468])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][325] ([Intel XE#2311]) -> [SKIP][326] ([Intel XE#2312]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][327] ([Intel XE#2312]) -> [SKIP][328] ([Intel XE#2311]) +13 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][329] ([Intel XE#2333]) -> [DMESG-FAIL][330] ([Intel XE#3468]) +2 other tests dmesg-fail
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [FAIL][331] ([Intel XE#2333]) -> [SKIP][332] ([Intel XE#2312]) +7 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][333] ([Intel XE#2312]) -> [FAIL][334] ([Intel XE#2333]) +4 other tests fail
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [DMESG-FAIL][335] ([Intel XE#3468]) -> [FAIL][336] ([Intel XE#2333]) +4 other tests fail
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][337] ([Intel XE#2313]) -> [SKIP][338] ([Intel XE#2312]) +11 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][339] ([Intel XE#2312]) -> [SKIP][340] ([Intel XE#2313]) +12 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [DMESG-FAIL][341] ([Intel XE#1727] / [Intel XE#3468]) -> [FAIL][342] ([Intel XE#1430])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][343] ([Intel XE#2426]) -> [DMESG-FAIL][344] ([Intel XE#3468])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-bmg: [ABORT][345] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][346] ([Intel XE#3673]) +2 other tests abort
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-bmg: [FAIL][347] ([Intel XE#2364]) -> [DMESG-FAIL][348] ([Intel XE#3468])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [FAIL][349] ([Intel XE#1000]) -> [TIMEOUT][350] ([Intel XE#1473] / [Intel XE#2472])
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_evict@evict-threads-large.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-8/igt@xe_evict@evict-threads-large.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [DMESG-WARN][351] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][352] ([Intel XE#3343])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [DMESG-WARN][353] ([Intel XE#3343]) -> [DMESG-WARN][354] ([Intel XE#3343] / [Intel XE#3468])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: [DMESG-WARN][355] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][356] ([Intel XE#3467])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][357] ([Intel XE#3468]) -> [DMESG-WARN][358] ([Intel XE#3467])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_module_load@reload-no-display.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-7/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-bmg: [ABORT][359] ([Intel XE#1616]) -> [ABORT][360] ([Intel XE#1616] / [Intel XE#3468])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-userptr.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-3/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-bmg: [ABORT][361] ([Intel XE#3673]) -> [ABORT][362] ([Intel XE#3468] / [Intel XE#3673]) +1 other test abort
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-4/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: [DMESG-WARN][363] ([Intel XE#3467]) -> [DMESG-WARN][364] ([Intel XE#3467] / [Intel XE#3468])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/shard-bmg-1/igt@xe_wedged@wedged-mode-toggle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[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#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[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#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8143 -> IGTPW_12273
* Linux: xe-2335-261a0301bda5af29477bd710465a8886e8609a4d -> xe-2336-21f6d267c4a3e02cd75de5641f8786e427ce8fa8
IGTPW_12273: 12273
IGT_8143: 515351a02a01f459212197f47ff91053551dcfab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2335-261a0301bda5af29477bd710465a8886e8609a4d: 261a0301bda5af29477bd710465a8886e8609a4d
xe-2336-21f6d267c4a3e02cd75de5641f8786e427ce8fa8: 21f6d267c4a3e02cd75de5641f8786e427ce8fa8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12273/index.html
[-- Attachment #2: Type: text/html, Size: 99636 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 1/2] Revert "tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout"
2024-12-06 21:54 [PATCH 1/2] Revert "tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout" Jonathan Cavitt
` (3 preceding siblings ...)
2024-12-07 3:55 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-12-09 17:31 ` Kamil Konieczny
4 siblings, 0 replies; 6+ messages in thread
From: Kamil Konieczny @ 2024-12-09 17:31 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
Hi Jonathan,
On 2024-12-06 at 21:54:58 +0000, Jonathan Cavitt wrote:
> This reverts commit f33842ab06b7470c9c9ec482bfd123b2d58507af.
>
> The commit refers to the wrong link in the Closes field, so that needs
> to be changed.
Nak, as discussed offline imho we should live with wrong 'Closes' tag,
just make sure you correct this in GitLab issues. You could also send
replay to original wrong merged patch so it will be possible to find-out
later on lore.kernel.org
Regards,
Kamil
>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> ---
> tests/intel/xe_sysfs_timeslice_duration.c | 19 ++-----------------
> 1 file changed, 2 insertions(+), 17 deletions(-)
>
> diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
> index 752672691f..899093a9df 100644
> --- a/tests/intel/xe_sysfs_timeslice_duration.c
> +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> @@ -115,11 +115,10 @@ static uint64_t __test_timeout(int fd, int engine, unsigned int timeout, uint16_
> static void test_timeout(int fd, int engine, const char **property, uint16_t class, int gt)
> {
> uint64_t delays[] = { 1000, 50000, 100000, 500000 };
> - unsigned int saved, old_pt;
> + unsigned int saved;
> uint64_t elapsed;
> uint64_t epsilon;
>
> - igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &old_pt) == 1);
> igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) == 1);
> igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
> igt_debug("Initial %s:%u\n", property[0], saved);
> @@ -141,9 +140,6 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
> }
>
> set_timeslice_duration(engine, saved);
> - igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us", "%u", old_pt));
> - igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
> - igt_assert_eq(saved, old_pt);
> }
>
> #define MAX_GTS 8
> @@ -163,7 +159,6 @@ igt_main
> int gt_count = 0;
> int fd = -1, sys_fd, gt;
> int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> - unsigned int pts[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
> unsigned int tds[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
> int *engine_list[MAX_GTS];
>
> @@ -189,8 +184,6 @@ igt_main
> while (list[i] != -1) {
> igt_require(igt_sysfs_scanf(list[i], "timeslice_duration_us", "%u",
> &tds[gt_count][i]) == 1);
> - igt_require(igt_sysfs_scanf(list[i], "preempt_timeout_us", "%u",
> - &pts[gt_count][i]) == 1);
> i++;
> }
>
> @@ -222,16 +215,8 @@ igt_main
> while (list[j] != -1) {
> unsigned int store = UINT_MAX;
>
> - igt_sysfs_printf(list[j], "preempt_timeout_us",
> - "%u", pts[i][j]);
> - igt_sysfs_scanf(list[j], "preempt_timeout_us",
> - "%u", &store);
> - igt_abort_on_f(store != pts[i][j],
> - "preempt_timeout_us not restored!\n");
> -
> - store = UINT_MAX;
> igt_sysfs_printf(list[j], "timeslice_duration_us",
> - "%u", tds[i][j]);
> + "%u", tds[i][j]);
> igt_sysfs_scanf(list[j], "timeslice_duration_us",
> "%u", &store);
> igt_abort_on_f(store != tds[i][j],
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 6+ messages in thread