* [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers
@ 2023-08-08 19:40 Swati Sharma
2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_kms: add helper to check if output is mst Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Swati Sharma @ 2023-08-08 19:40 UTC (permalink / raw)
To: igt-dev
DP-MST helpers are created to remove duplicate code.
Also, fix is added for excessive logging in deep-color
test seen on mst setup.
v2: -addressed review comments from Bhanu
Swati Sharma (4):
lib/igt_kms: add helper to check if output is mst
lib/igt_kms: add helper for dp-mst connector id
tests/kms: use dp-mst helpers
tests/kms_color: skip deep-color test for mst
lib/igt_kms.c | 52 ++++++++++++++++++++++++++++++++++
lib/igt_kms.h | 2 ++
tests/kms_color.c | 13 +++++++--
tests/kms_content_protection.c | 33 ++-------------------
tests/kms_display_modes.c | 34 ++--------------------
5 files changed, 69 insertions(+), 65 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH i-g-t 1/4] lib/igt_kms: add helper to check if output is mst 2023-08-08 19:40 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma @ 2023-08-08 19:40 ` Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 2/4] lib/igt_kms: add helper for dp-mst connector id Swati Sharma ` (5 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Swati Sharma @ 2023-08-08 19:40 UTC (permalink / raw) To: igt-dev Helper is added to check if output is mst or not. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_kms.c | 21 +++++++++++++++++++++ lib/igt_kms.h | 1 + 2 files changed, 22 insertions(+) diff --git a/lib/igt_kms.c b/lib/igt_kms.c index e0959ccff..b3a9375ee 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6039,3 +6039,24 @@ bool i915_pipe_output_combo_valid(igt_display_t *display) */ return igt_check_bigjoiner_support(display); } + +/** + * igt_check_output_is_dp_mst + * @drmfd: Handle to open drm device + * @output: Target output + * + * Returns: true if output is dp-mst, else false. + */ +bool igt_check_output_is_dp_mst(int drm_fd, igt_output_t *output) +{ + struct kmstest_connector_config config; + const char *encoder; + + kmstest_get_connector_config(drm_fd, output->config.connector->connector_id, -1, &config); + encoder = kmstest_encoder_type_str(config.encoder->encoder_type); + + if (strcmp(encoder, "DP MST")) + return false; + + return true; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index 91355c910..d8d6ccfe5 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1013,5 +1013,6 @@ bool igt_bigjoiner_possible(drmModeModeInfo *mode, int max_dotclock); bool igt_check_bigjoiner_support(igt_display_t *display); bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode); bool i915_pipe_output_combo_valid(igt_display_t *display); +bool igt_check_output_is_dp_mst(int drmfd, igt_output_t *output); #endif /* __IGT_KMS_H__ */ -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 2/4] lib/igt_kms: add helper for dp-mst connector id 2023-08-08 19:40 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_kms: add helper to check if output is mst Swati Sharma @ 2023-08-08 19:40 ` Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 3/4] tests/kms: use dp-mst helpers Swati Sharma ` (4 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Swati Sharma @ 2023-08-08 19:40 UTC (permalink / raw) To: igt-dev Helper is added which returns dp-mst connector id. v2: -use connector_path instead of blob (Bhanu) Signed-off-by: Swati Sharma <swati2.sharma@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 b3a9375ee..0ae952c39 100644 --- a/lib/igt_kms.c +++ b/lib/igt_kms.c @@ -6060,3 +6060,34 @@ bool igt_check_output_is_dp_mst(int drm_fd, igt_output_t *output) return true; } + +static int parse_path_connector(char *connector_path) +{ + int connector_id; + char *encoder; + + encoder = strtok(connector_path, ":"); + igt_assert_f(!strcmp(encoder, "mst"), "PATH connector property expected to have 'mst'\n"); + + connector_id = atoi(strtok(NULL, "-")); + + return connector_id; +} + +/** + * igt_get_dp_mst_connector_id + * @drmfd: Handle to open drm device + * @output: Target output + * + * Returns: dp-mst connector id. + */ +int igt_get_dp_mst_connector_id(igt_output_t *output) +{ + int connector_id; + char *connector_path; + + connector_path = output->config.connector_path; + connector_id = parse_path_connector(connector_path); + + return connector_id; +} diff --git a/lib/igt_kms.h b/lib/igt_kms.h index d8d6ccfe5..e67de4ecd 100644 --- a/lib/igt_kms.h +++ b/lib/igt_kms.h @@ -1014,5 +1014,6 @@ bool igt_check_bigjoiner_support(igt_display_t *display); bool igt_parse_mode_string(const char *mode_string, drmModeModeInfo *mode); bool i915_pipe_output_combo_valid(igt_display_t *display); bool igt_check_output_is_dp_mst(int drmfd, igt_output_t *output); +int igt_get_dp_mst_connector_id(igt_output_t *output); #endif /* __IGT_KMS_H__ */ -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 3/4] tests/kms: use dp-mst helpers 2023-08-08 19:40 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_kms: add helper to check if output is mst Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 2/4] lib/igt_kms: add helper for dp-mst connector id Swati Sharma @ 2023-08-08 19:40 ` Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_color: skip deep-color test for mst Swati Sharma ` (3 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Swati Sharma @ 2023-08-08 19:40 UTC (permalink / raw) To: igt-dev Remove duplicate code and use helpers instead. v2: -fixed if() (CI) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_content_protection.c | 33 ++------------------------------- tests/kms_display_modes.c | 34 ++-------------------------------- 2 files changed, 4 insertions(+), 63 deletions(-) diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c index 6cdf81a28..17779c643 100644 --- a/tests/kms_content_protection.c +++ b/tests/kms_content_protection.c @@ -534,42 +534,15 @@ test_content_protection(enum igt_commit_style s, int content_type) igt_cleanup_uevents(data.uevent_monitor); } -static int parse_path_blob(char *blob_data) -{ - int connector_id; - char *encoder; - - encoder = strtok(blob_data, ":"); - igt_assert_f(!strcmp(encoder, "mst"), "PATH connector property expected to have 'mst'\n"); - - connector_id = atoi(strtok(NULL, "-")); - - return connector_id; -} - static bool output_is_dp_mst(igt_output_t *output, int i) { - drmModePropertyBlobPtr path_blob = NULL; - uint64_t path_blob_id; - drmModeConnector *connector = output->config.connector; - struct kmstest_connector_config config; - const char *encoder; int connector_id; static int prev_connector_id; - kmstest_get_connector_config(data.drm_fd, output->config.connector->connector_id, -1, &config); - encoder = kmstest_encoder_type_str(config.encoder->encoder_type); - - if (strcmp(encoder, "DP MST")) + if(!igt_check_output_is_dp_mst(data.drm_fd, output)) return false; - igt_assert(kmstest_get_property(data.drm_fd, connector->connector_id, - DRM_MODE_OBJECT_CONNECTOR, "PATH", NULL, - &path_blob_id, NULL)); - - igt_assert(path_blob = drmModeGetPropertyBlob(data.drm_fd, path_blob_id)); - - connector_id = parse_path_blob((char *) path_blob->data); + connector_id = igt_get_dp_mst_connector_id(output); /* * Discarding outputs of other DP MST topology. @@ -582,8 +555,6 @@ static bool output_is_dp_mst(igt_output_t *output, int i) return false; } - drmModeFreePropertyBlob(path_blob); - return true; } diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c index 93d91ef5b..7ff52b77e 100644 --- a/tests/kms_display_modes.c +++ b/tests/kms_display_modes.c @@ -77,45 +77,15 @@ static drmModeModeInfo *get_mode(igt_output_t *output) return required_mode; } -static int parse_path_blob(char *blob_data) -{ - int connector_id; - char *encoder; - - encoder = strtok(blob_data, ":"); - igt_assert_f(!strcmp(encoder, "mst"), "PATH connector property expected to have 'mst'\n"); - - connector_id = atoi(strtok(NULL, "-")); - - return connector_id; -} - static bool output_is_dp_mst(data_t *data, igt_output_t *output, int i) { - drmModePropertyBlobPtr path_blob = NULL; - uint64_t path_blob_id; - drmModeConnector *connector = output->config.connector; - struct kmstest_connector_config config; - const char *encoder; int connector_id; static int prev_connector_id; - kmstest_get_connector_config(data->drm_fd, output->config.connector->connector_id, - -1, &config); - encoder = kmstest_encoder_type_str(config.encoder->encoder_type); - - if (strcmp(encoder, "DP MST")) + if(!igt_check_output_is_dp_mst(data->drm_fd, output)) return false; - igt_assert(kmstest_get_property(data->drm_fd, connector->connector_id, - DRM_MODE_OBJECT_CONNECTOR, "PATH", NULL, - &path_blob_id, NULL)); - - igt_assert(path_blob = drmModeGetPropertyBlob(data->drm_fd, path_blob_id)); - - connector_id = parse_path_blob((char *) path_blob->data); - - drmModeFreePropertyBlob(path_blob); + connector_id = igt_get_dp_mst_connector_id(output); /* * Discarding outputs of other DP MST topology. -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 4/4] tests/kms_color: skip deep-color test for mst 2023-08-08 19:40 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma ` (2 preceding siblings ...) 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 3/4] tests/kms: use dp-mst helpers Swati Sharma @ 2023-08-08 19:40 ` Swati Sharma 2023-08-08 20:31 ` [igt-dev] ✓ Fi.CI.BAT: success for dp-mst helpers (rev2) Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Swati Sharma @ 2023-08-08 19:40 UTC (permalink / raw) To: igt-dev In intel driver, for MST streams pipe_bpp is restricted to 8bpc. So, deep-color >= 10bpc will never work for DP-MST even if panel supports 10bpc. Test checks panel supports 10bpc and tries to find such a combination of mode that can really work with 10bpc. So, with n1 modes in MST1 and n2 modes in MST2, test will try n1xn2 times and eventually SKIP. However, trying with these many combinations it is leading to excessive logging ultimately killing the test. Once KMD FIXME, is resolved this MST constraint can be removed. Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/8615 Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_color.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tests/kms_color.c b/tests/kms_color.c index b15b9572c..4a410c039 100644 --- a/tests/kms_color.c +++ b/tests/kms_color.c @@ -847,8 +847,17 @@ run_deep_color_tests_for_pipe(data_t *data, enum pipe p) igt_output_set_prop_value(output, IGT_CONNECTOR_MAX_BPC, 10); igt_output_set_pipe(output, p); - if (is_intel_device(data->drm_fd) && - !igt_max_bpc_constraint(&data->display, p, output, 10)) + /* + * In intel driver, for MST streams pipe_bpp is + * restricted to 8bpc. So, deep-color >= 10bpc + * will never work for DP-MST even if the panel + * supports 10bpc. Once KMD FIXME, is resolved + * this MST constraint can be removed. + */ + if (is_intel_device(data->drm_fd) && igt_check_output_is_dp_mst(data->drm_fd, output)) + continue; + + if (is_intel_device(data->drm_fd) && !igt_max_bpc_constraint(&data->display, p, output, 10)) continue; data->color_depth = 10; -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for dp-mst helpers (rev2) 2023-08-08 19:40 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma ` (3 preceding siblings ...) 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_color: skip deep-color test for mst Swati Sharma @ 2023-08-08 20:31 ` Patchwork 2023-08-09 0:12 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-08-09 7:19 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-08 20:31 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9836 bytes --] == Series Details == Series: dp-mst helpers (rev2) URL : https://patchwork.freedesktop.org/series/122070/ State : success == Summary == CI Bug Log - changes from IGT_7423 -> IGTPW_9545 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/index.html Participating hosts (42 -> 42) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9545 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-2: NOTRUN -> [ABORT][1] ([i915#6687] / [i915#7978] / [i915#8668]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@module-reload: - fi-tgl-1115g4: [PASS][5] -> [FAIL][6] ([i915#7940]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#6621]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [PASS][8] -> [ABORT][9] ([i915#7911] / [i915#7913]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][10] -> [DMESG-FAIL][11] ([i915#5334]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][12] ([i915#5334] / [i915#7872]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][13] ([i915#1886] / [i915#7913]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@migrate: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][14] ([i915#7699]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-8/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - bat-rpls-1: [PASS][15] -> [ABORT][16] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/bat-rpls-1/igt@i915_selftest@live@reset.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-rpls-2: [PASS][17] -> [DMESG-WARN][18] ([i915#6367]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/bat-rpls-2/igt@i915_selftest@live@slpc.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-rpls-2/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#6645]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#7828]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][21] ([fdo#109271]) +16 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#3708]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#3708] / [i915#4077]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-8/igt@prime_vgem@basic-gtt.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-mtlp-8: [ABORT][24] ([i915#7077] / [i915#7977] / [i915#8668]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-cfl-8109u: [FAIL][26] ([i915#7940]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-2: [ABORT][28] ([i915#6687] / [i915#7978] / [i915#8668]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-skl-guc: [FAIL][30] ([i915#7691]) -> [FAIL][31] ([i915#7940]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-kbl-8809g: [FAIL][32] ([i915#8843]) -> [FAIL][33] ([i915#7940]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/fi-kbl-8809g/igt@i915_pm_rpm@basic-rte.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/fi-kbl-8809g/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@requests: - bat-mtlp-6: [DMESG-FAIL][34] ([i915#7269]) -> [DMESG-FAIL][35] ([i915#8497]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/bat-mtlp-6/igt@i915_selftest@live@requests.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/bat-mtlp-6/igt@i915_selftest@live@requests.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7423 -> IGTPW_9545 CI-20190529: 20190529 CI_DRM_13492: 525b387a224ced0a360fcbf92794392999de7208 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/index.html IGT_7423: 1b2ffdc5ef39af31d8a06eade851039dfa7fc5dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/index.html [-- Attachment #2: Type: text/html, Size: 11872 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for dp-mst helpers (rev2) 2023-08-08 19:40 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma ` (4 preceding siblings ...) 2023-08-08 20:31 ` [igt-dev] ✓ Fi.CI.BAT: success for dp-mst helpers (rev2) Patchwork @ 2023-08-09 0:12 ` Patchwork 2023-08-09 7:19 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-09 0:12 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 353 bytes --] == Series Details == Series: dp-mst helpers (rev2) URL : https://patchwork.freedesktop.org/series/122070/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[3]: bat-pvc-2 bat-dg2-oem2 bat-adlp-7 Results: [IGTPW_9545](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9545/index.html) [-- Attachment #2: Type: text/html, Size: 887 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for dp-mst helpers (rev2) 2023-08-08 19:40 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma ` (5 preceding siblings ...) 2023-08-09 0:12 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-08-09 7:19 ` Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-08-09 7:19 UTC (permalink / raw) To: Sharma, Swati2; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 65883 bytes --] == Series Details == Series: dp-mst helpers (rev2) URL : https://patchwork.freedesktop.org/series/122070/ State : success == Summary == CI Bug Log - changes from IGT_7423_full -> IGTPW_9545_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-tglu0 Known issues ------------ Here are the changes found in IGTPW_9545_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][1] ([i915#6122]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8414]) +11 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-2/igt@drm_fdinfo@isolation@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +19 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#4854]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@feature_discovery@chamelium.html * igt@feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#658]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-5/igt@feature_discovery@psr1.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#5325]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-8/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8555]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [PASS][8] -> [FAIL][9] ([i915#2410]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd2: - shard-mtlp: [PASS][10] -> [ABORT][11] ([i915#8865]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hang@bsd2.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-6/igt@gem_ctx_persistence@legacy-engines-hang@bsd2.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) +1 similar issue [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-snb1/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#280]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-8/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][14] ([i915#7975] / [i915#8213]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-1/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#4525]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-2/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#3539] / [i915#4852]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-3/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][17] -> [FAIL][18] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][19] -> [FAIL][20] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][21] -> [FAIL][22] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][23] -> [FAIL][24] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-2/igt@gem_exec_fence@submit67.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-10/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [PASS][28] -> [ABORT][29] ([i915#7392] / [i915#8131]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-apl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-apl6/igt@gem_lmem_evict@dontneed-evict-race.html - shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-glk2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4613]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#284]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-13/igt@gem_media_vme.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4077]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent.html - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4077]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@medium-copy: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4077]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-13/igt@gem_mmap_gtt@medium-copy.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4083]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-10/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@set-cache-level: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4083]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-16/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3282]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4270]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#8428]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-2/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4079]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@gem_render_tiled_blits@basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3297]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-8/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3297]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3297]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-19/igt@gem_userptr_blits@coherency-unsync.html - shard-tglu: NOTRUN -> [SKIP][46] ([i915#3297]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gen7_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][47] ([fdo#109289]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-5/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][48] ([fdo#109289]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@bb-chained: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#2856]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-4/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#2856]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_backlight@basic-brightness: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#5354] / [i915#7561]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][52] -> [SKIP][53] ([fdo#109271]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-apl7/igt@i915_pm_dc@dc9-dpms.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-apl6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][54] -> [FAIL][55] ([i915#3591]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][56] -> [SKIP][57] ([i915#1397]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@sysfs-read: - shard-tglu: [PASS][58] -> [FAIL][59] ([i915#7940]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-tglu-3/igt@i915_pm_rpm@sysfs-read.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-2/igt@i915_pm_rpm@sysfs-read.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#6621]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#6188]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [PASS][62] -> [FAIL][63] ([fdo#103375]) +3 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-snb: NOTRUN -> [DMESG-WARN][64] ([i915#8841]) +6 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-snb5/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#8502] / [i915#8709]) +11 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@crc@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][66] ([i915#8247]) +3 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][67] ([fdo#111615] / [i915#5286]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][68] ([fdo#111614]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#5286]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: [PASS][70] -> [FAIL][71] ([i915#3743]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#5138]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][74] ([fdo#111614]) +3 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][75] ([fdo#111614]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][76] ([fdo#111615]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#6187]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190]) +3 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][79] ([fdo#111615]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4538] / [i915#5190]) +3 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#5354] / [i915#6095]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-4/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#5354] / [i915#6095]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-16/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3886] / [i915#5354] / [i915#6095]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-15/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][85] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3689] / [i915#5354]) +11 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-8/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3734] / [i915#5354] / [i915#6095]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-1/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-14/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][89] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-6/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#6095]) +11 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#3689] / [i915#5354] / [i915#6095]) +2 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-2/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3689] / [i915#3886] / [i915#5354]) +4 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html - shard-rkl: NOTRUN -> [SKIP][93] ([i915#5354]) +3 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-4/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#5354] / [i915#6095]) +4 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-7/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3886] / [i915#6095]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-6/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4087] / [i915#7213]) +4 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][97] ([fdo#111827]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#7828]) +5 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#7828]) +2 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#7828]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html - shard-dg1: NOTRUN -> [SKIP][101] ([i915#7828]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html - shard-tglu: NOTRUN -> [SKIP][102] ([i915#7828]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#6944] / [i915#7116] / [i915#7118]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-7/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#3299]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#7116]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-13/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][106] ([i915#7173]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#7118]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#3359]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#8814]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#3555]) +2 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3555]) +4 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#3546]) +1 similar issue [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4103] / [i915#4213]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4213]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#8588]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3555] / [i915#3840]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3555] / [i915#3840]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3555] / [i915#3840]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-19/igt@kms_dsc@dsc-with-output-formats.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#3555] / [i915#3840]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][120] ([fdo#109274] / [fdo#111767]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-10/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][121] -> [FAIL][122] ([i915#79]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][123] ([fdo#109274]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][124] ([fdo#109274] / [i915#3637]) +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-3/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3637]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#8381]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][127] ([fdo#103375]) +3 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#2672]) +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#2672]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#2587] / [i915#2672]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [PASS][131] -> [FAIL][132] ([i915#6880]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [FAIL][133] ([i915#6880]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#5354]) +20 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#8708]) +1 similar issue [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8708]) +4 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][137] ([fdo#111825] / [i915#1825]) +3 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html - shard-dg1: NOTRUN -> [SKIP][138] ([fdo#111825]) +2 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#1825]) +7 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][140] ([fdo#109280]) +3 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3458]) +12 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3023]) +3 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3458]) +2 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#8708]) +8 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][145] ([fdo#110189]) +5 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#8228]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-2/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][147] ([i915#8292]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#5176]) +19 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#5176]) +11 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#5176]) +3 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#5235]) +3 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#5235]) +11 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][153] ([fdo#109271]) +180 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-snb5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#5235]) +7 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#5235]) +23 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#658]) +2 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#1072]) +2 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-1/igt@kms_psr@dpms.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#4235]) +1 similar issue [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-6/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4235]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_selftest@drm_cmdline: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#8661]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-8/igt@kms_selftest@drm_cmdline.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][161] ([fdo#109271] / [i915#2437]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-apl3/igt@kms_writeback@writeback-pixel-formats.html - shard-glk: NOTRUN -> [SKIP][162] ([fdo#109271] / [i915#2437]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][163] ([fdo#109289]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [PASS][164] -> [FAIL][165] ([i915#4349]) +3 similar issues [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-1/igt@perf_pmu@busy-double-start@vcs1.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8850]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html * igt@v3d/v3d_get_param@get-bad-param: - shard-tglu: NOTRUN -> [SKIP][167] ([fdo#109315] / [i915#2575]) +1 similar issue [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-5/igt@v3d/v3d_get_param@get-bad-param.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#2575]) +2 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-4/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_csd@bad-multisync-in-sync: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#2575]) +3 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-3/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-glk: NOTRUN -> [SKIP][170] ([fdo#109271]) +46 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-glk7/igt@v3d/v3d_submit_csd@bad-pad.html * igt@v3d/v3d_submit_csd@multi-and-single-sync: - shard-apl: NOTRUN -> [SKIP][171] ([fdo#109271]) +53 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-apl1/igt@v3d/v3d_submit_csd@multi-and-single-sync.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#7711]) +2 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#7711]) +4 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-10/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#2575]) +1 similar issue [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-10/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#7711]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-1/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][176] ([i915#6268]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][178] ([i915#6786]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][180] ([i915#2410]) -> [PASS][181] +2 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_eio@kms: - shard-dg1: [FAIL][182] ([i915#5784]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg1-18/igt@gem_eio@kms.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-15/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg2: [FAIL][184] ([i915#5784]) -> [PASS][185] +1 similar issue [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-2/igt@gem_eio@unwedge-stress.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-1/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@hang: - shard-mtlp: [ABORT][186] ([i915#8104] / [i915#8865]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-4/igt@gem_exec_balancer@hang.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@gem_exec_balancer@hang.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][188] ([i915#2842]) -> [PASS][189] +1 similar issue [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][190] ([i915#7975] / [i915#8213]) -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-15/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][192] ([i915#7975] / [i915#8213]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [ABORT][194] ([i915#7392] / [i915#8131]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-priority-all.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][196] ([i915#5566]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-apl4/igt@gen9_exec_parse@allowed-single.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][198] ([i915#8691]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [FAIL][200] -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-2/igt@i915_pm_rc6_residency@rc6-accuracy.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@cursor: - shard-rkl: [FAIL][202] ([i915#7940]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-4/igt@i915_pm_rpm@cursor.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-4/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][204] ([i915#1397]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-2/igt@i915_pm_rpm@dpms-lpsp.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][206] ([i915#1397]) -> [PASS][207] +3 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-17/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress@smem0: - shard-dg1: [FAIL][208] ([i915#7940]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg1-15/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html * igt@i915_pm_rpm@system-suspend: - shard-dg2: [INCOMPLETE][210] -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-5/igt@i915_pm_rpm@system-suspend.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-10/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@reset: - shard-tglu: [INCOMPLETE][212] ([i915#8320]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-tglu-4/igt@i915_pm_rps@reset.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-tglu-6/igt@i915_pm_rps@reset.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][214] ([i915#3743]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_flip@dpms-vs-vblank-race@a-edp1: - shard-mtlp: [DMESG-WARN][216] ([i915#1982]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-6/igt@kms_flip@dpms-vs-vblank-race@a-edp1.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@kms_flip@dpms-vs-vblank-race@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2: - shard-glk: [FAIL][218] ([i915#79]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a3: - shard-dg2: [FAIL][220] ([fdo#103375]) -> [PASS][221] +4 similar issues [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-5/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-5/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [FAIL][222] ([i915#6880]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-mtlp: [FAIL][224] ([i915#1623]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][226] ([i915#8724]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-1/igt@perf@enable-disable@0-rcs0.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][228] ([i915#7484]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [FAIL][230] ([i915#4349]) -> [PASS][231] +3 similar issues [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@ccs0.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg2: [FAIL][232] ([i915#4349]) -> [PASS][233] +7 similar issues [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-11/igt@perf_pmu@render-node-busy-idle@vcs1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-3/igt@perf_pmu@render-node-busy-idle@vcs1.html - shard-dg1: [FAIL][234] ([i915#4349]) -> [PASS][235] +2 similar issues [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [FAIL][236] ([i915#8332]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-3/igt@sysfs_heartbeat_interval@precise@vecs0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-7/igt@sysfs_heartbeat_interval@precise@vecs0.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][238] ([i915#7061] / [i915#8617]) -> [WARN][239] ([i915#7356]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][240] ([fdo#109289]) -> [SKIP][241] ([fdo#109289] / [i915#8403]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][242] ([fdo#109300]) -> [SKIP][243] ([i915#7116]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg1-16/igt@kms_content_protection@mei_interface.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-16/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [FAIL][244] ([i915#2346]) -> [DMESG-FAIL][245] ([i915#2017] / [i915#5954]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][246] ([fdo#110189] / [i915#3955]) -> [SKIP][247] ([i915#3955]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][248] ([i915#3955]) -> [SKIP][249] ([fdo#110189] / [i915#3955]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][250] ([fdo#109285] / [i915#4098]) -> [SKIP][251] ([fdo#109285]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][252] ([i915#4070] / [i915#4816]) -> [SKIP][253] ([i915#4816]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][254] ([i915#1072] / [i915#4078]) -> [SKIP][255] ([i915#1072]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg1-18/igt@kms_psr@primary_page_flip.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg1-14/igt@kms_psr@primary_page_flip.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][256] ([i915#7331]) -> [INCOMPLETE][257] ([i915#5493]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7423/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8320]: https://gitlab.freedesktop.org/drm/intel/issues/8320 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7423 -> IGTPW_9545 CI-20190529: 20190529 CI_DRM_13492: 525b387a224ced0a360fcbf92794392999de7208 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9545: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/index.html IGT_7423: 1b2ffdc5ef39af31d8a06eade851039dfa7fc5dc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9545/index.html [-- Attachment #2: Type: text/html, Size: 80349 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers @ 2023-08-06 16:47 Swati Sharma 0 siblings, 0 replies; 9+ messages in thread From: Swati Sharma @ 2023-08-06 16:47 UTC (permalink / raw) To: igt-dev; +Cc: ankit.k.nautiyal DP-MST helpers are created to remove duplicate code. Also, fix is added for excessive logging in deep-color test seen on mst setup. Swati Sharma (4): lib/igt_kms: add helper to check if output is mst lib/igt_kms: add helper for dp-mst connector id tests/kms: use dp-mst helpers tests/kms_color: skip deep-color test for mst lib/igt_kms.c | 61 ++++++++++++++++++++++++++++++++++ lib/igt_kms.h | 2 ++ tests/kms_color.c | 13 ++++++-- tests/kms_content_protection.c | 33 ++---------------- tests/kms_display_modes.c | 34 ++----------------- 5 files changed, 78 insertions(+), 65 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-08-09 7:19 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-08 19:40 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 1/4] lib/igt_kms: add helper to check if output is mst Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 2/4] lib/igt_kms: add helper for dp-mst connector id Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 3/4] tests/kms: use dp-mst helpers Swati Sharma 2023-08-08 19:40 ` [igt-dev] [PATCH i-g-t 4/4] tests/kms_color: skip deep-color test for mst Swati Sharma 2023-08-08 20:31 ` [igt-dev] ✓ Fi.CI.BAT: success for dp-mst helpers (rev2) Patchwork 2023-08-09 0:12 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-08-09 7:19 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2023-08-06 16:47 [igt-dev] [PATCH i-g-t 0/4] dp-mst helpers Swati Sharma
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox