* [PATCH i-g-t 0/2] Add helper to select non-joiner mode
@ 2026-02-23 9:34 Pranay Samala
2026-02-23 9:34 ` [PATCH i-g-t 1/2] lib/igt_kms: Add helper to get " Pranay Samala
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Pranay Samala @ 2026-02-23 9:34 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
The kms_sharpness_filter test currently fails on outputs that default to
joiner modes. This series adds a helper function to find suitable mode
that doesn't require Bigjoiner/Ultrajoiner, and uses it in the test to
switch to non-joiner mode instead, allowing the test to run successfully
and avoid false failures.
Pranay Samala (2):
lib/igt_kms: Add helper to get non-joiner mode
tests/intel/kms_sharpness_filter: Detect and bypass joiner modes
lib/igt_kms.c | 31 ++++++++++++++++++++++++++++++
lib/igt_kms.h | 1 +
tests/intel/kms_sharpness_filter.c | 11 ++++++++++-
3 files changed, 42 insertions(+), 1 deletion(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t 1/2] lib/igt_kms: Add helper to get non-joiner mode 2026-02-23 9:34 [PATCH i-g-t 0/2] Add helper to select non-joiner mode Pranay Samala @ 2026-02-23 9:34 ` Pranay Samala 2026-02-26 12:09 ` Reddy Guddati, Santhosh 2026-02-23 9:34 ` [PATCH i-g-t 2/2] tests/intel/kms_sharpness_filter: Detect and bypass joiner modes Pranay Samala ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Pranay Samala @ 2026-02-23 9:34 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala Add igt_get_non_joiner_mode() helper function to find a suitable display mode from an output that does not require Big Joiner or Ultra Joiner support. This is useful for tests that want to avoid joiner modes and use a single pipe configuration. The function returns a pointer to the mode if found, or NULL if all modes require joiner support. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 32 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index 5c4879604..107db512d 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6997,6 +6997,37 @@ bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, return found; } +/** + * igt_get_non_joiner_mode: + * @drm_fd: drm file descriptor + * @output: pointer to the output structure + * + * Finds the display mode from the output that does not require + * Big Joiner or Ultra Joiner. + * + * Returns: Pointer to non-joiner mode, or NULL if not found. + */ +drmModeModeInfo *igt_get_non_joiner_mode(int drm_fd, igt_output_t *output) +{ + drmModeConnector *connector; + int max_dotclock; + + connector = output->config.connector; + max_dotclock = igt_get_max_dotclock(drm_fd); + + for (int i = 0; i < connector->count_modes; i++) { + drmModeModeInfo *current_mode = &connector->modes[i]; + + /* Check if mode requires joiner */ + if (!igt_bigjoiner_possible(drm_fd, current_mode, max_dotclock) && + !igt_ultrajoiner_possible(drm_fd, current_mode, max_dotclock)) { + return current_mode; + } + } + + return NULL; +} + /** * is_joiner_mode: * @drm_fd: drm file descriptor diff --git a/lib/igt_kms.h b/lib/igt_kms.h index dedc3f880..9a95e8e0a 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1285,6 +1285,7 @@ bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe); bool igt_ultrajoiner_possible(int drmfd, drmModeModeInfo *mode, int max_dotclock); bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, int max_dotclock, drmModeModeInfo *mode); +drmModeModeInfo *igt_get_non_joiner_mode(int drm_fd, igt_output_t *output); bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name); bool is_joiner_mode(int drm_fd, igt_output_t *output); bool igt_check_force_joiner_status(int drmfd, char *connector_name); -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/igt_kms: Add helper to get non-joiner mode 2026-02-23 9:34 ` [PATCH i-g-t 1/2] lib/igt_kms: Add helper to get " Pranay Samala @ 2026-02-26 12:09 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 8+ messages in thread From: Reddy Guddati, Santhosh @ 2026-02-26 12:09 UTC (permalink / raw) To: igt-dev Hi Pranay, On 23-02-2026 15:04, Pranay Samala wrote: > Add igt_get_non_joiner_mode() helper function to find a suitable > display mode from an output that does not require Big Joiner or > Ultra Joiner support. This is useful for tests that want to avoid > joiner modes and use a single pipe configuration. > > The function returns a pointer to the mode if found, or NULL if > all modes require joiner support. > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > lib/igt_kms.c | 31 +++++++++++++++++++++++++++++++ > lib/igt_kms.h | 1 + > 2 files changed, 32 insertions(+) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index 5c4879604..107db512d 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -6997,6 +6997,37 @@ bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, > return found; > } > > +/** > + * igt_get_non_joiner_mode: > + * @drm_fd: drm file descriptor > + * @output: pointer to the output structure > + * > + * Finds the display mode from the output that does not require > + * Big Joiner or Ultra Joiner. > + * > + * Returns: Pointer to non-joiner mode, or NULL if not found. > + */ > +drmModeModeInfo *igt_get_non_joiner_mode(int drm_fd, igt_output_t *output) > +{ > + drmModeConnector *connector; > + int max_dotclock; > + > + connector = output->config.connector; > + max_dotclock = igt_get_max_dotclock(drm_fd); > + > + for (int i = 0; i < connector->count_modes; i++) { > + drmModeModeInfo *current_mode = &connector->modes[i]; > + > + /* Check if mode requires joiner */ > + if (!igt_bigjoiner_possible(drm_fd, current_mode, max_dotclock) && > + !igt_ultrajoiner_possible(drm_fd, current_mode, max_dotclock)) { > + return current_mode; > + } Consider moving this to a function mode_nees_joiner() or something, Otherwise LGTM. Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com> > + } > + > + return NULL; > +} > + > /** > * is_joiner_mode: > * @drm_fd: drm file descriptor > diff --git a/lib/igt_kms.h b/lib/igt_kms.h > index dedc3f880..9a95e8e0a 100644 > --- a/lib/igt_kms.h > +++ b/lib/igt_kms.h > @@ -1285,6 +1285,7 @@ bool igt_is_joiner_enabled_for_pipe(int drmfd, enum pipe pipe); > bool igt_ultrajoiner_possible(int drmfd, drmModeModeInfo *mode, int max_dotclock); > bool ultrajoiner_mode_found(int drm_fd, drmModeConnector *connector, > int max_dotclock, drmModeModeInfo *mode); > +drmModeModeInfo *igt_get_non_joiner_mode(int drm_fd, igt_output_t *output); > bool igt_has_force_joiner_debugfs(int drmfd, char *conn_name); > bool is_joiner_mode(int drm_fd, igt_output_t *output); > bool igt_check_force_joiner_status(int drmfd, char *connector_name); ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/kms_sharpness_filter: Detect and bypass joiner modes 2026-02-23 9:34 [PATCH i-g-t 0/2] Add helper to select non-joiner mode Pranay Samala 2026-02-23 9:34 ` [PATCH i-g-t 1/2] lib/igt_kms: Add helper to get " Pranay Samala @ 2026-02-23 9:34 ` Pranay Samala 2026-03-03 1:30 ` Reddy Guddati, Santhosh 2026-02-23 13:08 ` ✓ Xe.CI.BAT: success for Add helper to select non-joiner mode Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Pranay Samala @ 2026-02-23 9:34 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala When the output configured to a joiner mode (Big Joiner or Ultra Joiner), switch to a non-joiner mode before running the sharpness filter test, since CASF is not supported on joiner configurations. This ensures the sharpness filter test runs on a single pipe configuration and avoid false failures. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/intel/kms_sharpness_filter.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/intel/kms_sharpness_filter.c b/tests/intel/kms_sharpness_filter.c index eddfad6b9..e1a6be676 100644 --- a/tests/intel/kms_sharpness_filter.c +++ b/tests/intel/kms_sharpness_filter.c @@ -440,7 +440,16 @@ run_sharpness_filter_test(data_t *data, enum test_type type) data->output = output; data->pipe_id = crtc->pipe; data->crtc = igt_crtc_for_pipe(display, data->pipe_id); - data->mode = igt_output_get_mode(data->output); + + if (is_joiner_mode(data->drm_fd, data->output)) { + data->mode = igt_get_non_joiner_mode(data->drm_fd, data->output); + igt_info("Executing on mode %dx%d@%d\n", + data->mode->hdisplay, + data->mode->vdisplay, + data->mode->vrefresh); + } else { + data->mode = igt_output_get_mode(data->output); + } if (!has_sharpness_filter(data->crtc)) { igt_info("%s: Doesn't support IGT_CRTC_SHARPNESS_STRENGTH.\n", -- 2.34.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/kms_sharpness_filter: Detect and bypass joiner modes 2026-02-23 9:34 ` [PATCH i-g-t 2/2] tests/intel/kms_sharpness_filter: Detect and bypass joiner modes Pranay Samala @ 2026-03-03 1:30 ` Reddy Guddati, Santhosh 0 siblings, 0 replies; 8+ messages in thread From: Reddy Guddati, Santhosh @ 2026-03-03 1:30 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, sameer.lattannavar Hi Pranay, On 23-02-2026 15:04, Pranay Samala wrote: > When the output configured to a joiner mode (Big Joiner or Ultra Joiner), > switch to a non-joiner mode before running the sharpness filter test, > since CASF is not supported on joiner configurations. > This ensures the sharpness filter test runs on a single pipe configuration > and avoid false failures. > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/intel/kms_sharpness_filter.c | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > > diff --git a/tests/intel/kms_sharpness_filter.c b/tests/intel/kms_sharpness_filter.c > index eddfad6b9..e1a6be676 100644 > --- a/tests/intel/kms_sharpness_filter.c > +++ b/tests/intel/kms_sharpness_filter.c > @@ -440,7 +440,16 @@ run_sharpness_filter_test(data_t *data, enum test_type type) > data->output = output; > data->pipe_id = crtc->pipe; > data->crtc = igt_crtc_for_pipe(display, data->pipe_id); > - data->mode = igt_output_get_mode(data->output); > + > + if (is_joiner_mode(data->drm_fd, data->output)) { If there is a known limitation with KMD that joiner and sharpness concurrently do not work, please add FIXME. > + data->mode = igt_get_non_joiner_mode(data->drm_fd, data->output); > + igt_info("Executing on mode %dx%d@%d\n", > + data->mode->hdisplay, > + data->mode->vdisplay, > + data->mode->vrefresh); > + } else { > + data->mode = igt_output_get_mode(data->output); > + } > > if (!has_sharpness_filter(data->crtc)) { > igt_info("%s: Doesn't support IGT_CRTC_SHARPNESS_STRENGTH.\n", ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for Add helper to select non-joiner mode 2026-02-23 9:34 [PATCH i-g-t 0/2] Add helper to select non-joiner mode Pranay Samala 2026-02-23 9:34 ` [PATCH i-g-t 1/2] lib/igt_kms: Add helper to get " Pranay Samala 2026-02-23 9:34 ` [PATCH i-g-t 2/2] tests/intel/kms_sharpness_filter: Detect and bypass joiner modes Pranay Samala @ 2026-02-23 13:08 ` Patchwork 2026-02-23 13:09 ` ✗ i915.CI.BAT: failure " Patchwork 2026-02-24 5:14 ` ✗ Xe.CI.FULL: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-02-23 13:08 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1554 bytes --] == Series Details == Series: Add helper to select non-joiner mode URL : https://patchwork.freedesktop.org/series/161951/ State : success == Summary == CI Bug Log - changes from XEIGT_8765_BAT -> XEIGTPW_14593_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 13) ------------------------------ Missing (1): bat-bmg-3 Known issues ------------ Here are the changes found in XEIGTPW_14593_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_waitfence@abstime: - bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/bat-dg2-oem2/igt@xe_waitfence@abstime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/bat-dg2-oem2/igt@xe_waitfence@abstime.html [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506 Build changes ------------- * IGT: IGT_8765 -> IGTPW_14593 * Linux: xe-4585-f8bde45966c329f3025862c5fc462e4b13f52ca8 -> xe-4590-616fe8160929511b0679615cda09751043490b18 IGTPW_14593: 8d4635225427fa6957f22f6d6fd5529c3a213295 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8765: 8765 xe-4585-f8bde45966c329f3025862c5fc462e4b13f52ca8: f8bde45966c329f3025862c5fc462e4b13f52ca8 xe-4590-616fe8160929511b0679615cda09751043490b18: 616fe8160929511b0679615cda09751043490b18 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/index.html [-- Attachment #2: Type: text/html, Size: 2130 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.BAT: failure for Add helper to select non-joiner mode 2026-02-23 9:34 [PATCH i-g-t 0/2] Add helper to select non-joiner mode Pranay Samala ` (2 preceding siblings ...) 2026-02-23 13:08 ` ✓ Xe.CI.BAT: success for Add helper to select non-joiner mode Patchwork @ 2026-02-23 13:09 ` Patchwork 2026-02-24 5:14 ` ✗ Xe.CI.FULL: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-02-23 13:09 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6341 bytes --] == Series Details == Series: Add helper to select non-joiner mode URL : https://patchwork.freedesktop.org/series/161951/ State : failure == Summary == CI Bug Log - changes from IGT_8765 -> IGTPW_14593 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14593 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14593, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14593: ### IGT changes ### #### Possible regressions #### * igt@fbdev@eof: - bat-jsl-5: [PASS][1] -> [SKIP][2] +8 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-jsl-5/igt@fbdev@eof.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-jsl-5/igt@fbdev@eof.html Known issues ------------ Here are the changes found in IGTPW_14593 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-jsl-5: [PASS][3] -> [SKIP][4] ([i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-jsl-5/igt@fbdev@info.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-jsl-5/igt@fbdev@info.html * igt@i915_selftest@live@mman: - bat-atsm-1: [PASS][5] -> [DMESG-FAIL][6] ([i915#14204]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-atsm-1/igt@i915_selftest@live@mman.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-atsm-1/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-jsl-5: [PASS][9] -> [SKIP][10] ([i915#11190]) +13 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-jsl-5/igt@kms_pipe_crc_basic@nonblocking-crc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-jsl-5/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@prime_vgem@basic-fence-flip: - bat-jsl-5: [PASS][11] -> [SKIP][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-jsl-5/igt@prime_vgem@basic-fence-flip.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-jsl-5/igt@prime_vgem@basic-fence-flip.html #### Possible fixes #### * igt@fbdev@info: - fi-hsw-4770: [SKIP][13] ([i915#1849] / [i915#2582]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/fi-hsw-4770/igt@fbdev@info.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/fi-hsw-4770/igt@fbdev@info.html * igt@fbdev@nullptr: - fi-hsw-4770: [SKIP][15] ([i915#2582]) -> [PASS][16] +3 other tests pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/fi-hsw-4770/igt@fbdev@nullptr.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/fi-hsw-4770/igt@fbdev@nullptr.html * igt@gem_softpin@safe-alignment: - fi-hsw-4770: [FAIL][17] ([i915#15527]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/fi-hsw-4770/igt@gem_softpin@safe-alignment.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/fi-hsw-4770/igt@gem_softpin@safe-alignment.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][19] ([i915#12061]) -> [DMESG-FAIL][20] ([i915#12061] / [i915#14204]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-atsm-1/igt@i915_selftest@live.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-atsm-1/igt@i915_selftest@live.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-5: [SKIP][21] ([i915#4103]) -> [SKIP][22] ([i915#11190]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-jsl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-jsl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-5: [SKIP][23] ([i915#3555] / [i915#9886]) -> [SKIP][24] ([i915#11190]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8765/bat-jsl-5/igt@kms_dsc@dsc-basic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/bat-jsl-5/igt@kms_dsc@dsc-basic.html [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#15527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15527 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8765 -> IGTPW_14593 * Linux: CI_DRM_18016 -> CI_DRM_18021 CI-20190529: 20190529 CI_DRM_18016: f8bde45966c329f3025862c5fc462e4b13f52ca8 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18021: 616fe8160929511b0679615cda09751043490b18 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14593: 8d4635225427fa6957f22f6d6fd5529c3a213295 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8765: 8765 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14593/index.html [-- Attachment #2: Type: text/html, Size: 7782 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for Add helper to select non-joiner mode 2026-02-23 9:34 [PATCH i-g-t 0/2] Add helper to select non-joiner mode Pranay Samala ` (3 preceding siblings ...) 2026-02-23 13:09 ` ✗ i915.CI.BAT: failure " Patchwork @ 2026-02-24 5:14 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-02-24 5:14 UTC (permalink / raw) To: Samala, Pranay; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 35581 bytes --] == Series Details == Series: Add helper to select non-joiner mode URL : https://patchwork.freedesktop.org/series/161951/ State : failure == Summary == CI Bug Log - changes from XEIGT_8765_FULL -> XEIGTPW_14593_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14593_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14593_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_14593_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv: - shard-bmg: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html Known issues ------------ Here are the changes found in XEIGTPW_14593_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3279]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-9/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#2191]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +4 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3432]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#3432]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652]) +8 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2724]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#4418]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#4417]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_chamelium_color@degamma: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#306]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2252]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_content_protection@legacy@pipe-a-dp-1: - shard-bmg: NOTRUN -> [FAIL][21] ([Intel XE#3304]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-5/igt@kms_content_protection@legacy@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2320]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1424]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-bmg: [PASS][24] -> [DMESG-WARN][25] ([Intel XE#5354]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#309]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dsc@dsc-fractional-bpp: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2244]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2244]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1421]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-bmg: [PASS][30] -> [ABORT][31] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][32] -> [FAIL][33] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#7178]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1397]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#7179]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-8/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#651]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2311]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4141]) +10 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#6312]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#7061]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7061]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1469]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2313]) +13 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#656]) +10 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#7308]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#6901]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@kms_joiner@basic-big-joiner.html - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#6901]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2501]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#356]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7283]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7283]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#5020]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#2763] / [Intel XE#6886]) +7 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#870]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7339]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][60] -> [FAIL][61] ([Intel XE#7340]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2499]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-6/igt@kms_psr@fbc-pr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1435]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@cmrr: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2168]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-2/igt@kms_vrr@cmrr.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: NOTRUN -> [FAIL][70] ([Intel XE#4459]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1499]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-8/igt@kms_vrr@negative-basic.html * igt@xe_eudebug@basic-close: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#4837]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-6/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4837]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug_online@breakpoint-many-sessions-tiles: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-4/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html * igt@xe_eudebug_online@interrupt-other-debuggable: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-8/igt@xe_eudebug_online@interrupt-other-debuggable.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2322]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1392]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-2/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#7136]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-imm: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#7136]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-imm.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-basic-smem: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#6874]) +8 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-6/igt@xe_exec_multi_queue@one-queue-preempt-mode-basic-smem.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-basic-smem: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#6874]) +10 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-4/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-basic-smem.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#7138]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html * igt@xe_exec_threads@threads-multi-queue-userptr: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#7138]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-userptr.html * igt@xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#560] / [Intel XE#7321]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-3/igt@xe_media_fill@media-fill.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2284] / [Intel XE#366]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@xe_pm@d3cold-basic.html - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2284]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-5/igt@xe_pm@d3cold-basic.html * igt@xe_pm@vram-d3cold-threshold: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#579] / [Intel XE#7329]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pxp@pxp-stale-queue-post-suspend: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4733]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-suspend.html * igt@xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#944]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-5/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#7174]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-4/igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-bmg: [PASS][92] -> [FAIL][93] ([Intel XE#5937]) +2 other tests fail [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-6/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html #### Possible fixes #### * igt@core_hotunplug@hotreplug: - shard-bmg: [ABORT][94] -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-6/igt@core_hotunplug@hotreplug.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-5/igt@core_hotunplug@hotreplug.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [FAIL][96] ([Intel XE#6054]) -> [PASS][97] +3 other tests pass [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-bmg: [SKIP][98] ([Intel XE#367]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [FAIL][100] -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][102] ([Intel XE#7340]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [SKIP][104] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][106] ([Intel XE#2142]) -> [PASS][107] +1 other test pass [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma: - shard-lnl: [FAIL][108] ([Intel XE#5625]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][110] ([Intel XE#2426]) -> [SKIP][111] ([Intel XE#2509]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: [ABORT][112] ([Intel XE#5466]) -> [ABORT][113] ([Intel XE#5466] / [Intel XE#6652]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8765/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [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#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [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#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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [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#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [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#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [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#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [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#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321 [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329 [Intel XE#7339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7339 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [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_8765 -> IGTPW_14593 * Linux: xe-4585-f8bde45966c329f3025862c5fc462e4b13f52ca8 -> xe-4590-616fe8160929511b0679615cda09751043490b18 IGTPW_14593: 8d4635225427fa6957f22f6d6fd5529c3a213295 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8765: 8765 xe-4585-f8bde45966c329f3025862c5fc462e4b13f52ca8: f8bde45966c329f3025862c5fc462e4b13f52ca8 xe-4590-616fe8160929511b0679615cda09751043490b18: 616fe8160929511b0679615cda09751043490b18 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14593/index.html [-- Attachment #2: Type: text/html, Size: 40235 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-03-03 1:30 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-23 9:34 [PATCH i-g-t 0/2] Add helper to select non-joiner mode Pranay Samala 2026-02-23 9:34 ` [PATCH i-g-t 1/2] lib/igt_kms: Add helper to get " Pranay Samala 2026-02-26 12:09 ` Reddy Guddati, Santhosh 2026-02-23 9:34 ` [PATCH i-g-t 2/2] tests/intel/kms_sharpness_filter: Detect and bypass joiner modes Pranay Samala 2026-03-03 1:30 ` Reddy Guddati, Santhosh 2026-02-23 13:08 ` ✓ Xe.CI.BAT: success for Add helper to select non-joiner mode Patchwork 2026-02-23 13:09 ` ✗ i915.CI.BAT: failure " Patchwork 2026-02-24 5:14 ` ✗ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox