* [PATCH i-g-t 0/2] xe_sriov_flr: reset-only FLR smoke test
@ 2026-02-26 17:31 Marcin Bernatowicz
2026-02-26 17:31 ` [PATCH i-g-t 1/2] tests/intel/xe_sriov_flr: Add reset-only FLR subtest Marcin Bernatowicz
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Marcin Bernatowicz @ 2026-02-26 17:31 UTC (permalink / raw)
To: igt-dev; +Cc: lukasz.laguna, piotr.piorkowski, Marcin Bernatowicz
This series adds a minimal FLR smoke test to xe_sriov_flr.
Patch 1 introduces the flr-reset-only subtest intended as a minimal smoke
test for the VF reset sysfs write path while still using the xe-vfio-pci
based synchronization.
Patch 2 adds --extended to generate additional dynamic variants (numvfs-%u)
beyond the default numvfs-1.
Marcin Bernatowicz (2):
tests/intel/xe_sriov_flr: Add reset-only FLR subtest
tests/intel/xe_sriov_flr: Add --extended for reset-only
tests/intel/xe_sriov_flr.c | 79 +++++++++++++++++++++++++++++++++++++-
1 file changed, 78 insertions(+), 1 deletion(-)
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t 1/2] tests/intel/xe_sriov_flr: Add reset-only FLR subtest 2026-02-26 17:31 [PATCH i-g-t 0/2] xe_sriov_flr: reset-only FLR smoke test Marcin Bernatowicz @ 2026-02-26 17:31 ` Marcin Bernatowicz 2026-02-27 8:58 ` Piotr Piórkowski 2026-02-26 17:31 ` [PATCH i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for reset-only Marcin Bernatowicz ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Marcin Bernatowicz @ 2026-02-26 17:31 UTC (permalink / raw) To: igt-dev; +Cc: lukasz.laguna, piotr.piorkowski, Marcin Bernatowicz Add flr-reset-only subtest intended as a minimal smoke test for the VF reset sysfs write path while still using the xe-vfio-pci based synchronization: the test skips if xe-vfio-pci binding is disabled, if the xe_vfio_pci module is not loaded, or if any VF under test is not bound to xe-vfio-pci. Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> Cc: Lukasz Laguna <lukasz.laguna@intel.com> Cc: Piotr Piórkowski <piotr.piorkowski@intel.com> --- tests/intel/xe_sriov_flr.c | 65 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c index b73727787..846731697 100644 --- a/tests/intel/xe_sriov_flr.c +++ b/tests/intel/xe_sriov_flr.c @@ -29,6 +29,12 @@ * Functionality: FLR * Description: Examine behavior of SR-IOV VF FLR * + * SUBTEST: flr-reset-only + * Run type: BAT + * Description: + * Initiates FLR without any additional state checks. + * Useful as a basic smoke test of the reset sysfs write path. + * * SUBTEST: flr-vf1-clear * Run type: BAT * Description: @@ -1016,6 +1022,60 @@ static void regs_subcheck_cleanup(struct subcheck_data *data) { } +static void reset_only_subcheck_init(struct subcheck_data *data) +{ + if (!g_use_xe_vfio_pci) { + set_skip_reason(data, "xe-vfio-pci binding is disabled\n"); + return; + } + + if (!igt_kmod_is_loaded("xe_vfio_pci")) + set_skip_reason(data, "xe_vfio_pci is not loaded\n"); +} + +static void reset_only_subcheck_prepare_vf(int vf_id, struct subcheck_data *data) +{ + char *slot = igt_sriov_get_vf_pci_slot_alloc(data->pf_fd, vf_id); + char bound[64]; + int bound_ret; + + igt_assert(slot); + + bound_ret = igt_pci_get_bound_driver_name(slot, bound, sizeof(bound)); + if (bound_ret <= 0 || strcmp(bound, "xe-vfio-pci") != 0) + set_skip_reason(data, "VF%u not bound to xe-vfio-pci\n", vf_id); + + free(slot); +} + +static void noop_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_data *data) +{ +} + +static void noop_subcheck_cleanup(struct subcheck_data *data) +{ +} + +static void reset_only_test(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy) +{ + struct subcheck_data base = { + .pf_fd = pf_fd, + .num_vfs = num_vfs, + .tile = 0, + .stop_reason = NULL, + }; + struct subcheck check = { + .data = &base, + .name = "reset-only", + .init = reset_only_subcheck_init, + .prepare_vf = reset_only_subcheck_prepare_vf, + .verify_vf = noop_subcheck_verify_vf, + .cleanup = noop_subcheck_cleanup, + }; + + verify_flr(pf_fd, num_vfs, &check, 1, exec_strategy); +} + static void clear_tests(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy) { const uint8_t num_tiles = xe_tiles_count(pf_fd); @@ -1141,6 +1201,11 @@ int igt_main_args("vw:", long_options, help_str, opt_handler, NULL) autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd); } + igt_describe("Initiate FLR without any additional state checks."); + igt_subtest("flr-reset-only") { + reset_only_test(pf_fd, 1, execute_sequential_flr); + } + igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR"); igt_subtest("flr-vf1-clear") { clear_tests(pf_fd, 1, execute_sequential_flr); -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_sriov_flr: Add reset-only FLR subtest 2026-02-26 17:31 ` [PATCH i-g-t 1/2] tests/intel/xe_sriov_flr: Add reset-only FLR subtest Marcin Bernatowicz @ 2026-02-27 8:58 ` Piotr Piórkowski 2026-02-27 10:07 ` Bernatowicz, Marcin 0 siblings, 1 reply; 8+ messages in thread From: Piotr Piórkowski @ 2026-02-27 8:58 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev, lukasz.laguna Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> wrote on czw [2026-lut-26 18:31:36 +0100]: > Add flr-reset-only subtest intended as a minimal smoke test > for the VF reset sysfs write path while still using the xe-vfio-pci > based synchronization: the test skips if xe-vfio-pci binding is disabled, > if the xe_vfio_pci module is not loaded, or if any VF under test is > not bound to xe-vfio-pci. > > Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > Cc: Lukasz Laguna <lukasz.laguna@intel.com> > Cc: Piotr Piórkowski <piotr.piorkowski@intel.com> > --- > tests/intel/xe_sriov_flr.c | 65 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 65 insertions(+) > > diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c > index b73727787..846731697 100644 > --- a/tests/intel/xe_sriov_flr.c > +++ b/tests/intel/xe_sriov_flr.c > @@ -29,6 +29,12 @@ > * Functionality: FLR > * Description: Examine behavior of SR-IOV VF FLR > * > + * SUBTEST: flr-reset-only Or maybe just flr-basic? > + * Run type: BAT > + * Description: > + * Initiates FLR without any additional state checks. > + * Useful as a basic smoke test of the reset sysfs write path. > + * > * SUBTEST: flr-vf1-clear > * Run type: BAT > * Description: > @@ -1016,6 +1022,60 @@ static void regs_subcheck_cleanup(struct subcheck_data *data) > { > } > > +static void reset_only_subcheck_init(struct subcheck_data *data) > +{ > + if (!g_use_xe_vfio_pci) { > + set_skip_reason(data, "xe-vfio-pci binding is disabled\n"); > + return; > + } > + > + if (!igt_kmod_is_loaded("xe_vfio_pci")) Sometimes it is xe_vfio_pci, sometimes xe-vfio-pci What is the reason for this difference? Shouldn't we keep it somewhere as a constant? Or have helpers to handle this module at all? > + set_skip_reason(data, "xe_vfio_pci is not loaded\n"); > +} > + > +static void reset_only_subcheck_prepare_vf(int vf_id, struct subcheck_data *data) > +{ > + char *slot = igt_sriov_get_vf_pci_slot_alloc(data->pf_fd, vf_id); > + char bound[64]; > + int bound_ret; > + > + igt_assert(slot); > + > + bound_ret = igt_pci_get_bound_driver_name(slot, bound, sizeof(bound)); > + if (bound_ret <= 0 || strcmp(bound, "xe-vfio-pci") != 0) > + set_skip_reason(data, "VF%u not bound to xe-vfio-pci\n", vf_id); > + > + free(slot); > +} > + > +static void noop_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_data *data) > +{ > +} > + > +static void noop_subcheck_cleanup(struct subcheck_data *data) > +{ > +} > + > +static void reset_only_test(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy) > +{ > + struct subcheck_data base = { > + .pf_fd = pf_fd, > + .num_vfs = num_vfs, > + .tile = 0, > + .stop_reason = NULL, > + }; > + struct subcheck check = { > + .data = &base, > + .name = "reset-only", > + .init = reset_only_subcheck_init, > + .prepare_vf = reset_only_subcheck_prepare_vf, > + .verify_vf = noop_subcheck_verify_vf, > + .cleanup = noop_subcheck_cleanup, > + }; > + > + verify_flr(pf_fd, num_vfs, &check, 1, exec_strategy); > +} > + > static void clear_tests(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy) > { > const uint8_t num_tiles = xe_tiles_count(pf_fd); > @@ -1141,6 +1201,11 @@ int igt_main_args("vw:", long_options, help_str, opt_handler, NULL) > autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd); > } > > + igt_describe("Initiate FLR without any additional state checks."); > + igt_subtest("flr-reset-only") { > + reset_only_test(pf_fd, 1, execute_sequential_flr); In this case, shouldn't we have dynamic subtests regarding the number of VFs? I know that this will be expanded in the next patch, but maybe it should be the default. Because if someone wants to run tests on only one Vf's, they can still use the dynamic subtets filter. Thanks, Piotr > + } > + > igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR"); > igt_subtest("flr-vf1-clear") { > clear_tests(pf_fd, 1, execute_sequential_flr); > -- > 2.43.0 > -- ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/xe_sriov_flr: Add reset-only FLR subtest 2026-02-27 8:58 ` Piotr Piórkowski @ 2026-02-27 10:07 ` Bernatowicz, Marcin 0 siblings, 0 replies; 8+ messages in thread From: Bernatowicz, Marcin @ 2026-02-27 10:07 UTC (permalink / raw) To: Piotr Piórkowski; +Cc: igt-dev, lukasz.laguna On 2/27/2026 9:58 AM, Piotr Piórkowski wrote: > Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> wrote on czw [2026-lut-26 18:31:36 +0100]: >> Add flr-reset-only subtest intended as a minimal smoke test >> for the VF reset sysfs write path while still using the xe-vfio-pci >> based synchronization: the test skips if xe-vfio-pci binding is disabled, >> if the xe_vfio_pci module is not loaded, or if any VF under test is >> not bound to xe-vfio-pci. >> >> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> >> Cc: Lukasz Laguna <lukasz.laguna@intel.com> >> Cc: Piotr Piórkowski <piotr.piorkowski@intel.com> >> --- >> tests/intel/xe_sriov_flr.c | 65 ++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 65 insertions(+) >> >> diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c >> index b73727787..846731697 100644 >> --- a/tests/intel/xe_sriov_flr.c >> +++ b/tests/intel/xe_sriov_flr.c >> @@ -29,6 +29,12 @@ >> * Functionality: FLR >> * Description: Examine behavior of SR-IOV VF FLR >> * >> + * SUBTEST: flr-reset-only > Or maybe just flr-basic? > >> + * Run type: BAT >> + * Description: >> + * Initiates FLR without any additional state checks. >> + * Useful as a basic smoke test of the reset sysfs write path. >> + * >> * SUBTEST: flr-vf1-clear >> * Run type: BAT >> * Description: >> @@ -1016,6 +1022,60 @@ static void regs_subcheck_cleanup(struct subcheck_data *data) >> { >> } >> >> +static void reset_only_subcheck_init(struct subcheck_data *data) >> +{ >> + if (!g_use_xe_vfio_pci) { >> + set_skip_reason(data, "xe-vfio-pci binding is disabled\n"); >> + return; >> + } >> + >> + if (!igt_kmod_is_loaded("xe_vfio_pci")) > Sometimes it is xe_vfio_pci, sometimes xe-vfio-pci xe_vfio_pci is a module name xe-vfio-pci is a driver name > What is the reason for this difference? Shouldn't we keep it somewhere as a constant? I'll add some constants with xe_sriov_vfio test > Or have helpers to handle this module at all? > >> + set_skip_reason(data, "xe_vfio_pci is not loaded\n"); >> +} >> + >> +static void reset_only_subcheck_prepare_vf(int vf_id, struct subcheck_data *data) >> +{ >> + char *slot = igt_sriov_get_vf_pci_slot_alloc(data->pf_fd, vf_id); >> + char bound[64]; >> + int bound_ret; >> + >> + igt_assert(slot); >> + >> + bound_ret = igt_pci_get_bound_driver_name(slot, bound, sizeof(bound)); >> + if (bound_ret <= 0 || strcmp(bound, "xe-vfio-pci") != 0) >> + set_skip_reason(data, "VF%u not bound to xe-vfio-pci\n", vf_id); >> + >> + free(slot); >> +} >> + >> +static void noop_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_data *data) >> +{ >> +} >> + >> +static void noop_subcheck_cleanup(struct subcheck_data *data) >> +{ >> +} >> + >> +static void reset_only_test(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy) >> +{ >> + struct subcheck_data base = { >> + .pf_fd = pf_fd, >> + .num_vfs = num_vfs, >> + .tile = 0, >> + .stop_reason = NULL, >> + }; >> + struct subcheck check = { >> + .data = &base, >> + .name = "reset-only", >> + .init = reset_only_subcheck_init, >> + .prepare_vf = reset_only_subcheck_prepare_vf, >> + .verify_vf = noop_subcheck_verify_vf, >> + .cleanup = noop_subcheck_cleanup, >> + }; >> + >> + verify_flr(pf_fd, num_vfs, &check, 1, exec_strategy); >> +} >> + >> static void clear_tests(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy) >> { >> const uint8_t num_tiles = xe_tiles_count(pf_fd); >> @@ -1141,6 +1201,11 @@ int igt_main_args("vw:", long_options, help_str, opt_handler, NULL) >> autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd); >> } >> >> + igt_describe("Initiate FLR without any additional state checks."); >> + igt_subtest("flr-reset-only") { >> + reset_only_test(pf_fd, 1, execute_sequential_flr); > In this case, shouldn't we have dynamic subtests regarding the number of VFs? > I know that this will be expanded in the next patch, but maybe it should be the default. > Because if someone wants to run tests on only one Vf's, they can still use > the dynamic subtets filter. Currently VF1 is default to keep CI time bounded. In --extended mode (next patch), if numvfs-N is specified, we enable N VFs and run FLR sequentially on each. If no specific numvfs-* dynamic subtest is selected, we iterate over the full range (numvfs-1 … numvfs-totalVFs). If you prefer dynamic by default, which set would you suggest running - VF1 only, random number of VFs, total VFs ? Thanks, Marcin > > Thanks, > Piotr > >> + } >> + >> igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR"); >> igt_subtest("flr-vf1-clear") { >> clear_tests(pf_fd, 1, execute_sequential_flr); >> -- >> 2.43.0 >> ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for reset-only 2026-02-26 17:31 [PATCH i-g-t 0/2] xe_sriov_flr: reset-only FLR smoke test Marcin Bernatowicz 2026-02-26 17:31 ` [PATCH i-g-t 1/2] tests/intel/xe_sriov_flr: Add reset-only FLR subtest Marcin Bernatowicz @ 2026-02-26 17:31 ` Marcin Bernatowicz 2026-02-27 1:09 ` ✓ i915.CI.BAT: success for xe_sriov_flr: reset-only FLR smoke test Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Marcin Bernatowicz @ 2026-02-26 17:31 UTC (permalink / raw) To: igt-dev; +Cc: lukasz.laguna, piotr.piorkowski, Marcin Bernatowicz By default only a single dynamic subtest (numvfs-1) is executed. With --extended, additional dynamic subtests up to the total VF are created. Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> Cc: Lukasz Laguna <lukasz.laguna@intel.com> Cc: Piotr Piórkowski <piotr.piorkowski@intel.com> --- tests/intel/xe_sriov_flr.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c index 846731697..de8fd533d 100644 --- a/tests/intel/xe_sriov_flr.c +++ b/tests/intel/xe_sriov_flr.c @@ -70,6 +70,7 @@ static const char STOP_REASON_SKIP[] = "SKIP"; static int g_wait_flr_ms = 200; static bool g_use_xe_vfio_pci = true; +static bool g_extended_scope; static struct g_mmio { struct xe_mmio *mmio; @@ -1160,6 +1161,9 @@ static int opt_handler(int opt, int opt_index, void *data) long val; switch (opt) { + case 'e': + g_extended_scope = true; + break; case 'v': g_use_xe_vfio_pci = false; igt_info("xe-vfio-pci binding: disabled\n"); @@ -1180,16 +1184,18 @@ static int opt_handler(int opt, int opt_index, void *data) } static const struct option long_options[] = { + { .name = "extended", .has_arg = false, .val = 'e', }, { .name = "no-xe-vfio-pci", .has_arg = false, .val = 'v', }, { .name = "wait-flr-ms", .has_arg = true, .val = 'w', }, {}, }; static const char help_str[] = + " --extended\t\tRun extended scope\n" " --no-xe-vfio-pci\tDo not load/bind xe-vfio-pci for VFs\n" " --wait-flr-ms=MS\tSleep MS milliseconds after VF reset sysfs write (default: 200)\n"; -int igt_main_args("vw:", long_options, help_str, opt_handler, NULL) +int igt_main_args("evw:", long_options, help_str, opt_handler, NULL) { int pf_fd; bool autoprobe; @@ -1202,8 +1208,14 @@ int igt_main_args("vw:", long_options, help_str, opt_handler, NULL) } igt_describe("Initiate FLR without any additional state checks."); - igt_subtest("flr-reset-only") { - reset_only_test(pf_fd, 1, execute_sequential_flr); + igt_subtest_with_dynamic("flr-reset-only") { + for_each_sriov_num_vfs(pf_fd, vf_num) { + if (!g_extended_scope && vf_num > 1) + break; + + igt_dynamic_f("numvfs-%u", vf_num) + reset_only_test(pf_fd, vf_num, execute_sequential_flr); + } } igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR"); -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for xe_sriov_flr: reset-only FLR smoke test 2026-02-26 17:31 [PATCH i-g-t 0/2] xe_sriov_flr: reset-only FLR smoke test Marcin Bernatowicz 2026-02-26 17:31 ` [PATCH i-g-t 1/2] tests/intel/xe_sriov_flr: Add reset-only FLR subtest Marcin Bernatowicz 2026-02-26 17:31 ` [PATCH i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for reset-only Marcin Bernatowicz @ 2026-02-27 1:09 ` Patchwork 2026-02-27 1:17 ` ✓ Xe.CI.BAT: " Patchwork 2026-02-27 8:39 ` ✗ Xe.CI.FULL: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-02-27 1:09 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7590 bytes --] == Series Details == Series: xe_sriov_flr: reset-only FLR smoke test URL : https://patchwork.freedesktop.org/series/162240/ State : success == Summary == CI Bug Log - changes from IGT_8774 -> IGTPW_14628 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-dg2-8 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14628 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-dg2-8: NOTRUN -> [SKIP][1] ([i915#4083]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-8: NOTRUN -> [SKIP][2] ([i915#4079]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg2-8: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic@basic: - bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#15657]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@gem_tiled_pread_basic@basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#11681] / [i915#6621]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-dg2-8: NOTRUN -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-atsm-1: NOTRUN -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-atsm-1/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8774/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#5190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#4212]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-8: NOTRUN -> [SKIP][13] ([i915#4103] / [i915#4213]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-8: NOTRUN -> [SKIP][14] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-dg2-8: NOTRUN -> [SKIP][15] ([i915#5354]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#1072] / [i915#9732]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-8: NOTRUN -> [SKIP][17] ([i915#3555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#3708]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-gtt: - bat-dg2-8: NOTRUN -> [SKIP][19] ([i915#3708] / [i915#4077]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#3291] / [i915#3708]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-dg2-8/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@gem_lmem_swapping@basic: - bat-atsm-1: [ABORT][21] ([i915#15759]) -> [PASS][22] +1 other test pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8774/bat-atsm-1/igt@gem_lmem_swapping@basic.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/bat-atsm-1/igt@gem_lmem_swapping@basic.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8774 -> IGTPW_14628 * Linux: CI_DRM_18056 -> CI_DRM_18057 CI-20190529: 20190529 CI_DRM_18056: 340c78371713a8fdd88fbfe77fd0f7165294c31f @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18057: e42f7566b0d3eba44a6aeeae2c810025c66c44ed @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14628: 76d8924789bed8c7ddd98439975d2cbc8fa86959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8774: 8892452285d691f612ecb3b2a6fefc50983af15f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14628/index.html [-- Attachment #2: Type: text/html, Size: 9125 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for xe_sriov_flr: reset-only FLR smoke test 2026-02-26 17:31 [PATCH i-g-t 0/2] xe_sriov_flr: reset-only FLR smoke test Marcin Bernatowicz ` (2 preceding siblings ...) 2026-02-27 1:09 ` ✓ i915.CI.BAT: success for xe_sriov_flr: reset-only FLR smoke test Patchwork @ 2026-02-27 1:17 ` Patchwork 2026-02-27 8:39 ` ✗ Xe.CI.FULL: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-02-27 1:17 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 24988 bytes --] == Series Details == Series: xe_sriov_flr: reset-only FLR smoke test URL : https://patchwork.freedesktop.org/series/162240/ State : success == Summary == CI Bug Log - changes from XEIGT_8774_BAT -> XEIGTPW_14628_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 13) ------------------------------ Additional (9): bat-bmg-1 bat-lnl-2 bat-lnl-1 bat-ptl-vm bat-bmg-3 bat-wcl-1 bat-wcl-2 bat-bmg-2 bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_14628_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@nullptr: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@fbdev@nullptr.html - bat-lnl-2: NOTRUN -> [SKIP][2] ([Intel XE#2134]) +4 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@fbdev@nullptr.html * igt@fbdev@write: - bat-wcl-2: NOTRUN -> [SKIP][3] ([Intel XE#7241]) +4 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-lnl-1: NOTRUN -> [SKIP][4] ([Intel XE#1466]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-wcl-2: NOTRUN -> [SKIP][5] ([Intel XE#7245]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2233]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-bmg-1: NOTRUN -> [SKIP][7] ([Intel XE#2233]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-lnl-2: NOTRUN -> [SKIP][8] ([Intel XE#1466] / [Intel XE#2235]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-wcl-1: NOTRUN -> [SKIP][9] ([Intel XE#7245]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-lnl-1: NOTRUN -> [SKIP][11] ([Intel XE#2244]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@kms_dsc@dsc-basic.html - bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#2244] / [Intel XE#455]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@kms_dsc@dsc-basic.html - bat-bmg-1: NOTRUN -> [SKIP][13] ([Intel XE#2244]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-1/igt@kms_dsc@dsc-basic.html - bat-wcl-1: NOTRUN -> [SKIP][14] ([Intel XE#7244]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-adlp-7: NOTRUN -> [DMESG-WARN][15] ([Intel XE#7483]) +12 other tests dmesg-warn [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html - bat-lnl-2: NOTRUN -> [SKIP][16] ([Intel XE#2235] / [Intel XE#2482]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-flip-vs-modeset: - bat-wcl-2: NOTRUN -> [SKIP][17] ([Intel XE#7240]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@kms_flip@basic-flip-vs-modeset.html - bat-bmg-2: NOTRUN -> [SKIP][18] ([Intel XE#2482]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_force_connector_basic@force-connector-state: - bat-lnl-1: NOTRUN -> [SKIP][19] ([Intel XE#352]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@kms_force_connector_basic@force-connector-state.html - bat-lnl-2: NOTRUN -> [SKIP][20] ([Intel XE#2235] / [Intel XE#352]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@basic: - bat-wcl-2: NOTRUN -> [SKIP][21] ([Intel XE#7246]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@kms_frontbuffer_tracking@basic.html - bat-bmg-2: NOTRUN -> [SKIP][22] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html - bat-lnl-2: NOTRUN -> [SKIP][23] ([Intel XE#2235] / [Intel XE#2548]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - bat-lnl-1: NOTRUN -> [SKIP][24] ([Intel XE#1470] / [Intel XE#2853]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@kms_hdmi_inject@inject-audio.html - bat-lnl-2: NOTRUN -> [SKIP][25] ([Intel XE#1470] / [Intel XE#2235] / [Intel XE#2853]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-lnl-2: NOTRUN -> [SKIP][26] ([Intel XE#2235]) +13 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_pipe_crc_basic@hang-read-crc: - bat-wcl-2: NOTRUN -> [SKIP][27] ([Intel XE#7237]) +13 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_psr@psr-cursor-plane-move: - bat-lnl-2: NOTRUN -> [SKIP][28] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-wcl-2: NOTRUN -> [SKIP][29] ([Intel XE#2850]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@kms_psr@psr-sprite-plane-onoff.html - bat-bmg-2: NOTRUN -> [SKIP][30] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html - bat-bmg-1: NOTRUN -> [SKIP][31] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@sriov_basic@enable-vfs-autoprobe-off: - bat-lnl-1: NOTRUN -> [SKIP][32] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html - bat-lnl-2: NOTRUN -> [SKIP][33] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][34] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_evict@evict-beng-small.html - bat-lnl-2: NOTRUN -> [SKIP][35] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@xe_evict@evict-beng-small.html * igt@xe_evict@evict-beng-small-cm: - bat-ptl-vm: NOTRUN -> [SKIP][36] ([Intel XE#5764]) +10 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html - bat-lnl-1: NOTRUN -> [SKIP][37] ([Intel XE#6540] / [Intel XE#688]) +11 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@xe_evict@evict-beng-small-cm.html * igt@xe_evict@evict-small-external-cm: - bat-wcl-1: NOTRUN -> [SKIP][38] ([Intel XE#7238]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@xe_evict@evict-small-external-cm.html * igt@xe_evict@evict-small-multi-vm: - bat-wcl-2: NOTRUN -> [SKIP][39] ([Intel XE#7238]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@xe_evict@evict-small-multi-vm.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - bat-adlp-7: NOTRUN -> [SKIP][40] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_balancer@no-exec-parallel-basic: - bat-lnl-1: NOTRUN -> [SKIP][41] ([Intel XE#7482]) +17 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@xe_exec_balancer@no-exec-parallel-basic.html * igt@xe_exec_balancer@no-exec-virtual-basic: - bat-lnl-2: NOTRUN -> [SKIP][42] ([Intel XE#7482]) +17 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@xe_exec_balancer@no-exec-virtual-basic.html * igt@xe_exec_balancer@twice-cm-virtual-userptr: - bat-wcl-2: NOTRUN -> [SKIP][43] ([Intel XE#7482]) +17 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@xe_exec_balancer@twice-cm-virtual-userptr.html * igt@xe_exec_balancer@twice-parallel-basic: - bat-ptl-vm: NOTRUN -> [SKIP][44] ([Intel XE#7482]) +17 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html * igt@xe_exec_balancer@twice-virtual-rebind: - bat-wcl-1: NOTRUN -> [SKIP][45] ([Intel XE#7482]) +17 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@xe_exec_balancer@twice-virtual-rebind.html * igt@xe_exec_balancer@twice-virtual-userptr-invalidate: - bat-adlp-7: NOTRUN -> [SKIP][46] ([Intel XE#7482]) +17 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_exec_balancer@twice-virtual-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][47] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_bo: - bat-lnl-1: NOTRUN -> [SKIP][48] ([Intel XE#2229]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - bat-wcl-2: NOTRUN -> [SKIP][49] ([Intel XE#7239]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html - bat-adlp-7: NOTRUN -> [SKIP][50] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html - bat-lnl-2: NOTRUN -> [SKIP][51] ([Intel XE#2229]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][52] ([Intel XE#2229]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html - bat-bmg-1: NOTRUN -> [SKIP][53] ([Intel XE#2229]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-wcl-1: NOTRUN -> [SKIP][54] ([Intel XE#7239]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-ptl-vm: NOTRUN -> [SKIP][55] ([Intel XE#5775]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-adlp-7: NOTRUN -> [SKIP][56] ([Intel XE#2229] / [Intel XE#5488]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_mmap@vram: - bat-ptl-vm: NOTRUN -> [SKIP][57] ([Intel XE#5776]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-ptl-vm/igt@xe_mmap@vram.html - bat-lnl-1: NOTRUN -> [SKIP][58] ([Intel XE#1416]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@xe_mmap@vram.html - bat-wcl-2: NOTRUN -> [SKIP][59] ([Intel XE#7243]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@xe_mmap@vram.html - bat-adlp-7: NOTRUN -> [SKIP][60] ([Intel XE#1008] / [Intel XE#5591]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_mmap@vram.html - bat-lnl-2: NOTRUN -> [SKIP][61] ([Intel XE#1416]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@xe_mmap@vram.html - bat-wcl-1: NOTRUN -> [SKIP][62] ([Intel XE#7243]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xe2: - bat-adlp-7: NOTRUN -> [SKIP][63] ([Intel XE#977]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-ptl-vm: NOTRUN -> [SKIP][64] ([Intel XE#5777]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html - bat-lnl-1: NOTRUN -> [SKIP][65] ([Intel XE#1420] / [Intel XE#2838]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@xe_pat@pat-index-xehpc.html - bat-wcl-2: NOTRUN -> [SKIP][66] ([Intel XE#7247]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@xe_pat@pat-index-xehpc.html - bat-bmg-2: NOTRUN -> [SKIP][67] ([Intel XE#1420]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html - bat-bmg-1: NOTRUN -> [SKIP][68] ([Intel XE#1420]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-1/igt@xe_pat@pat-index-xehpc.html - bat-adlp-7: NOTRUN -> [SKIP][69] ([Intel XE#2838] / [Intel XE#979]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html - bat-lnl-2: NOTRUN -> [SKIP][70] ([Intel XE#1420] / [Intel XE#2838]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@xe_pat@pat-index-xehpc.html - bat-wcl-1: NOTRUN -> [SKIP][71] ([Intel XE#7247]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: NOTRUN -> [SKIP][72] ([Intel XE#2245]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@xe_pat@pat-index-xelp.html - bat-bmg-1: NOTRUN -> [SKIP][73] ([Intel XE#2245]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-1/igt@xe_pat@pat-index-xelp.html - bat-lnl-2: NOTRUN -> [SKIP][74] ([Intel XE#977]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@xe_pat@pat-index-xelp.html - bat-wcl-1: NOTRUN -> [SKIP][75] ([Intel XE#7242]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@xe_pat@pat-index-xelp.html - bat-ptl-vm: NOTRUN -> [SKIP][76] ([Intel XE#5771]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html - bat-wcl-2: NOTRUN -> [SKIP][77] ([Intel XE#7242]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@xe_pat@pat-index-xelp.html - bat-lnl-1: NOTRUN -> [SKIP][78] ([Intel XE#977]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-ptl-vm: NOTRUN -> [SKIP][79] ([Intel XE#5780]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html - bat-lnl-1: NOTRUN -> [SKIP][80] ([Intel XE#979]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@xe_pat@pat-index-xelpg.html - bat-wcl-2: NOTRUN -> [SKIP][81] ([Intel XE#7248]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-2/igt@xe_pat@pat-index-xelpg.html - bat-bmg-2: NOTRUN -> [SKIP][82] ([Intel XE#2236]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html - bat-bmg-1: NOTRUN -> [SKIP][83] ([Intel XE#2236]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html - bat-adlp-7: NOTRUN -> [SKIP][84] ([Intel XE#979]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html - bat-lnl-2: NOTRUN -> [SKIP][85] ([Intel XE#2236] / [Intel XE#979]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@xe_pat@pat-index-xelpg.html - bat-wcl-1: NOTRUN -> [SKIP][86] ([Intel XE#7248]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-wcl-1/igt@xe_pat@pat-index-xelpg.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p: - bat-bmg-3: NOTRUN -> [SKIP][87] ([Intel XE#6566]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-vram01-p2p.html * igt@xe_sriov_flr@flr-vf1-clear: - bat-lnl-2: NOTRUN -> [SKIP][88] ([Intel XE#3342]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-2/igt@xe_sriov_flr@flr-vf1-clear.html - bat-lnl-1: NOTRUN -> [SKIP][89] ([Intel XE#3342]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-lnl-1/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_waitfence@engine: - bat-dg2-oem2: [PASS][90] -> [FAIL][91] ([Intel XE#6519]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/bat-dg2-oem2/igt@xe_waitfence@engine.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/bat-dg2-oem2/igt@xe_waitfence@engine.html [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [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#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488 [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561 [Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563 [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564 [Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591 [Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764 [Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771 [Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775 [Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776 [Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777 [Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#7237]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7237 [Intel XE#7238]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7238 [Intel XE#7239]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7239 [Intel XE#7240]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7240 [Intel XE#7241]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7241 [Intel XE#7242]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7242 [Intel XE#7243]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7243 [Intel XE#7244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7244 [Intel XE#7245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7245 [Intel XE#7246]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7246 [Intel XE#7247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7247 [Intel XE#7248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7248 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8774 -> IGTPW_14628 * Linux: xe-4626-340c78371713a8fdd88fbfe77fd0f7165294c31f -> xe-4627-e42f7566b0d3eba44a6aeeae2c810025c66c44ed IGTPW_14628: 76d8924789bed8c7ddd98439975d2cbc8fa86959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8774: 8892452285d691f612ecb3b2a6fefc50983af15f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4626-340c78371713a8fdd88fbfe77fd0f7165294c31f: 340c78371713a8fdd88fbfe77fd0f7165294c31f xe-4627-e42f7566b0d3eba44a6aeeae2c810025c66c44ed: e42f7566b0d3eba44a6aeeae2c810025c66c44ed == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/index.html [-- Attachment #2: Type: text/html, Size: 30524 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for xe_sriov_flr: reset-only FLR smoke test 2026-02-26 17:31 [PATCH i-g-t 0/2] xe_sriov_flr: reset-only FLR smoke test Marcin Bernatowicz ` (3 preceding siblings ...) 2026-02-27 1:17 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-02-27 8:39 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-02-27 8:39 UTC (permalink / raw) To: Marcin Bernatowicz; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 37886 bytes --] == Series Details == Series: xe_sriov_flr: reset-only FLR smoke test URL : https://patchwork.freedesktop.org/series/162240/ State : failure == Summary == CI Bug Log - changes from XEIGT_8774_FULL -> XEIGTPW_14628_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14628_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14628_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14628_FULL: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@hotreplug: - shard-bmg: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-9/igt@core_hotunplug@hotreplug.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@core_hotunplug@hotreplug.html * igt@kms_hdr@static-toggle-dpms: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-7/igt@kms_hdr@static-toggle-dpms.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@kms_hdr@static-toggle-dpms.html * {igt@xe_sriov_flr@flr-reset-only} (NEW): - shard-lnl: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-5/igt@xe_sriov_flr@flr-reset-only.html New tests --------- New tests have been introduced between XEIGT_8774_FULL and XEIGTPW_14628_FULL: ### New IGT tests (2) ### * igt@xe_sriov_flr@flr-reset-only: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0, 1.71] s * igt@xe_sriov_flr@flr-reset-only@numvfs-1: - Statuses : 1 pass(s) - Exec time: [1.71] s Known issues ------------ Here are the changes found in XEIGTPW_14628_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1407]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-4/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +4 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2328]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2191]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#3432]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2724]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#4418]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#373]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-1/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2252]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2325]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#306]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_color_pipeline@plane-lut1d@pipe-b-plane-1: - shard-lnl: NOTRUN -> [FAIL][22] ([Intel XE#7305]) +9 other tests fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-4/igt@kms_color_pipeline@plane-lut1d@pipe-b-plane-1.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#1178] / [Intel XE#3304]) +2 other tests fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1: - shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#6707]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2320]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1424]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#323]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4210]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2244]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2244]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1138]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1421]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-bmg: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-1/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-6/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7178]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7178]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7061]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4141]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2311]) +19 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7061]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2350]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2313]) +17 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#656]) +13 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#1503]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-7/igt@kms_hdr@invalid-hdr.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#6901]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-2/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6901]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7283]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#599]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-8/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2393]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-4/igt@kms_plane_lowres@tiling-y.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#870]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2893]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1489]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1406] / [Intel XE#4609]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-1/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1406]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#3414] / [Intel XE#3904]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1499]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#2142]) +1 other test fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4837]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_eudebug_online@resume-dss: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-8/igt@xe_eudebug_online@resume-dss.html * igt@xe_evict@evict-beng-mixed-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@xe_evict@evict-beng-mixed-threads-large-multi-vm.html * igt@xe_evict@evict-mixed-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7140]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@xe_evict@evict-mixed-threads-small-multi-queue.html * igt@xe_exec_balancer@once-cm-parallel-rebind: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#7482]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-8/igt@xe_exec_balancer@once-cm-parallel-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1392]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2322]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#7136]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7136]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-1/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6874]) +19 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-basic-smem: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6874]) +9 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-basic-smem.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#4837]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-2/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#6196]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#5625]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html * igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7138]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-fd-rebind.html * igt@xe_exec_threads@threads-multi-queue-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#7138]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-userptr-invalidate.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#2229]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#586] / [Intel XE#7323]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@xe_mmap@small-bar.html * igt@xe_multigpu_svm@mgpu-atomic-op-basic: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6964]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-6/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2236]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2284]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-3/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1948]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-2/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2284] / [Intel XE#366]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-8/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pxp@display-black-pxp-fb: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4733]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-6/igt@xe_pxp@display-black-pxp-fb.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#944]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-7/igt@xe_query@multigpu-query-topology-l3-bank-mask.html - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#944]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][90] -> [FAIL][91] ([Intel XE#6569]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-3/igt@xe_sriov_flr@flr-twice.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#4273]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-2/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#4351]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-1/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-bmg: [DMESG-FAIL][94] ([Intel XE#1727]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [FAIL][96] ([Intel XE#301]) -> [PASS][97] +1 other test pass [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [SKIP][98] ([Intel XE#7308]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][100] ([Intel XE#7340]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html * igt@kms_rotation_crc@multiplane-rotation: - shard-bmg: [FAIL][102] ([Intel XE#6946]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][104] ([Intel XE#4459]) -> [PASS][105] +1 other test pass [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][106] ([Intel XE#6321]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-small.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_exec_reset@long-spin-reuse-many-preempt-threads: - shard-bmg: [SKIP][108] ([Intel XE#6703]) -> [PASS][109] +12 other tests pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-9/igt@xe_exec_reset@long-spin-reuse-many-preempt-threads.html * igt@xe_exec_system_allocator@many-64k-malloc-mlock: - shard-bmg: [DMESG-FAIL][110] -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_system_allocator@many-64k-malloc-mlock.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-malloc-mlock.html * igt@xe_exec_system_allocator@once-large-malloc: - shard-bmg: [ABORT][112] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_system_allocator@once-large-malloc.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@xe_exec_system_allocator@once-large-malloc.html * igt@xe_exec_system_allocator@threads-many-stride-malloc-multi-fault: - shard-bmg: [DMESG-WARN][114] ([Intel XE#5213] / [Intel XE#6652]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-malloc-multi-fault.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-multi-fault.html * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared: - shard-bmg: [DMESG-FAIL][116] ([Intel XE#6652]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-shared.html #### Warnings #### * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][118] ([Intel XE#3544]) -> [SKIP][119] ([Intel XE#3374] / [Intel XE#3544]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][120] ([Intel XE#6703]) -> [SKIP][121] ([Intel XE#2393]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@kms_plane_lowres@tiling-yf.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-9/igt@kms_plane_lowres@tiling-yf.html * igt@xe_evict@evict-small-multi-queue-cm: - shard-bmg: [SKIP][122] ([Intel XE#6703]) -> [SKIP][123] ([Intel XE#7140]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-cm.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-cm.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: [SKIP][124] ([Intel XE#6703]) -> [SKIP][125] ([Intel XE#2322]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8774/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-rebind.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#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#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [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#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [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#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6946]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6946 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8774 -> IGTPW_14628 * Linux: xe-4626-340c78371713a8fdd88fbfe77fd0f7165294c31f -> xe-4627-e42f7566b0d3eba44a6aeeae2c810025c66c44ed IGTPW_14628: 76d8924789bed8c7ddd98439975d2cbc8fa86959 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8774: 8892452285d691f612ecb3b2a6fefc50983af15f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4626-340c78371713a8fdd88fbfe77fd0f7165294c31f: 340c78371713a8fdd88fbfe77fd0f7165294c31f xe-4627-e42f7566b0d3eba44a6aeeae2c810025c66c44ed: e42f7566b0d3eba44a6aeeae2c810025c66c44ed == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14628/index.html [-- Attachment #2: Type: text/html, Size: 42487 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-02-27 10:07 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-26 17:31 [PATCH i-g-t 0/2] xe_sriov_flr: reset-only FLR smoke test Marcin Bernatowicz 2026-02-26 17:31 ` [PATCH i-g-t 1/2] tests/intel/xe_sriov_flr: Add reset-only FLR subtest Marcin Bernatowicz 2026-02-27 8:58 ` Piotr Piórkowski 2026-02-27 10:07 ` Bernatowicz, Marcin 2026-02-26 17:31 ` [PATCH i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for reset-only Marcin Bernatowicz 2026-02-27 1:09 ` ✓ i915.CI.BAT: success for xe_sriov_flr: reset-only FLR smoke test Patchwork 2026-02-27 1:17 ` ✓ Xe.CI.BAT: " Patchwork 2026-02-27 8:39 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox