* [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const
@ 2022-02-22 12:03 Colin Ian King
2022-02-22 12:43 ` Jani Nikula
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Colin Ian King @ 2022-02-22 12:03 UTC (permalink / raw)
To: Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
David Airlie, Daniel Vetter, intel-gfx, dri-devel
Cc: kernel-janitors, linux-kernel
Don't populate the read-only arrays on the stack but instead make
them static const. Also makes the object code a little smaller.
Reformat the statements to clear up checkpatch warning.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
drivers/gpu/drm/i915/display/intel_vdsc.c | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vdsc.c b/drivers/gpu/drm/i915/display/intel_vdsc.c
index 3faea903b9ae..d49f66237ec3 100644
--- a/drivers/gpu/drm/i915/display/intel_vdsc.c
+++ b/drivers/gpu/drm/i915/display/intel_vdsc.c
@@ -378,10 +378,18 @@ calculate_rc_params(struct rc_parameters *rc,
{
int bpc = vdsc_cfg->bits_per_component;
int bpp = vdsc_cfg->bits_per_pixel >> 4;
- int ofs_und6[] = { 0, -2, -2, -4, -6, -6, -8, -8, -8, -10, -10, -12, -12, -12, -12 };
- int ofs_und8[] = { 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 };
- int ofs_und12[] = { 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 };
- int ofs_und15[] = { 10, 8, 6, 4, 2, 0, -2, -4, -6, -8, -10, -10, -12, -12, -12 };
+ static const int ofs_und6[] = {
+ 0, -2, -2, -4, -6, -6, -8, -8, -8, -10, -10, -12, -12, -12, -12
+ };
+ static const int ofs_und8[] = {
+ 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12
+ };
+ static const int ofs_und12[] = {
+ 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12
+ };
+ static const int ofs_und15[] = {
+ 10, 8, 6, 4, 2, 0, -2, -4, -6, -8, -10, -10, -12, -12, -12
+ };
int qp_bpc_modifier = (bpc - 8) * 2;
u32 res, buf_i, bpp_i;
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const 2022-02-22 12:03 [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const Colin Ian King @ 2022-02-22 12:43 ` Jani Nikula 2022-02-22 18:52 ` Ville Syrjälä ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Jani Nikula @ 2022-02-22 12:43 UTC (permalink / raw) To: Colin Ian King, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin, David Airlie, Daniel Vetter, intel-gfx, dri-devel Cc: kernel-janitors, linux-kernel On Tue, 22 Feb 2022, Colin Ian King <colin.i.king@gmail.com> wrote: > Don't populate the read-only arrays on the stack but instead make > them static const. Also makes the object code a little smaller. > Reformat the statements to clear up checkpatch warning. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > drivers/gpu/drm/i915/display/intel_vdsc.c | 16 ++++++++++++---- > 1 file changed, 12 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_vdsc.c b/drivers/gpu/drm/i915/display/intel_vdsc.c > index 3faea903b9ae..d49f66237ec3 100644 > --- a/drivers/gpu/drm/i915/display/intel_vdsc.c > +++ b/drivers/gpu/drm/i915/display/intel_vdsc.c > @@ -378,10 +378,18 @@ calculate_rc_params(struct rc_parameters *rc, > { > int bpc = vdsc_cfg->bits_per_component; > int bpp = vdsc_cfg->bits_per_pixel >> 4; > - int ofs_und6[] = { 0, -2, -2, -4, -6, -6, -8, -8, -8, -10, -10, -12, -12, -12, -12 }; > - int ofs_und8[] = { 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 }; > - int ofs_und12[] = { 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 }; > - int ofs_und15[] = { 10, 8, 6, 4, 2, 0, -2, -4, -6, -8, -10, -10, -12, -12, -12 }; > + static const int ofs_und6[] = { > + 0, -2, -2, -4, -6, -6, -8, -8, -8, -10, -10, -12, -12, -12, -12 > + }; > + static const int ofs_und8[] = { > + 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 > + }; > + static const int ofs_und12[] = { > + 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 > + }; Hmm, I wonder why the same values are duplicated in ofs_und8 and ofs_und12. Cc: Vandita, Manasi. Regardless, the patch is sane. Reviewed-by: Jani Nikula <jani.nikula@intel.com> > + static const int ofs_und15[] = { > + 10, 8, 6, 4, 2, 0, -2, -4, -6, -8, -10, -10, -12, -12, -12 > + }; > int qp_bpc_modifier = (bpc - 8) * 2; > u32 res, buf_i, bpp_i; -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const 2022-02-22 12:03 [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const Colin Ian King 2022-02-22 12:43 ` Jani Nikula @ 2022-02-22 18:52 ` Ville Syrjälä 2022-02-22 19:47 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Ville Syrjälä @ 2022-02-22 18:52 UTC (permalink / raw) To: Colin Ian King Cc: David Airlie, intel-gfx, kernel-janitors, linux-kernel, dri-devel, Rodrigo Vivi On Tue, Feb 22, 2022 at 12:03:23PM +0000, Colin Ian King wrote: > Don't populate the read-only arrays on the stack but instead make > them static const. Also makes the object code a little smaller. > Reformat the statements to clear up checkpatch warning. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > drivers/gpu/drm/i915/display/intel_vdsc.c | 16 ++++++++++++---- > 1 file changed, 12 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_vdsc.c b/drivers/gpu/drm/i915/display/intel_vdsc.c > index 3faea903b9ae..d49f66237ec3 100644 > --- a/drivers/gpu/drm/i915/display/intel_vdsc.c > +++ b/drivers/gpu/drm/i915/display/intel_vdsc.c > @@ -378,10 +378,18 @@ calculate_rc_params(struct rc_parameters *rc, > { > int bpc = vdsc_cfg->bits_per_component; > int bpp = vdsc_cfg->bits_per_pixel >> 4; > - int ofs_und6[] = { 0, -2, -2, -4, -6, -6, -8, -8, -8, -10, -10, -12, -12, -12, -12 }; > - int ofs_und8[] = { 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 }; > - int ofs_und12[] = { 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 }; > - int ofs_und15[] = { 10, 8, 6, 4, 2, 0, -2, -4, -6, -8, -10, -10, -12, -12, -12 }; > + static const int ofs_und6[] = { > + 0, -2, -2, -4, -6, -6, -8, -8, -8, -10, -10, -12, -12, -12, -12 > + }; > + static const int ofs_und8[] = { > + 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 > + }; > + static const int ofs_und12[] = { > + 2, 0, 0, -2, -4, -6, -8, -8, -8, -10, -10, -10, -12, -12, -12 > + }; > + static const int ofs_und15[] = { > + 10, 8, 6, 4, 2, 0, -2, -4, -6, -8, -10, -10, -12, -12, -12 > + }; Please shrink to s8 while at it. > int qp_bpc_modifier = (bpc - 8) * 2; > u32 res, buf_i, bpp_i; > > -- > 2.34.1 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: make a handful of read-only arrays static const 2022-02-22 12:03 [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const Colin Ian King 2022-02-22 12:43 ` Jani Nikula 2022-02-22 18:52 ` Ville Syrjälä @ 2022-02-22 19:47 ` Patchwork 2022-02-22 20:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2022-02-23 2:24 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-02-22 19:47 UTC (permalink / raw) To: Colin Ian King; +Cc: intel-gfx == Series Details == Series: drm/i915: make a handful of read-only arrays static const URL : https://patchwork.freedesktop.org/series/100570/ State : warning == Summary == $ dim checkpatch origin/drm-tip 609917fff5bb drm/i915: make a handful of read-only arrays static const -:38: WARNING:FROM_SIGN_OFF_MISMATCH: From:/Signed-off-by: email address mismatch: 'From: Colin Ian King <colin.king@intel.com>' != 'Signed-off-by: Colin Ian King <colin.i.king@gmail.com>' total: 0 errors, 1 warnings, 0 checks, 22 lines checked ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: make a handful of read-only arrays static const 2022-02-22 12:03 [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const Colin Ian King ` (2 preceding siblings ...) 2022-02-22 19:47 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork @ 2022-02-22 20:16 ` Patchwork 2022-02-23 2:24 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-02-22 20:16 UTC (permalink / raw) To: Colin Ian King; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5314 bytes --] == Series Details == Series: drm/i915: make a handful of read-only arrays static const URL : https://patchwork.freedesktop.org/series/100570/ State : success == Summary == CI Bug Log - changes from CI_DRM_11267 -> Patchwork_22352 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/index.html Participating hosts (45 -> 41) ------------------------------ Additional (1): fi-snb-2520m Missing (5): fi-hsw-4200u fi-bsw-cyan fi-icl-u2 fi-ctg-p8600 fi-bdw-samus Known issues ------------ Here are the changes found in Patchwork_22352 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_prime@i915-to-amd: - fi-snb-2520m: NOTRUN -> [SKIP][1] ([fdo#109271]) +41 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/fi-snb-2520m/igt@amdgpu/amd_prime@i915-to-amd.html * igt@gem_exec_suspend@basic-s3: - fi-skl-6600u: NOTRUN -> [INCOMPLETE][2] ([i915#4547]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html * igt@i915_selftest@live@requests: - fi-blb-e6850: [PASS][3] -> [DMESG-FAIL][4] ([i915#4528] / [i915#5026]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/fi-blb-e6850/igt@i915_selftest@live@requests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/fi-blb-e6850/igt@i915_selftest@live@requests.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-snb-2520m: NOTRUN -> [SKIP][5] ([fdo#109271] / [fdo#111827]) +8 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/fi-snb-2520m/igt@kms_chamelium@hdmi-hpd-fast.html * igt@runner@aborted: - fi-blb-e6850: NOTRUN -> [FAIL][6] ([fdo#109271] / [i915#2403] / [i915#2426] / [i915#4312]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/fi-blb-e6850/igt@runner@aborted.html #### Possible fixes #### * igt@debugfs_test@read_all_entries: - fi-kbl-soraka: [DMESG-WARN][7] ([i915#1982] / [i915#262]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/fi-kbl-soraka/igt@debugfs_test@read_all_entries.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/fi-kbl-soraka/igt@debugfs_test@read_all_entries.html * igt@i915_selftest@live@hangcheck: - {fi-ehl-2}: [INCOMPLETE][9] -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/fi-ehl-2/igt@i915_selftest@live@hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/fi-ehl-2/igt@i915_selftest@live@hangcheck.html * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [DMESG-WARN][11] ([i915#4269]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html #### Warnings #### * igt@i915_selftest@live@hangcheck: - bat-dg1-6: [DMESG-FAIL][13] ([i915#4494] / [i915#4957]) -> [DMESG-FAIL][14] ([i915#4957]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/bat-dg1-6/igt@i915_selftest@live@hangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/bat-dg1-6/igt@i915_selftest@live@hangcheck.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#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262 [i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547 [i915#4897]: https://gitlab.freedesktop.org/drm/intel/issues/4897 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5026]: https://gitlab.freedesktop.org/drm/intel/issues/5026 [i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127 Build changes ------------- * Linux: CI_DRM_11267 -> Patchwork_22352 CI-20190529: 20190529 CI_DRM_11267: c7f74a7a87ad5cf207564c3d3122463b72e33e43 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6351: 5f3cfa485eb46902e55c6b96c80dc8c57ddf3b43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_22352: 609917fff5bb3d99da45b9acf907bd4e105228e2 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 609917fff5bb drm/i915: make a handful of read-only arrays static const == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/index.html [-- Attachment #2: Type: text/html, Size: 6130 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: make a handful of read-only arrays static const 2022-02-22 12:03 [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const Colin Ian King ` (3 preceding siblings ...) 2022-02-22 20:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2022-02-23 2:24 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-02-23 2:24 UTC (permalink / raw) To: Colin Ian King; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30281 bytes --] == Series Details == Series: drm/i915: make a handful of read-only arrays static const URL : https://patchwork.freedesktop.org/series/100570/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11267_full -> Patchwork_22352_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_22352_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_22352_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_22352_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s3@smem: - shard-snb: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-snb7/igt@gem_exec_suspend@basic-s3@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-snb4/igt@gem_exec_suspend@basic-s3@smem.html * igt@syncobj_wait@wait-all-for-submit-snapshot: - shard-skl: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-skl7/igt@syncobj_wait@wait-all-for-submit-snapshot.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl8/igt@syncobj_wait@wait-all-for-submit-snapshot.html Known issues ------------ Here are the changes found in Patchwork_22352_full that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - shard-glk: ([PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [FAIL][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29]) ([i915#4392]) -> ([PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk7/boot.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk1/boot.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk1/boot.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk1/boot.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk2/boot.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk2/boot.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk2/boot.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk3/boot.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk3/boot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk3/boot.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk4/boot.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk4/boot.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk5/boot.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk5/boot.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk5/boot.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk6/boot.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk9/boot.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk9/boot.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk9/boot.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk9/boot.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk6/boot.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk8/boot.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk8/boot.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk8/boot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk7/boot.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk9/boot.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk9/boot.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk9/boot.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk8/boot.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk8/boot.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk8/boot.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk7/boot.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk7/boot.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk7/boot.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk6/boot.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk6/boot.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk6/boot.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk5/boot.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk5/boot.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk4/boot.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk4/boot.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk3/boot.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk3/boot.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk3/boot.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk2/boot.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk2/boot.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk2/boot.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk2/boot.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk1/boot.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk1/boot.html ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-iclb: NOTRUN -> [DMESG-WARN][55] ([i915#4991]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@gem_create@create-massive.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-kbl: [PASS][56] -> [DMESG-WARN][57] ([i915#180]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_eio@kms: - shard-tglb: [PASS][58] -> [FAIL][59] ([i915#232]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-tglb7/igt@gem_eio@kms.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb3/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglb: NOTRUN -> [DMESG-FAIL][60] ([i915#5076]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb5/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@pi@vecs0: - shard-iclb: [PASS][61] -> [INCOMPLETE][62] ([i915#3371]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-iclb2/igt@gem_exec_capture@pi@vecs0.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb4/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [PASS][63] -> [FAIL][64] ([i915#2842]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: NOTRUN -> [FAIL][65] ([i915#2842]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-kbl: [PASS][66] -> [FAIL][67] ([i915#2842]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-kbl1/igt@gem_exec_fair@basic-none@vecs0.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][68] ([i915#2842]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_schedule@timeslicing@vecs0: - shard-skl: [PASS][69] -> [DMESG-WARN][70] ([i915#1982]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-skl8/igt@gem_exec_schedule@timeslicing@vecs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl9/igt@gem_exec_schedule@timeslicing@vecs0.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-kbl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#4613]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#4613]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk9/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-skl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#4613]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl10/igt@gem_lmem_swapping@smem-oom.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-iclb: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][75] ([i915#768]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_softpin@allocator-evict-all-engines: - shard-glk: NOTRUN -> [FAIL][76] ([i915#4171]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk9/igt@gem_softpin@allocator-evict-all-engines.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-iclb: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen7_exec_parse@chained-batch: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109289]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@secure-batches: - shard-iclb: NOTRUN -> [SKIP][79] ([i915#2856]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-apl: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-apl7/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-apl: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#1937]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-apl2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: NOTRUN -> [WARN][82] ([i915#1804] / [i915#2684]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-iclb: NOTRUN -> [SKIP][83] ([fdo#110892]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-iclb: NOTRUN -> [SKIP][84] ([fdo#109293] / [fdo#109506]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_sseu@full-enable: - shard-iclb: NOTRUN -> [SKIP][85] ([i915#4387]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109302]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [PASS][87] -> [DMESG-WARN][88] ([i915#180]) +2 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-apl1/igt@i915_suspend@fence-restore-tiled2untiled.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#110725] / [fdo#111614]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-kbl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#3777]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-skl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#3777]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl10/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-glk: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#3777]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-skl: NOTRUN -> [FAIL][93] ([i915#3763]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][94] ([fdo#110723]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglb: NOTRUN -> [SKIP][95] ([fdo#111615]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#3777]) +2 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-apl2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_joiner@basic: - shard-iclb: NOTRUN -> [SKIP][97] ([i915#2705]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#3886]) +2 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][99] ([i915#3689]) +4 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb1/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][100] ([i915#3689] / [i915#3886]) +2 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb6/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-skl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#3886]) +2 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl10/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#3886]) +6 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-apl2/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109278] / [i915#3886]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][104] ([fdo#111615] / [i915#3689]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb6/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_chamelium@dp-frame-dump: - shard-skl: NOTRUN -> [SKIP][105] ([fdo#109271] / [fdo#111827]) +4 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl10/igt@kms_chamelium@dp-frame-dump.html * igt@kms_chamelium@dp-hpd-fast: - shard-glk: NOTRUN -> [SKIP][106] ([fdo#109271] / [fdo#111827]) +4 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk9/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@hdmi-hpd-with-enabled-mode: - shard-kbl: NOTRUN -> [SKIP][107] ([fdo#109271] / [fdo#111827]) +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl6/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-tglb: NOTRUN -> [SKIP][108] ([fdo#109284] / [fdo#111827]) +2 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb6/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color_chamelium@pipe-a-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][109] ([fdo#109271] / [fdo#111827]) +6 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-apl7/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html * igt@kms_color_chamelium@pipe-b-ctm-red-to-blue: - shard-iclb: NOTRUN -> [SKIP][110] ([fdo#109284] / [fdo#111827]) +6 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html * igt@kms_color_chamelium@pipe-d-ctm-max: - shard-iclb: NOTRUN -> [SKIP][111] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-max.html * igt@kms_content_protection@atomic-dpms: - shard-apl: NOTRUN -> [TIMEOUT][112] ([i915#1319]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-apl7/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding: - shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109278] / [fdo#109279]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-max-size-random: - shard-tglb: NOTRUN -> [SKIP][114] ([i915#3359]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-max-size-random.html * igt@kms_cursor_crc@pipe-c-cursor-32x10-onscreen: - shard-kbl: NOTRUN -> [SKIP][115] ([fdo#109271]) +34 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl6/igt@kms_cursor_crc@pipe-c-cursor-32x10-onscreen.html * igt@kms_cursor_crc@pipe-c-cursor-32x32-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][116] ([i915#3319]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb5/igt@kms_cursor_crc@pipe-c-cursor-32x32-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-256x256-random: - shard-glk: NOTRUN -> [SKIP][117] ([fdo#109271]) +33 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk9/igt@kms_cursor_crc@pipe-d-cursor-256x256-random.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-onscreen: - shard-tglb: NOTRUN -> [SKIP][118] ([fdo#109279] / [i915#3359]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-onscreen.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-tglb: NOTRUN -> [SKIP][119] ([fdo#109274] / [fdo#111825]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-iclb: [PASS][120] -> [FAIL][121] ([i915#5072]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-iclb6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-iclb: NOTRUN -> [SKIP][122] ([fdo#109274] / [fdo#109278]) +2 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-skl: [PASS][123] -> [FAIL][124] ([i915#2346] / [i915#533]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-skl: [PASS][125] -> [FAIL][126] ([i915#2346]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-iclb: NOTRUN -> [SKIP][127] ([fdo#109274]) +1 similar issue [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-suspend@a-edp1: - shard-skl: [PASS][128] -> [INCOMPLETE][129] ([i915#4839]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-skl7/igt@kms_flip@flip-vs-suspend@a-edp1.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl2/igt@kms_flip@flip-vs-suspend@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-glk: [PASS][130] -> [FAIL][131] ([i915#4911]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-glk1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-iclb: NOTRUN -> [SKIP][132] ([fdo#109280]) +17 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-tglb: NOTRUN -> [SKIP][133] ([fdo#109280] / [fdo#111825]) +9 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-apl: NOTRUN -> [SKIP][134] ([fdo#109271]) +101 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-apl7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-skl: [PASS][135] -> [FAIL][136] ([i915#1188]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-skl3/igt@kms_hdr@bpc-switch.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl3/igt@kms_hdr@bpc-switch.html * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-skl: NOTRUN -> [FAIL][137] ([fdo#108145] / [i915#265]) +1 similar issue [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc: - shard-skl: [PASS][138] -> [FAIL][139] ([fdo#108145] / [i915#265]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-skl3/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl3/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html * igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max: - shard-iclb: NOTRUN -> [SKIP][140] ([fdo#109278]) +22 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@kms_plane_alpha_blend@pipe-d-constant-alpha-max.html * igt@kms_plane_lowres@pipe-c-tiling-y: - shard-iclb: NOTRUN -> [SKIP][141] ([i915#3536]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@kms_plane_lowres@pipe-c-tiling-y.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglb: NOTRUN -> [SKIP][142] ([i915#2920]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-tglb3/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-skl: NOTRUN -> [SKIP][143] ([fdo#109271] / [i915#658]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-skl10/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-kbl: NOTRUN -> [SKIP][144] ([fdo#109271] / [i915#658]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-iclb: [PASS][145] -> [SKIP][146] ([fdo#109642] / [fdo#111068] / [i915#658]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-iclb2/igt@kms_psr2_su@frontbuffer-xrgb8888.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: NOTRUN -> [SKIP][147] ([fdo#109441]) +1 similar issue [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb3/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [PASS][148] -> [SKIP][149] ([fdo#109441]) +6 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb1/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][150] -> [DMESG-WARN][151] ([i915#180] / [i915#295]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11267/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_writeback@writeback-fb-id: - shard-kbl: NOTRUN -> [SKIP][152] ([fdo#109271] / [i915#2437]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-kbl6/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-iclb: NOTRUN -> [SKIP][153] ([i915#2437]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb7/igt@kms_writeback@writeback-invalid-parameters.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][154] ([i915#2530]) +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html - shard-tglb: NOTRUN -> [SKIP][155] ([i915#2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22352/index.html [-- Attachment #2: Type: text/html, Size: 33751 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-02-23 2:24 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-02-22 12:03 [Intel-gfx] [PATCH] drm/i915: make a handful of read-only arrays static const Colin Ian King 2022-02-22 12:43 ` Jani Nikula 2022-02-22 18:52 ` Ville Syrjälä 2022-02-22 19:47 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork 2022-02-22 20:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2022-02-23 2:24 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox