* [igt-dev] [PATCH i-g-t v5 0/4] Validate max source size
@ 2023-03-01 5:23 Swati Sharma
2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 1/4] tests/kms_plane_scaling: Prep work Swati Sharma
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Swati Sharma @ 2023-03-01 5:23 UTC (permalink / raw)
To: igt-dev
i915 specific test is added to validate max source size width.
Swati Sharma (4):
tests/kms_plane_scaling: Prep work
tests/kms_plane_scaling: Minor fixes
tests/kms_plane_scaling: Add test to validate max source size
HAX: Add i915-max-source-size to fast-feedback.testlist
tests/intel-ci/fast-feedback.testlist | 1 +
tests/kms_plane_scaling.c | 156 +++++++++++++++++++++++---
2 files changed, 139 insertions(+), 18 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t v5 1/4] tests/kms_plane_scaling: Prep work 2023-03-01 5:23 [igt-dev] [PATCH i-g-t v5 0/4] Validate max source size Swati Sharma @ 2023-03-01 5:23 ` Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 2/4] tests/kms_plane_scaling: Minor fixes Swati Sharma ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-03-01 5:23 UTC (permalink / raw) To: igt-dev struct can be reused to add more test cases. v2: -don't declare list of lists[JP] Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_plane_scaling.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index 74554915f..ecb4087f4 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -43,6 +43,15 @@ typedef struct { bool extended; } data_t; +struct invalid_paramtests { + const char *testname; + uint32_t planesize[2]; + struct { + enum igt_atomic_plane_properties prop; + uint32_t value; + } params[8]; +}; + const struct { const char * const describe; const char * const name; @@ -901,14 +910,7 @@ static void invalid_parameter_tests(data_t *d) igt_plane_t *plane; int rval; - const struct { - const char *testname; - uint32_t planesize[2]; - struct { - enum igt_atomic_plane_properties prop; - uint32_t value; - } params[8]; - } paramtests[] = { + static const struct invalid_paramtests paramtests[] = { { .testname = "less-than-1-height-src", .planesize = {256, 8}, -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v5 2/4] tests/kms_plane_scaling: Minor fixes 2023-03-01 5:23 [igt-dev] [PATCH i-g-t v5 0/4] Validate max source size Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 1/4] tests/kms_plane_scaling: Prep work Swati Sharma @ 2023-03-01 5:23 ` Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 3/4] tests/kms_plane_scaling: Add test to validate max source size Swati Sharma ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-03-01 5:23 UTC (permalink / raw) To: igt-dev Minor fixes are done in the existing test. v2: -indentation (JP) -added invalid_parameter_tests() inside igt_subtest_group macro (JP) v3: -moved 2x-scaler-multi-pipe test in the end Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_plane_scaling.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index ecb4087f4..c384a0316 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -931,9 +931,9 @@ static void invalid_parameter_tests(data_t *d) plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); igt_create_fb(d->drm_fd, 256, 256, - DRM_FORMAT_XRGB8888, - DRM_FORMAT_MOD_NONE, - &fb); + DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_NONE, + &fb); } igt_describe("test parameters which should not be accepted"); @@ -943,14 +943,13 @@ static void invalid_parameter_tests(data_t *d) igt_plane_set_position(plane, 0, 0); igt_plane_set_fb(plane, &fb); igt_plane_set_size(plane, - paramtests[i].planesize[0], - paramtests[i].planesize[1]); - + paramtests[i].planesize[0], + paramtests[i].planesize[1]); for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++) igt_plane_set_prop_value(plane, - paramtests[i].params[j].prop, - paramtests[i].params[j].value); + paramtests[i].params[j].prop, + paramtests[i].params[j].value); rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC); @@ -1124,12 +1123,13 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) } } + igt_subtest_group + invalid_parameter_tests(&data); + igt_describe("Tests scaling with multi-pipe."); igt_subtest_f("2x-scaler-multi-pipe") test_scaler_with_multi_pipe_plane(&data); - invalid_parameter_tests(&data); - igt_fixture { igt_display_fini(&data.display); close(data.drm_fd); -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v5 3/4] tests/kms_plane_scaling: Add test to validate max source size 2023-03-01 5:23 [igt-dev] [PATCH i-g-t v5 0/4] Validate max source size Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 1/4] tests/kms_plane_scaling: Prep work Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 2/4] tests/kms_plane_scaling: Minor fixes Swati Sharma @ 2023-03-01 5:23 ` Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 4/4] HAX: Add i915-max-source-size to fast-feedback.testlist Swati Sharma ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-03-01 5:23 UTC (permalink / raw) To: igt-dev i915 specific test is added to validate max source size. This test is expected to return -EINVAL for platforms where we have max source width 4096 whereas it will pass on platforms having max source width 5120. We have created fb of size 5120x4320 (=size of source) and downscaled to 3840x2160(=size of dest). On MTL(disp_ver=14), in dmesg we can see [drm:skl_update_scaler [i915]] scaler_user index 0.0: src 5120x4320 dst 3840x2160 size is out of scaler range. since max source width supported is 4096 whereas same test will pass on ADLP(display_ver=13) since max source width supported is 5120. v2: -updated comment (JP) -not declare list of tests (JP) -fixed indentation (JP) -added i915_max_source_size_test() inside igt_subtest_group() (JP) v3: -added restriction to run this test only when HDISPLAY=3840 v4: -remove inner loop (JP) -test for HDISPLAY >= 3840 (JP) v5: -override mode with lowest vrefresh to avoid cdclk lim (JP) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/kms_plane_scaling.c | 118 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c index c384a0316..489e3093e 100644 --- a/tests/kms_plane_scaling.c +++ b/tests/kms_plane_scaling.c @@ -26,6 +26,8 @@ #include "igt_vec.h" #include <math.h> +#define HDISPLAY_4K 3840 + IGT_TEST_DESCRIPTION("Test display plane scaling"); enum scaler_combo_test_type { @@ -964,6 +966,119 @@ static void invalid_parameter_tests(data_t *d) } } +static drmModeModeInfo *find_mode(data_t *data, igt_output_t *output, const uint32_t planesize[]) +{ + drmModeModeInfo *mode = NULL; + + for (int i = 0; i < output->config.connector->count_modes; i++) { + if (output->config.connector->modes[i].hdisplay == planesize[0] && + output->config.connector->modes[i].vdisplay == planesize[1] ) { + if (mode && + mode->vrefresh < output->config.connector->modes[i].vrefresh) + continue; + + mode = &output->config.connector->modes[i]; + } + } + + return mode; +} + +/* + * Max source/destination width/height for i915 driver. + * These numbers are coming from + * drivers/gpu/drm/i915/display/skl_scaler.c in kernel sources. + * + * DISPLAY_VER < 11 + * max_src_w = 4096 + * max_src_h = 4096 + * max_dst_w = 4096 + * max_dst_h = 4096 + * + * DISPLAY_VER = 11 + * max_src_w = 5120 + * max_src_h = 4096 + * max_dst_w = 5120 + * max_dst_h = 4096 + * + * DISPLAY_VER = 12-13 + * max_src_w = 5120 + * max_src_h = 8192 + * max_dst_w = 8192 + * max_dst_h = 8192 + * + * DISPLAY_VER = 14 + * max_src_w = 4096 + * max_src_h = 8192 + * max_dst_w = 8192 + * max_dst_h = 8192 + */ + +static void i915_max_source_size_test(data_t *d) +{ + enum pipe pipe = PIPE_A; + drmModeModeInfo *mode = NULL; + igt_output_t *output; + igt_fb_t fb; + igt_plane_t *plane; + int rval; + + static const struct invalid_paramtests paramtests[] = { + { + .testname = "max-src-size", + .planesize = {3840, 2160}, + }, + }; + + igt_fixture { + igt_require_intel(d->drm_fd); + + output = igt_get_single_output_for_pipe(&d->display, pipe); + igt_require(output); + + mode = igt_output_get_mode(output); + igt_require(mode->hdisplay >= HDISPLAY_4K); + + igt_output_set_pipe(output, pipe); + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); + + igt_create_fb(d->drm_fd, 5120, 4320, + DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_NONE, + &fb); + } + + igt_describe("test for validating max source size."); + igt_subtest_with_dynamic("i915-max-source-size") { + for (uint32_t i = 0; i < ARRAY_SIZE(paramtests); i++) { + mode = find_mode(d, output, paramtests[i].planesize); + if (mode) { + igt_output_override_mode(output, mode); + igt_output_set_pipe(output, pipe); + igt_dynamic(paramtests[i].testname) { + igt_plane_set_position(plane, 0, 0); + igt_plane_set_fb(plane, &fb); + igt_plane_set_size(plane, + paramtests[i].planesize[0], + paramtests[i].planesize[1]); + + rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC); + + if (intel_display_ver(d->devid) < 11 || intel_display_ver(d->devid) >= 14) + igt_assert_eq(rval, -EINVAL); + else + igt_assert_eq(rval, 0); + } + } + } + } + + igt_fixture { + igt_remove_fb(d->drm_fd, &fb); + igt_output_set_pipe(output, PIPE_NONE); + } +} + static int opt_handler(int opt, int opt_index, void *_data) { data_t *data = _data; @@ -1126,6 +1241,9 @@ igt_main_args("", long_opts, help_str, opt_handler, &data) igt_subtest_group invalid_parameter_tests(&data); + igt_subtest_group + i915_max_source_size_test(&data); + igt_describe("Tests scaling with multi-pipe."); igt_subtest_f("2x-scaler-multi-pipe") test_scaler_with_multi_pipe_plane(&data); -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v5 4/4] HAX: Add i915-max-source-size to fast-feedback.testlist 2023-03-01 5:23 [igt-dev] [PATCH i-g-t v5 0/4] Validate max source size Swati Sharma ` (2 preceding siblings ...) 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 3/4] tests/kms_plane_scaling: Add test to validate max source size Swati Sharma @ 2023-03-01 5:23 ` Swati Sharma 2023-03-01 6:00 ` [igt-dev] ✓ Fi.CI.BAT: success for Validate max source size (rev7) Patchwork 2023-03-01 7:28 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-03-01 5:23 UTC (permalink / raw) To: igt-dev CI Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel-ci/fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index d9fcb62d6..e303f6df4 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -129,6 +129,7 @@ igt@kms_psr@cursor_plane_move igt@kms_psr@sprite_plane_onoff igt@kms_psr@primary_mmap_gtt igt@kms_setmode@basic-clone-single-crtc +igt@kms_plane_scaling@i915-max-source-size igt@i915_pm_backlight@basic-brightness igt@i915_pm_rpm@basic-pci-d3-state igt@i915_pm_rpm@basic-rte -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Validate max source size (rev7) 2023-03-01 5:23 [igt-dev] [PATCH i-g-t v5 0/4] Validate max source size Swati Sharma ` (3 preceding siblings ...) 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 4/4] HAX: Add i915-max-source-size to fast-feedback.testlist Swati Sharma @ 2023-03-01 6:00 ` Patchwork 2023-03-01 7:28 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-03-01 6:00 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9778 bytes --] == Series Details == Series: Validate max source size (rev7) URL : https://patchwork.freedesktop.org/series/114059/ State : success == Summary == CI Bug Log - changes from CI_DRM_12794 -> IGTPW_8542 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/index.html Participating hosts (39 -> 37) ------------------------------ Missing (2): fi-kbl-soraka fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8542: ### IGT changes ### #### Possible regressions #### * {igt@kms_plane_scaling@i915-max-source-size} (NEW): - bat-adlm-1: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-adlm-1/igt@kms_plane_scaling@i915-max-source-size.html - bat-rplp-1: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-rplp-1/igt@kms_plane_scaling@i915-max-source-size.html - fi-tgl-1115g4: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-tgl-1115g4/igt@kms_plane_scaling@i915-max-source-size.html - bat-rpls-2: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-rpls-2/igt@kms_plane_scaling@i915-max-source-size.html - bat-jsl-1: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-jsl-1/igt@kms_plane_scaling@i915-max-source-size.html - bat-rpls-1: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-rpls-1/igt@kms_plane_scaling@i915-max-source-size.html - fi-rkl-11600: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-rkl-11600/igt@kms_plane_scaling@i915-max-source-size.html - bat-dg1-5: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-dg1-5/igt@kms_plane_scaling@i915-max-source-size.html - bat-dg1-7: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-dg1-7/igt@kms_plane_scaling@i915-max-source-size.html - bat-jsl-3: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-jsl-3/igt@kms_plane_scaling@i915-max-source-size.html New tests --------- New tests have been introduced between CI_DRM_12794 and IGTPW_8542: ### New IGT tests (2) ### * igt@kms_plane_scaling@i915-max-source-size: - Statuses : 29 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@i915-max-source-size@max-src-size: - Statuses : 7 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8542 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@requests: - bat-rpls-1: [PASS][11] -> [ABORT][12] ([i915#7694] / [i915#7911] / [i915#7982]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/bat-rpls-1/igt@i915_selftest@live@requests.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-rpls-1/igt@i915_selftest@live@requests.html - bat-dg2-11: [PASS][13] -> [ABORT][14] ([i915#7913]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/bat-dg2-11/igt@i915_selftest@live@requests.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-dg2-11/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-2: [PASS][15] -> [ABORT][16] ([i915#4983]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/bat-rpls-2/igt@i915_selftest@live@reset.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-rpls-2/igt@i915_selftest@live@reset.html * {igt@kms_plane_scaling@i915-max-source-size} (NEW): - fi-ivb-3770: NOTRUN -> [SKIP][17] ([fdo#109271]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-ivb-3770/igt@kms_plane_scaling@i915-max-source-size.html - fi-elk-e7500: NOTRUN -> [SKIP][18] ([fdo#109271]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-elk-e7500/igt@kms_plane_scaling@i915-max-source-size.html - fi-bsw-nick: NOTRUN -> [SKIP][19] ([fdo#109271]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-bsw-nick/igt@kms_plane_scaling@i915-max-source-size.html - fi-kbl-guc: NOTRUN -> [SKIP][20] ([fdo#109271]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-kbl-guc/igt@kms_plane_scaling@i915-max-source-size.html - fi-ilk-650: NOTRUN -> [SKIP][21] ([fdo#109271]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-ilk-650/igt@kms_plane_scaling@i915-max-source-size.html - fi-bsw-n3050: NOTRUN -> [SKIP][22] ([fdo#109271]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-bsw-n3050/igt@kms_plane_scaling@i915-max-source-size.html - fi-cfl-guc: NOTRUN -> [SKIP][23] ([fdo#109271]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-cfl-guc/igt@kms_plane_scaling@i915-max-source-size.html - fi-kbl-x1275: NOTRUN -> [SKIP][24] ([fdo#109271]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-kbl-x1275/igt@kms_plane_scaling@i915-max-source-size.html - fi-hsw-4770: NOTRUN -> [SKIP][25] ([fdo#109271]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-hsw-4770/igt@kms_plane_scaling@i915-max-source-size.html - fi-blb-e6850: NOTRUN -> [SKIP][26] ([fdo#109271]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-blb-e6850/igt@kms_plane_scaling@i915-max-source-size.html - fi-skl-6600u: NOTRUN -> [SKIP][27] ([fdo#109271]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-skl-6600u/igt@kms_plane_scaling@i915-max-source-size.html - fi-apl-guc: NOTRUN -> [SKIP][28] ([fdo#109271]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-apl-guc/igt@kms_plane_scaling@i915-max-source-size.html - fi-pnv-d510: NOTRUN -> [SKIP][29] ([fdo#109271]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-pnv-d510/igt@kms_plane_scaling@i915-max-source-size.html - bat-atsm-1: NOTRUN -> [SKIP][30] ([i915#6078]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-atsm-1/igt@kms_plane_scaling@i915-max-source-size.html - fi-glk-j4005: NOTRUN -> [SKIP][31] ([fdo#109271]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-glk-j4005/igt@kms_plane_scaling@i915-max-source-size.html - fi-skl-guc: NOTRUN -> [SKIP][32] ([fdo#109271]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-skl-guc/igt@kms_plane_scaling@i915-max-source-size.html - fi-cfl-8109u: NOTRUN -> [SKIP][33] ([fdo#109271]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-cfl-8109u/igt@kms_plane_scaling@i915-max-source-size.html - fi-kbl-7567u: NOTRUN -> [SKIP][34] ([fdo#109271]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-kbl-7567u/igt@kms_plane_scaling@i915-max-source-size.html - fi-cfl-8700k: NOTRUN -> [SKIP][35] ([fdo#109271]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-cfl-8700k/igt@kms_plane_scaling@i915-max-source-size.html #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][36] ([i915#7229]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@i915_selftest@live@migrate: - bat-atsm-1: [DMESG-FAIL][38] ([i915#7699]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/bat-atsm-1/igt@i915_selftest@live@migrate.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-atsm-1/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@workarounds: - bat-rpls-2: [DMESG-WARN][40] ([i915#7852]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/bat-rpls-2/igt@i915_selftest@live@workarounds.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/bat-rpls-2/igt@i915_selftest@live@workarounds.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 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7694]: https://gitlab.freedesktop.org/drm/intel/issues/7694 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7176 -> IGTPW_8542 CI-20190529: 20190529 CI_DRM_12794: 09f45ee84b4e66b882286806fb4b2b03907db5dc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8542: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/index.html IGT_7176: ffe88a907c0fafe6a736f5f17cee8ba8eddd6fa7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_plane_scaling@i915-max-source-size == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/index.html [-- Attachment #2: Type: text/html, Size: 12114 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Validate max source size (rev7) 2023-03-01 5:23 [igt-dev] [PATCH i-g-t v5 0/4] Validate max source size Swati Sharma ` (4 preceding siblings ...) 2023-03-01 6:00 ` [igt-dev] ✓ Fi.CI.BAT: success for Validate max source size (rev7) Patchwork @ 2023-03-01 7:28 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-03-01 7:28 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 41373 bytes --] == Series Details == Series: Validate max source size (rev7) URL : https://patchwork.freedesktop.org/series/114059/ State : success == Summary == CI Bug Log - changes from CI_DRM_12794_full -> IGTPW_8542_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8542_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_plane_scaling@i915-max-source-size} (NEW): - shard-tglu-9: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_plane_scaling@i915-max-source-size.html New tests --------- New tests have been introduced between CI_DRM_12794_full and IGTPW_8542_full: ### New IGT tests (1) ### * igt@kms_plane_scaling@i915-max-source-size: - Statuses : 4 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8542_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu-9: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@api_intel_bb@crc32.html * igt@feature_discovery@chamelium: - shard-tglu-9: NOTRUN -> [SKIP][3] ([fdo#111827]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-tglu-10: NOTRUN -> [SKIP][4] ([i915#1839]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@feature_discovery@display-3x.html * igt@gem_ccs@block-copy-inplace: - shard-tglu-9: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#5325]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@gem_ccs@block-copy-inplace.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-10: NOTRUN -> [SKIP][6] ([i915#6335]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-snb5/igt@gem_ctx_persistence@processes.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-tglu-9: NOTRUN -> [FAIL][8] ([i915#2842]) +5 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_params@secure-non-root: - shard-tglu-10: NOTRUN -> [SKIP][11] ([fdo#112283]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@gem_exec_params@secure-non-root.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu-9: NOTRUN -> [SKIP][12] ([i915#4613]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@massive-random: - shard-tglu-10: NOTRUN -> [SKIP][13] ([i915#4613]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@verify: - shard-glk: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-glk9/igt@gem_lmem_swapping@verify.html * igt@gem_mmap_wc@set-cache-level: - shard-tglu-9: NOTRUN -> [SKIP][15] ([i915#1850]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pxp@create-valid-protected-context: - shard-tglu-9: NOTRUN -> [SKIP][16] ([i915#4270]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-tglu-10: NOTRUN -> [SKIP][17] ([i915#4270]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_userptr_blits@access-control: - shard-tglu-10: NOTRUN -> [SKIP][18] ([i915#3297]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-10: NOTRUN -> [SKIP][19] ([i915#3323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][20] ([i915#2724]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-snb6/igt@gem_userptr_blits@vma-merge.html * igt@gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][21] ([fdo#109271]) +418 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-snb4/igt@gem_vm_create@invalid-create.html * igt@gen3_mixed_blits: - shard-tglu-9: NOTRUN -> [SKIP][22] ([fdo#109289]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@gen3_mixed_blits.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][23] -> [ABORT][24] ([i915#5566]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-apl7/igt@gen9_exec_parse@allowed-single.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-apl7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu-9: NOTRUN -> [SKIP][25] ([i915#2527] / [i915#2856]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-chained: - shard-tglu-10: NOTRUN -> [SKIP][26] ([i915#2527] / [i915#2856]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@gen9_exec_parse@bb-chained.html * igt@i915_module_load@load: - shard-apl: [PASS][27] -> [SKIP][28] ([fdo#109271]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-apl6/igt@i915_module_load@load.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-apl6/igt@i915_module_load@load.html - shard-glk: [PASS][29] -> [SKIP][30] ([fdo#109271]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-glk7/igt@i915_module_load@load.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-glk3/igt@i915_module_load@load.html * igt@i915_pm_backlight@fade-with-dpms: - shard-tglu-10: NOTRUN -> [SKIP][31] ([i915#7561]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@i915_pm_backlight@fade-with-dpms.html * igt@i915_pm_rpm@i2c: - shard-tglu-9: NOTRUN -> [SKIP][32] ([i915#3547]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-tglu-9: NOTRUN -> [SKIP][33] ([i915#1397]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglu-10: NOTRUN -> [SKIP][34] ([fdo#109506]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_sseu@full-enable: - shard-tglu-9: NOTRUN -> [SKIP][35] ([i915#4387]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@i915_pm_sseu@full-enable.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-tglu-10: NOTRUN -> [SKIP][36] ([i915#5286]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-tglu-10: NOTRUN -> [SKIP][37] ([fdo#111614]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-tglu-9: NOTRUN -> [SKIP][38] ([fdo#111615] / [i915#1845] / [i915#7651]) +3 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu-10: NOTRUN -> [SKIP][39] ([fdo#111615]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][40] ([fdo#109271]) +39 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-glk3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs: - shard-tglu-10: NOTRUN -> [SKIP][41] ([fdo#111615] / [i915#3689]) +6 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs: - shard-tglu-10: NOTRUN -> [SKIP][42] ([i915#3689]) +4 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +3 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-glk2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][44] ([i915#3689] / [i915#6095]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglu-10: NOTRUN -> [SKIP][45] ([i915#3689] / [i915#3886]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-tglu-10: NOTRUN -> [SKIP][46] ([i915#6095]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_chamelium_color@ctm-0-75: - shard-tglu-10: NOTRUN -> [SKIP][47] ([fdo#111827]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-tglu-9: NOTRUN -> [SKIP][48] ([i915#7828]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-tglu-10: NOTRUN -> [SKIP][49] ([i915#7828]) +5 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_color@ctm-red-to-blue: - shard-tglu-9: NOTRUN -> [SKIP][50] ([i915#3546]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_color@ctm-red-to-blue.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu-9: NOTRUN -> [SKIP][51] ([i915#1845] / [i915#7651]) +50 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic: - shard-tglu-10: NOTRUN -> [SKIP][52] ([i915#6944] / [i915#7116] / [i915#7118]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-10: NOTRUN -> [SKIP][53] ([i915#3359]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-10: NOTRUN -> [SKIP][54] ([i915#4103]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-tglu-10: NOTRUN -> [SKIP][55] ([fdo#109274]) +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][56] -> [FAIL][57] ([i915#2346]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-9: NOTRUN -> [SKIP][58] ([fdo#109274] / [i915#3637]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu-10: NOTRUN -> [SKIP][59] ([fdo#109274] / [i915#3637]) +3 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][60] -> [FAIL][61] ([i915#2122]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-glk6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@plain-flip-ts-check: - shard-tglu-9: NOTRUN -> [SKIP][62] ([i915#3637]) +2 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu-10: NOTRUN -> [SKIP][63] ([i915#2587] / [i915#2672]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu-9: NOTRUN -> [SKIP][64] ([i915#3555]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-tglu-10: NOTRUN -> [SKIP][65] ([fdo#109280]) +22 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-9: NOTRUN -> [SKIP][66] ([i915#1849]) +34 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt: - shard-tglu-10: NOTRUN -> [SKIP][67] ([fdo#110189]) +15 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-tglu-10: NOTRUN -> [SKIP][68] ([fdo#109289]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-tglu-9: NOTRUN -> [SKIP][69] ([i915#7128]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_plane_alpha_blend@alpha-7efc.html * {igt@kms_plane_scaling@i915-max-source-size} (NEW): - shard-apl: NOTRUN -> [SKIP][70] ([fdo#109271]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-apl2/igt@kms_plane_scaling@i915-max-source-size.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - shard-tglu-9: NOTRUN -> [SKIP][71] ([i915#3555] / [i915#6953]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-9: NOTRUN -> [SKIP][72] ([i915#6524]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-tglu-9: NOTRUN -> [SKIP][73] ([i915#658]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-tglu-9: NOTRUN -> [SKIP][74] ([fdo#111068] / [i915#658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-tglu-10: NOTRUN -> [SKIP][75] ([fdo#111068] / [i915#658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-glk: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-glk8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html - shard-tglu-10: NOTRUN -> [SKIP][77] ([i915#658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@cursor_mmap_cpu: - shard-tglu-9: NOTRUN -> [SKIP][78] ([fdo#110189]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu-9: NOTRUN -> [SKIP][79] ([i915#1845]) +7 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][80] ([i915#5465]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tv_load_detect@load-detect: - shard-tglu-10: NOTRUN -> [SKIP][81] ([fdo#109309]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-b: - shard-tglu-9: NOTRUN -> [SKIP][82] ([fdo#109274]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html * igt@kms_vrr@flip-dpms: - shard-tglu-10: NOTRUN -> [SKIP][83] ([i915#3555]) +2 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-fb-id: - shard-tglu-9: NOTRUN -> [SKIP][84] ([i915#2437]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html * igt@prime_vgem@coherency-gtt: - shard-tglu-9: NOTRUN -> [SKIP][85] ([fdo#109295] / [fdo#111656]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-tglu-9: NOTRUN -> [SKIP][86] ([fdo#109295]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@prime_vgem@fence-write-hang.html * igt@tools_test@sysfs_l3_parity: - shard-tglu-10: NOTRUN -> [SKIP][87] ([fdo#109307]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-tglu-9: NOTRUN -> [SKIP][88] ([fdo#109315] / [i915#2575]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_perfmon@create-perfmon-exceed: - shard-tglu-10: NOTRUN -> [SKIP][89] ([fdo#109315] / [i915#2575]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@v3d/v3d_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-tglu-9: NOTRUN -> [SKIP][90] ([i915#2575]) +3 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-9/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-tglu-10: NOTRUN -> [SKIP][91] ([i915#2575]) +4 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-10/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@drm_read@short-buffer-wakeup: - {shard-tglu}: [SKIP][92] ([i915#1845] / [i915#7651]) -> [PASS][93] +5 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-tglu-6/igt@drm_read@short-buffer-wakeup.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-2/igt@drm_read@short-buffer-wakeup.html * igt@fbdev@info: - {shard-rkl}: [SKIP][94] ([i915#2582]) -> [PASS][95] +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-5/igt@fbdev@info.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-6/igt@fbdev@info.html * igt@gem_ctx_persistence@smoketest: - {shard-rkl}: [FAIL][96] ([i915#5099]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-5/igt@gem_ctx_persistence@smoketest.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-4/igt@gem_ctx_persistence@smoketest.html * igt@gem_eio@in-flight-contexts-immediate: - shard-apl: [TIMEOUT][98] ([i915#3063]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-apl1/igt@gem_eio@in-flight-contexts-immediate.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-apl1/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_exec_balancer@fairslice: - {shard-rkl}: [SKIP][100] ([i915#6259]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-5/igt@gem_exec_balancer@fairslice.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-2/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-apl: [FAIL][102] ([i915#2842]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-apl2/igt@gem_exec_fair@basic-pace-share@rcs0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-apl3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - {shard-rkl}: [FAIL][104] ([i915#2842]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_reloc@basic-gtt-active: - {shard-rkl}: [SKIP][106] ([i915#3281]) -> [PASS][107] +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-active.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-active.html * igt@gem_exec_schedule@semaphore-power: - {shard-rkl}: [SKIP][108] ([i915#7276]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_pread@uncached: - {shard-rkl}: [SKIP][110] ([i915#3282]) -> [PASS][111] +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-4/igt@gem_pread@uncached.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-5/igt@gem_pread@uncached.html * igt@gen9_exec_parse@allowed-all: - {shard-rkl}: [SKIP][112] ([i915#2527]) -> [PASS][113] +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_rpm@fences: - {shard-rkl}: [SKIP][114] ([i915#1849]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-5/igt@i915_pm_rpm@fences.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-6/igt@i915_pm_rpm@fences.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][116] ([i915#2346]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-flip-before-cursor-toggle: - {shard-tglu}: [SKIP][118] ([i915#1845]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-tglu-6/igt@kms_cursor_legacy@short-flip-before-cursor-toggle.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-1/igt@kms_cursor_legacy@short-flip-before-cursor-toggle.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [FAIL][120] ([i915#4767]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: - shard-apl: [FAIL][122] ([i915#79]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-apl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - {shard-rkl}: [SKIP][124] ([i915#1849] / [i915#4098]) -> [PASS][125] +8 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt: - {shard-tglu}: [SKIP][126] ([i915#1849]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html * igt@kms_psr@suspend: - {shard-rkl}: [SKIP][128] ([i915#1072]) -> [PASS][129] +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-5/igt@kms_psr@suspend.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-6/igt@kms_psr@suspend.html * igt@kms_rotation_crc@primary-rotation-90: - {shard-rkl}: [SKIP][130] ([i915#1845] / [i915#4098]) -> [PASS][131] +14 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-5/igt@kms_rotation_crc@primary-rotation-90.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - {shard-rkl}: [SKIP][132] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@prime_vgem@basic-fence-read: - {shard-rkl}: [SKIP][134] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12794/shard-rkl-6/igt@prime_vgem@basic-fence-read.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/shard-rkl-5/igt@prime_vgem@basic-fence-read.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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [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#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [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#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#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5099]: https://gitlab.freedesktop.org/drm/intel/issues/5099 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6333]: https://gitlab.freedesktop.org/drm/intel/issues/6333 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [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#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018 [i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7176 -> IGTPW_8542 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12794: 09f45ee84b4e66b882286806fb4b2b03907db5dc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8542: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8542/index.html IGT_7176: ffe88a907c0fafe6a736f5f17cee8ba8eddd6fa7 @ 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_8542/index.html [-- Attachment #2: Type: text/html, Size: 43881 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-03-01 7:28 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-01 5:23 [igt-dev] [PATCH i-g-t v5 0/4] Validate max source size Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 1/4] tests/kms_plane_scaling: Prep work Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 2/4] tests/kms_plane_scaling: Minor fixes Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 3/4] tests/kms_plane_scaling: Add test to validate max source size Swati Sharma 2023-03-01 5:23 ` [igt-dev] [PATCH i-g-t v5 4/4] HAX: Add i915-max-source-size to fast-feedback.testlist Swati Sharma 2023-03-01 6:00 ` [igt-dev] ✓ Fi.CI.BAT: success for Validate max source size (rev7) Patchwork 2023-03-01 7:28 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox