* [igt-dev] [PATCH i-g-t] RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume
@ 2022-10-10 9:35 Jeevan B
2022-10-10 9:47 ` Petri Latvala
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jeevan B @ 2022-10-10 9:35 UTC (permalink / raw)
To: igt-dev; +Cc: suraj.kandpal
adding new test to validate HDCP-MST with suspend resume
test check for valid output which supports MST and HDCP
then commits and check if the content protection is enabled
before and after suspend-resume.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/kms_content_protection.c | 90 +++++++++++++++++++++++++++++++++-
1 file changed, 89 insertions(+), 1 deletion(-)
diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c
index aa28b7bf..701c65fc 100644
--- a/tests/kms_content_protection.c
+++ b/tests/kms_content_protection.c
@@ -48,6 +48,7 @@ struct data {
#define CP_MEI_RELOAD (1 << 2)
#define CP_TYPE_CHANGE (1 << 3)
#define CP_UEVENT (1 << 4)
+#define SUSPEND_RESUME (1 << 5)
#define CP_UNDESIRED 0
#define CP_DESIRED 1
@@ -686,6 +687,85 @@ test_content_protection_mst(int content_type)
test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 1);
}
+static void
+test_content_protection_mst_suspend_resume(int content_type)
+{
+ igt_display_t *display = &data.display;
+ igt_output_t *output;
+ int valid_outputs = 0, dp_mst_outputs = 0, ret, count, max_pipe = 0;
+ enum pipe pipe;
+ igt_output_t *mst_output[IGT_MAX_PIPES], *hdcp_mst_output[IGT_MAX_PIPES];
+
+ for_each_pipe(display, pipe)
+ max_pipe++;
+
+ pipe = PIPE_A;
+
+ for_each_connected_output(display, output) {
+ if (!output_is_dp_mst(output, dp_mst_outputs))
+ continue;
+
+ igt_assert_f(igt_pipe_connector_valid(pipe, output), "Output-pipe combination invalid\n");
+
+ igt_output_set_pipe(output, pipe);
+ prepare_modeset_on_mst_output(output);
+ mst_output[dp_mst_outputs++] = output;
+
+ pipe++;
+
+ if (pipe > max_pipe)
+ break;
+ }
+
+ igt_require_f(dp_mst_outputs > 1, "No DP MST set up with >= 2 outputs found in a single topology\n");
+
+ if (igt_display_try_commit_atomic(display,
+ DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL) != 0) {
+ bool found = igt_override_all_active_output_modes_to_fit_bw(display);
+ igt_require_f(found, "No valid mode combo found for MST modeset\n");
+
+ for (count = 0; count < dp_mst_outputs; count++)
+ prepare_modeset_on_mst_output(mst_output[count]);
+ }
+
+ ret = igt_display_try_commit2(display, COMMIT_ATOMIC);
+ igt_require_f(ret == 0, "Commit failure during MST modeset\n");
+
+ for (count = 0; count < dp_mst_outputs; count++) {
+ if (!output_hdcp_capable(mst_output[count], content_type))
+ continue;
+
+ hdcp_mst_output[valid_outputs++] = mst_output[count];
+ }
+
+ igt_require_f(valid_outputs > 1, "DP MST outputs do not have the required HDCP support\n");
+
+ for (count = 0; count < valid_outputs; count++) {
+ igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED);
+
+ if (output->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE])
+ igt_output_set_prop_value(hdcp_mst_output[count], IGT_CONNECTOR_HDCP_CONTENT_TYPE, content_type);
+ }
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ for (count = 0; count < valid_outputs; count++) {
+ ret = wait_for_prop_value(hdcp_mst_output[count], CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC);
+ igt_assert_f(ret, "Content Protection not enabled on %s\n", hdcp_mst_output[count]->name);
+ }
+
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM, SUSPEND_TEST_NONE);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ for (count = 0; count < valid_outputs; count++) {
+ ret = wait_for_prop_value(hdcp_mst_output[count], CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC);
+ igt_assert_f(ret, "Content Protection not enabled on %s\n", hdcp_mst_output[count]->name);
+ }
+}
+
static void test_content_protection_cleanup(void)
{
igt_display_t *display = &data.display;
@@ -817,6 +897,11 @@ static const struct {
.cp_tests = CP_LIC,
.content_type = HDCP_CONTENT_TYPE_1,
},
+ { .desc = "Test Content protection(Type 1) over DP MST with LIC.",
+ .name = "dp-mst-suspend_resume",
+ .cp_tests = SUSPEND_RESUME,
+ .content_type = HDCP_CONTENT_TYPE_0,
+ },
};
igt_main
@@ -866,7 +951,10 @@ igt_main
igt_subtest(mst_subtests[i].name) {
data.cp_tests = mst_subtests[i].cp_tests;
- test_content_protection_mst(mst_subtests[i].content_type);
+ if (data.cp_tests == SUSPEND_RESUME)
+ test_content_protection_mst_suspend_resume(mst_subtests[i].content_type);
+ else
+ test_content_protection_mst(mst_subtests[i].content_type);
}
}
}
--
2.36.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [igt-dev] [PATCH i-g-t] RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume 2022-10-10 9:35 [igt-dev] [PATCH i-g-t] RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B @ 2022-10-10 9:47 ` Petri Latvala 2022-10-10 12:13 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Petri Latvala @ 2022-10-10 9:47 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev, suraj.kandpal On Mon, Oct 10, 2022 at 03:05:47PM +0530, Jeevan B wrote: > adding new test to validate HDCP-MST with suspend resume > test check for valid output which supports MST and HDCP > then commits and check if the content protection is enabled > before and after suspend-resume. > > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_content_protection.c | 90 +++++++++++++++++++++++++++++++++- > 1 file changed, 89 insertions(+), 1 deletion(-) > > diff --git a/tests/kms_content_protection.c b/tests/kms_content_protection.c > index aa28b7bf..701c65fc 100644 > --- a/tests/kms_content_protection.c > +++ b/tests/kms_content_protection.c > @@ -48,6 +48,7 @@ struct data { > #define CP_MEI_RELOAD (1 << 2) > #define CP_TYPE_CHANGE (1 << 3) > #define CP_UEVENT (1 << 4) > +#define SUSPEND_RESUME (1 << 5) > > #define CP_UNDESIRED 0 > #define CP_DESIRED 1 > @@ -686,6 +687,85 @@ test_content_protection_mst(int content_type) > test_cp_lic_on_mst(hdcp_mst_output, valid_outputs, 1); > } > > +static void > +test_content_protection_mst_suspend_resume(int content_type) > +{ > + igt_display_t *display = &data.display; > + igt_output_t *output; > + int valid_outputs = 0, dp_mst_outputs = 0, ret, count, max_pipe = 0; > + enum pipe pipe; > + igt_output_t *mst_output[IGT_MAX_PIPES], *hdcp_mst_output[IGT_MAX_PIPES]; > + > + for_each_pipe(display, pipe) > + max_pipe++; > + > + pipe = PIPE_A; > + > + for_each_connected_output(display, output) { > + if (!output_is_dp_mst(output, dp_mst_outputs)) > + continue; > + > + igt_assert_f(igt_pipe_connector_valid(pipe, output), "Output-pipe combination invalid\n"); > + > + igt_output_set_pipe(output, pipe); > + prepare_modeset_on_mst_output(output); > + mst_output[dp_mst_outputs++] = output; > + > + pipe++; > + > + if (pipe > max_pipe) > + break; The pipes aren't necessarily contiguous. A valid set of pipes on the system can be A, B, D. -- Petri Latvala ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume 2022-10-10 9:35 [igt-dev] [PATCH i-g-t] RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B 2022-10-10 9:47 ` Petri Latvala @ 2022-10-10 12:13 ` Patchwork 2022-10-10 15:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-10-14 4:37 ` [igt-dev] [PATCH i-g-t] " Kandpal, Suraj 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-10-10 12:13 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4475 bytes --] == Series Details == Series: RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume URL : https://patchwork.freedesktop.org/series/109533/ State : success == Summary == CI Bug Log - changes from CI_DRM_12228 -> IGTPW_7938 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-ctg-p8600 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7938: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-3: - {bat-dg2-9}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-3.html Known issues ------------ Here are the changes found in IGTPW_7938 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_heartbeat: - fi-bxt-dsi: [PASS][3] -> [DMESG-FAIL][4] ([i915#5334]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/fi-bxt-dsi/igt@i915_selftest@live@gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/fi-bxt-dsi/igt@i915_selftest@live@gt_heartbeat.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - {bat-adlm-1}: [DMESG-WARN][5] ([i915#2867]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/bat-adlm-1/igt@gem_exec_suspend@basic-s0@smem.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/bat-adlm-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@requests: - {bat-rpls-1}: [INCOMPLETE][7] ([i915#6257]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/bat-rpls-1/igt@i915_selftest@live@requests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/bat-rpls-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - {bat-rpls-2}: [DMESG-FAIL][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/bat-rpls-2/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/bat-rpls-2/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-2: - {bat-dg2-11}: [FAIL][11] ([i915#6818]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-2.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-2.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 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5537]: https://gitlab.freedesktop.org/drm/intel/issues/5537 [i915#6257]: https://gitlab.freedesktop.org/drm/intel/issues/6257 [i915#6816]: https://gitlab.freedesktop.org/drm/intel/issues/6816 [i915#6818]: https://gitlab.freedesktop.org/drm/intel/issues/6818 [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029 [i915#7031]: https://gitlab.freedesktop.org/drm/intel/issues/7031 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7006 -> IGTPW_7938 CI-20190529: 20190529 CI_DRM_12228: ec49ae119a3998563198b95b64a48fd4561f3ddd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7938: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/index.html IGT_7006: ea6d73b73b88de85d921cbc2680ae8979a2c3ce9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_content_protection@dp-mst-suspend_resume == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/index.html [-- Attachment #2: Type: text/html, Size: 4809 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume 2022-10-10 9:35 [igt-dev] [PATCH i-g-t] RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B 2022-10-10 9:47 ` Petri Latvala 2022-10-10 12:13 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2022-10-10 15:52 ` Patchwork 2022-10-14 4:37 ` [igt-dev] [PATCH i-g-t] " Kandpal, Suraj 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2022-10-10 15:52 UTC (permalink / raw) To: Jeevan B; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 38456 bytes --] == Series Details == Series: RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume URL : https://patchwork.freedesktop.org/series/109533/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12228_full -> IGTPW_7938_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_7938_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_7938_full, please notify your bug team 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_7938/index.html Participating hosts (12 -> 6) ------------------------------ Missing (6): pig-kbl-iris shard-tglu pig-glk-j5005 pig-skl-6260u shard-rkl shard-dg1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_7938_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_content_protection@dp-mst-suspend_resume} (NEW): - shard-tglb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_content_protection@dp-mst-suspend_resume.html - shard-iclb: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb8/igt@kms_content_protection@dp-mst-suspend_resume.html * igt@kms_content_protection@legacy@pipe-a-dp-1: - shard-apl: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl2/igt@kms_content_protection@legacy@pipe-a-dp-1.html New tests --------- New tests have been introduced between CI_DRM_12228_full and IGTPW_7938_full: ### New IGT tests (1) ### * igt@kms_content_protection@dp-mst-suspend_resume: - Statuses : 5 skip(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in IGTPW_7938_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-2x: - shard-iclb: NOTRUN -> [SKIP][4] ([i915#1839]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb3/igt@feature_discovery@display-2x.html - shard-tglb: NOTRUN -> [SKIP][5] ([i915#1839]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@feature_discovery@display-2x.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglb: NOTRUN -> [SKIP][6] ([i915#6335]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [PASS][7] -> [FAIL][8] ([i915#6268]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: [PASS][10] -> [SKIP][11] ([i915#4525]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-iclb2/igt@gem_exec_balancer@parallel-keep-submit-fence.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb8/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-tglb: NOTRUN -> [SKIP][12] ([i915#6344]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][13] -> [FAIL][14] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][15] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_params@no-vebox: - shard-tglb: NOTRUN -> [SKIP][16] ([fdo#109283] / [i915#4877]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@gem_exec_params@no-vebox.html * igt@gem_exec_params@secure-non-root: - shard-tglb: NOTRUN -> [SKIP][17] ([fdo#112283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@gem_exec_params@secure-non-root.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#2190]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl1/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#2190]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk9/igt@gem_huc_copy@huc-copy.html - shard-iclb: NOTRUN -> [SKIP][20] ([i915#2190]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-tglb: NOTRUN -> [SKIP][21] ([i915#4613]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@gem_lmem_swapping@heavy-random.html * igt@gem_pxp@create-regular-context-2: - shard-tglb: NOTRUN -> [SKIP][22] ([i915#4270]) +3 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@gem_pxp@create-regular-context-2.html - shard-iclb: NOTRUN -> [SKIP][23] ([i915#4270]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb1/igt@gem_pxp@create-regular-context-2.html * igt@gem_softpin@evict-snoop: - shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109312]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@gem_softpin@evict-snoop.html - shard-iclb: NOTRUN -> [SKIP][25] ([fdo#109312]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb6/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglb: NOTRUN -> [SKIP][26] ([i915#3323]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gen7_exec_parse@chained-batch: - shard-tglb: NOTRUN -> [SKIP][27] ([fdo#109289]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][28] -> [DMESG-WARN][29] ([i915#5566] / [i915#716]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-apl2/igt@gen9_exec_parse@allowed-single.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglb: NOTRUN -> [SKIP][30] ([i915#2527] / [i915#2856]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@gen9_exec_parse@basic-rejected.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-apl: NOTRUN -> [FAIL][31] ([i915#7036]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#1904]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][33] -> [FAIL][34] ([i915#3989] / [i915#454]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-iclb2/igt@i915_pm_dc@dc6-psr.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb7/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][35] -> [FAIL][36] ([i915#4275]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-apl8/igt@i915_pm_dc@dc9-dpms.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#6590]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_lpsp@screens-disabled: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#1902]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglb: NOTRUN -> [WARN][39] ([i915#2681]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_sseu@full-enable: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#4387]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb8/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [PASS][41] -> [DMESG-WARN][42] ([i915#5591]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-tglb5/igt@i915_selftest@live@hangcheck.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb5/igt@i915_selftest@live@hangcheck.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1: - shard-glk: [PASS][43] -> [FAIL][44] ([i915#2521]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#1769]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271]) +78 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html - shard-tglb: NOTRUN -> [SKIP][47] ([i915#5286]) +2 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-iclb: NOTRUN -> [SKIP][48] ([i915#5286]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb8/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#111614]) +2 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#110725] / [fdo#111614]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#111615]) +5 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3886]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk9/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109278] / [i915#3886]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][54] ([i915#6095]) +4 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3689] / [i915#3886]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb8/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][56] ([i915#3689] / [i915#6095]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl8/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][58] ([fdo#111615] / [i915#3689]) +8 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][59] ([i915#3689]) +7 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109278]) +4 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb2/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_chamelium@hdmi-edid-read: - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-snb4/igt@kms_chamelium@hdmi-edid-read.html - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk5/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109284] / [fdo#111827]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb5/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium@vga-hpd-after-suspend: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +3 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl6/igt@kms_chamelium@vga-hpd-after-suspend.html - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109284] / [fdo#111827]) +8 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@kms_chamelium@vga-hpd-after-suspend.html * igt@kms_color@ctm-0-75@pipe-a-edp-1: - shard-iclb: NOTRUN -> [FAIL][66] ([i915#315] / [i915#6946]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb3/igt@kms_color@ctm-0-75@pipe-a-edp-1.html * igt@kms_color@ctm-0-75@pipe-c-edp-1: - shard-tglb: NOTRUN -> [FAIL][67] ([i915#315]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@kms_color@ctm-0-75@pipe-c-edp-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglb: NOTRUN -> [SKIP][68] ([i915#3116] / [i915#3299]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#7118]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@kms_content_protection@legacy.html - shard-iclb: NOTRUN -> [SKIP][70] ([i915#7118]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb3/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271]) +80 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-snb4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-tglb: NOTRUN -> [SKIP][72] ([i915#3359]) +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-iclb: NOTRUN -> [SKIP][73] ([i915#3359]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglb: NOTRUN -> [SKIP][74] ([i915#3555]) +6 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109274]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109274] / [fdo#111825]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor: - shard-tglb: NOTRUN -> [SKIP][77] ([i915#4103]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@kms_cursor_legacy@short-busy-flip-before-cursor.html * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: - shard-tglb: NOTRUN -> [SKIP][78] ([i915#3528]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [PASS][79] -> [INCOMPLETE][80] ([i915#180] / [i915#1982] / [i915#4939]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109274] / [fdo#111825] / [i915#3637] / [i915#3966]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-absolute-wf_vblank@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [DMESG-WARN][82] ([i915#118] / [i915#1888]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk5/igt@kms_flip@2x-absolute-wf_vblank@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglb: NOTRUN -> [SKIP][83] ([fdo#109274] / [fdo#111825] / [i915#3637]) +4 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@b-dp1: - shard-apl: [PASS][84] -> [DMESG-WARN][85] ([i915#180]) +3 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@b-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][86] ([i915#2587] / [i915#2672]) +4 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][87] ([i915#2672]) +4 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][88] ([i915#2587] / [i915#2672]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][89] ([i915#3555]) +4 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: [PASS][90] -> [FAIL][91] ([i915#2546]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-tglb: NOTRUN -> [SKIP][92] ([i915#6497]) +14 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt: - shard-iclb: NOTRUN -> [SKIP][93] ([fdo#109280]) +13 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt: - shard-tglb: NOTRUN -> [SKIP][94] ([fdo#109280] / [fdo#111825]) +35 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1: - shard-iclb: [PASS][95] -> [SKIP][96] ([i915#5176]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-iclb6/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][97] ([i915#5176]) +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb1/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][98] ([fdo#109271]) +42 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk8/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1: - shard-tglb: NOTRUN -> [SKIP][99] ([i915#5176]) +3 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglb: NOTRUN -> [SKIP][100] ([i915#2920]) +3 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html - shard-iclb: NOTRUN -> [SKIP][101] ([fdo#111068] / [i915#658]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#658]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk6/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109642] / [fdo#111068] / [i915#658]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#658]) +3 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl1/igt@kms_psr2_su@page_flip-p010.html - shard-tglb: NOTRUN -> [SKIP][105] ([i915#7037]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr2_dpms: - shard-iclb: NOTRUN -> [SKIP][106] ([fdo#109441]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb1/igt@kms_psr@psr2_dpms.html * igt@kms_psr@psr2_primary_blt: - shard-tglb: NOTRUN -> [FAIL][107] ([i915#132] / [i915#3467]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb3/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr@psr2_sprite_plane_onoff: - shard-iclb: [PASS][108] -> [SKIP][109] ([fdo#109441]) +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-iclb2/igt@kms_psr@psr2_sprite_plane_onoff.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb5/igt@kms_psr@psr2_sprite_plane_onoff.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglb: NOTRUN -> [SKIP][110] ([i915#5289]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglb: NOTRUN -> [SKIP][111] ([fdo#111615] / [i915#5289]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vblank@pipe-d-wait-idle: - shard-apl: NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#533]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl6/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-fb-id: - shard-tglb: NOTRUN -> [SKIP][113] ([i915#2437]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#2437]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk9/igt@kms_writeback@writeback-fb-id.html - shard-iclb: NOTRUN -> [SKIP][115] ([i915#2437]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb6/igt@kms_writeback@writeback-fb-id.html - shard-apl: NOTRUN -> [SKIP][116] ([fdo#109271] / [i915#2437]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl8/igt@kms_writeback@writeback-fb-id.html * igt@prime_vgem@basic-userptr: - shard-tglb: NOTRUN -> [SKIP][117] ([fdo#109295] / [i915#3301]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@prime_vgem@basic-userptr.html * igt@prime_vgem@fence-flip-hang: - shard-tglb: NOTRUN -> [SKIP][118] ([fdo#109295]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@prime_vgem@fence-flip-hang.html * igt@sysfs_clients@busy: - shard-tglb: NOTRUN -> [SKIP][119] ([i915#2994]) +3 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@sysfs_clients@busy.html - shard-apl: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#2994]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-apl2/igt@sysfs_clients@busy.html #### Possible fixes #### * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [SKIP][121] ([i915#4525]) -> [PASS][122] +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][123] ([i915#2842]) -> [PASS][124] +4 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1: - shard-tglb: [INCOMPLETE][125] ([i915#2411] / [i915#6021]) -> [PASS][126] +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-tglb8/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: - shard-tglb: [INCOMPLETE][127] -> [PASS][128] +1 similar issue [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-tglb8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][129] ([i915#6117]) -> [SKIP][130] ([i915#4525]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html * igt@kms_content_protection@mei_interface: - shard-tglb: [SKIP][131] ([fdo#109300]) -> [SKIP][132] ([i915#7118]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-tglb8/igt@kms_content_protection@mei_interface.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-tglb2/igt@kms_content_protection@mei_interface.html - shard-iclb: [SKIP][133] ([fdo#109300]) -> [SKIP][134] ([i915#7118]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-iclb1/igt@kms_content_protection@mei_interface.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb6/igt@kms_content_protection@mei_interface.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-iclb: [SKIP][135] ([fdo#111068] / [i915#658]) -> [SKIP][136] ([i915#2920]) +1 similar issue [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12228/shard-iclb5/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6021]: https://gitlab.freedesktop.org/drm/intel/issues/6021 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7006 -> IGTPW_7938 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12228: ec49ae119a3998563198b95b64a48fd4561f3ddd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_7938: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/index.html IGT_7006: ea6d73b73b88de85d921cbc2680ae8979a2c3ce9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7938/index.html [-- Attachment #2: Type: text/html, Size: 46891 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume 2022-10-10 9:35 [igt-dev] [PATCH i-g-t] RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B ` (2 preceding siblings ...) 2022-10-10 15:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-10-14 4:37 ` Kandpal, Suraj 3 siblings, 0 replies; 5+ messages in thread From: Kandpal, Suraj @ 2022-10-14 4:37 UTC (permalink / raw) To: B, Jeevan, igt-dev@lists.freedesktop.org Hi Jeevan > > +static void > +test_content_protection_mst_suspend_resume(int content_type) { > + igt_display_t *display = &data.display; > + igt_output_t *output; > + int valid_outputs = 0, dp_mst_outputs = 0, ret, count, max_pipe = 0; > + enum pipe pipe; > + igt_output_t *mst_output[IGT_MAX_PIPES], > +*hdcp_mst_output[IGT_MAX_PIPES]; > + > + for_each_pipe(display, pipe) > + max_pipe++; > + > + pipe = PIPE_A; > + > + for_each_connected_output(display, output) { > + if (!output_is_dp_mst(output, dp_mst_outputs)) > + continue; > + > + igt_assert_f(igt_pipe_connector_valid(pipe, output), "Output- > pipe > +combination invalid\n"); > + > + igt_output_set_pipe(output, pipe); > + prepare_modeset_on_mst_output(output); > + mst_output[dp_mst_outputs++] = output; > + > + pipe++; > + > + if (pipe > max_pipe) > + break; Also in addition to what Petri Latvala said the condition should be >= > + } > + > + igt_require_f(dp_mst_outputs > 1, "No DP MST set up with >= 2 > outputs > +found in a single topology\n"); > + > + if (igt_display_try_commit_atomic(display, > + DRM_MODE_ATOMIC_TEST_ONLY | > + DRM_MODE_ATOMIC_ALLOW_MODESET, > + NULL) != 0) { > + bool found = > igt_override_all_active_output_modes_to_fit_bw(display); > + igt_require_f(found, "No valid mode combo found for MST > modeset\n"); > + > + for (count = 0; count < dp_mst_outputs; count++) > + > prepare_modeset_on_mst_output(mst_output[count]); > + } > + > + ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > + igt_require_f(ret == 0, "Commit failure during MST modeset\n"); > + > + for (count = 0; count < dp_mst_outputs; count++) { > + if (!output_hdcp_capable(mst_output[count], content_type)) > + continue; > + > + hdcp_mst_output[valid_outputs++] = mst_output[count]; > + } > + > + igt_require_f(valid_outputs > 1, "DP MST outputs do not have the > +required HDCP support\n"); > + > + for (count = 0; count < valid_outputs; count++) { > + igt_output_set_prop_value(hdcp_mst_output[count], > +IGT_CONNECTOR_CONTENT_PROTECTION, CP_DESIRED); > + > + if (output->props[IGT_CONNECTOR_HDCP_CONTENT_TYPE]) > + igt_output_set_prop_value(hdcp_mst_output[count], > IGT_CONNECTOR_HDCP_CONTENT_TYPE, content_type); > + } > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + for (count = 0; count < valid_outputs; count++) { > + ret = wait_for_prop_value(hdcp_mst_output[count], > CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC); > + igt_assert_f(ret, "Content Protection not enabled on %s\n", > hdcp_mst_output[count]->name); > + } IGT should try to authenticate hdcp two more time incase it does not get HDCP CP Enabled property as userspace need to try HDCP authentication thrice before failing the authentication > + > + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, > SUSPEND_TEST_NONE); > + > + igt_display_commit2(display, COMMIT_ATOMIC); > + > + for (count = 0; count < valid_outputs; count++) { > + ret = wait_for_prop_value(hdcp_mst_output[count], > CP_ENABLED, KERNEL_AUTH_TIME_ALLOWED_MSEC); > + igt_assert_f(ret, "Content Protection not enabled on %s\n", > hdcp_mst_output[count]->name); > + } > +} > + > static void test_content_protection_cleanup(void) > { > igt_display_t *display = &data.display; @@ -817,6 +897,11 @@ static > const struct { > .cp_tests = CP_LIC, > .content_type = HDCP_CONTENT_TYPE_1, > }, > + { .desc = "Test Content protection(Type 1) over DP MST with LIC.", > + .name = "dp-mst-suspend_resume", > + .cp_tests = SUSPEND_RESUME, > + .content_type = HDCP_CONTENT_TYPE_0, > + }, Can we have this as HDCP_CONTENT_TYPE_1 > }; Best Regards, Suraj Kandpal > 2.36.0 ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-10-14 4:38 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-10-10 9:35 [igt-dev] [PATCH i-g-t] RFC: kms_content_protection: Add a test for HDCP-MST with suspend resume Jeevan B 2022-10-10 9:47 ` Petri Latvala 2022-10-10 12:13 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-10-10 15:52 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-10-14 4:37 ` [igt-dev] [PATCH i-g-t] " Kandpal, Suraj
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.