* [PATCH] drm/i915/bios: Update new entries in VBT BDB block definations
@ 2024-08-12 13:40 Dnyaneshwar Bhadane
2024-08-12 14:27 ` Jani Nikula
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Dnyaneshwar Bhadane @ 2024-08-12 13:40 UTC (permalink / raw)
To: intel-gfx; +Cc: Dnyaneshwar Bhadane
New entries updated in BDB defination from VBT v257- v260.
Signed-off-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com>
---
drivers/gpu/drm/i915/display/intel_vbt_defs.h | 35 ++++++++++++++++---
1 file changed, 30 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vbt_defs.h b/drivers/gpu/drm/i915/display/intel_vbt_defs.h
index e613288937e4..65342f347bba 100644
--- a/drivers/gpu/drm/i915/display/intel_vbt_defs.h
+++ b/drivers/gpu/drm/i915/display/intel_vbt_defs.h
@@ -1080,6 +1080,8 @@ struct bdb_edp {
u16 edp_fast_link_training_rate[16]; /* 224+ */
u16 edp_max_port_link_rate[16]; /* 244+ */
u16 edp_dsc_disable; /* 251+ */
+ u16 t16_delay; /* 260+ */
+ u16 t16_link_idle_time; /* 260+ */
} __packed;
/*
@@ -1330,12 +1332,27 @@ struct aggressiveness_profile2_entry {
u8 elp_aggressiveness : 4;
} __packed;
+struct aggressiveness_profile3_entry {
+ u8 adp_aggressiveness:4;
+ u8 po_aggressiveness:4;
+} __packed;
+
+struct aggressiveness_profile4_entry {
+ u8 xpst_aggressiveness:4;
+ u8 tcon_aggressiveness:4;
+} __packed;
+
+struct panel_identification {
+ u8 panel_type:4;
+ u8 reserved:4;
+} __packed;
+
struct bdb_lfp_power {
struct lfp_power_features features; /* ???-227 */
struct als_data_entry als[5];
u8 lace_aggressiveness_profile:3; /* 210-227 */
u8 reserved1:5;
- u16 dpst; /* 228+ */
+ u16 dpst; /* 228-256 */
u16 psr; /* 228+ */
u16 drrs; /* 228+ */
u16 lace_support; /* 228+ */
@@ -1343,12 +1360,20 @@ struct bdb_lfp_power {
u16 dmrrs; /* 228+ */
u16 adb; /* 228+ */
u16 lace_enabled_status; /* 228+ */
- struct aggressiveness_profile_entry aggressiveness[16]; /* 228+ */
+ struct aggressiveness_profile_entry aggressiveness[16]; /* 228-256 */
u16 hobl; /* 232+ */
u16 vrr_feature_enabled; /* 233+ */
- u16 elp; /* 247+ */
- u16 opst; /* 247+ */
- struct aggressiveness_profile2_entry aggressiveness2[16]; /* 247+ */
+ u16 elp; /* 247-256 */
+ u16 opst; /* 247-256 */
+ struct aggressiveness_profile2_entry aggressiveness2[16]; /* 247-256 */
+ u16 adp; /* 253-256 */
+ u16 po; /* 253-256 */
+ struct aggressiveness_profile3_entry aggressiveness3[16]; /* 253-256 */
+ struct panel_identification panel_identity[16]; /* 257+ */
+ u16 xpst; /* 257+ */
+ u16 tcon; /* 257+ */
+ struct aggressiveness_profile4_entry aggressiveness4[16]; /* 257+ */
+ u16 tcon_coexist_xpst; /* 257+ */
} __packed;
/*
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] drm/i915/bios: Update new entries in VBT BDB block definations 2024-08-12 13:40 [PATCH] drm/i915/bios: Update new entries in VBT BDB block definations Dnyaneshwar Bhadane @ 2024-08-12 14:27 ` Jani Nikula 2024-08-13 5:27 ` Bhadane, Dnyaneshwar 2024-08-12 15:03 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-08-13 4:52 ` ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 6+ messages in thread From: Jani Nikula @ 2024-08-12 14:27 UTC (permalink / raw) To: Dnyaneshwar Bhadane, intel-gfx; +Cc: Dnyaneshwar Bhadane On Mon, 12 Aug 2024, Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com> wrote: > New entries updated in BDB defination from VBT v257- v260. *definition Please explain what you're adding. Also, the spec never ceases to amaze me. Like here, adding stuff for a few revisions, obsoleting and starting over. Ugh. > Signed-off-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com> > --- > drivers/gpu/drm/i915/display/intel_vbt_defs.h | 35 ++++++++++++++++--- > 1 file changed, 30 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_vbt_defs.h b/drivers/gpu/drm/i915/display/intel_vbt_defs.h > index e613288937e4..65342f347bba 100644 > --- a/drivers/gpu/drm/i915/display/intel_vbt_defs.h > +++ b/drivers/gpu/drm/i915/display/intel_vbt_defs.h > @@ -1080,6 +1080,8 @@ struct bdb_edp { > u16 edp_fast_link_training_rate[16]; /* 224+ */ > u16 edp_max_port_link_rate[16]; /* 244+ */ > u16 edp_dsc_disable; /* 251+ */ > + u16 t16_delay; /* 260+ */ Please let's follow the spec in member naming where feasible. This would be t6_delay_support. > + u16 t16_link_idle_time; /* 260+ */ And this would be u16 link_idle_time[16]. The size is 32 bytes, not 2. (Where does t16 come from?) > } __packed; > > /* > @@ -1330,12 +1332,27 @@ struct aggressiveness_profile2_entry { > u8 elp_aggressiveness : 4; > } __packed; > > +struct aggressiveness_profile3_entry { > + u8 adp_aggressiveness:4; apd_aggressiveness > + u8 po_aggressiveness:4; pixoptix_aggressiveness > +} __packed; > + > +struct aggressiveness_profile4_entry { > + u8 xpst_aggressiveness:4; > + u8 tcon_aggressiveness:4; > +} __packed; > + > +struct panel_identification { > + u8 panel_type:4; panel_type is a loaded word in VBT. Let's avoid it. Maybe panel_technology or something. > + u8 reserved:4; > +} __packed; > + > struct bdb_lfp_power { > struct lfp_power_features features; /* ???-227 */ > struct als_data_entry als[5]; > u8 lace_aggressiveness_profile:3; /* 210-227 */ > u8 reserved1:5; > - u16 dpst; /* 228+ */ > + u16 dpst; /* 228-256 */ > u16 psr; /* 228+ */ > u16 drrs; /* 228+ */ > u16 lace_support; /* 228+ */ > @@ -1343,12 +1360,20 @@ struct bdb_lfp_power { > u16 dmrrs; /* 228+ */ > u16 adb; /* 228+ */ > u16 lace_enabled_status; /* 228+ */ > - struct aggressiveness_profile_entry aggressiveness[16]; /* 228+ */ > + struct aggressiveness_profile_entry aggressiveness[16]; /* 228-256 */ The LACE agressiveness is still valid. Please add the comment to struct aggressiveness_profile dpst_aggressiveness member. > u16 hobl; /* 232+ */ > u16 vrr_feature_enabled; /* 233+ */ > - u16 elp; /* 247+ */ > - u16 opst; /* 247+ */ > - struct aggressiveness_profile2_entry aggressiveness2[16]; /* 247+ */ > + u16 elp; /* 247-256 */ > + u16 opst; /* 247-256 */ > + struct aggressiveness_profile2_entry aggressiveness2[16]; /* 247-256 */ > + u16 adp; /* 253-256 */ apd > + u16 po; /* 253-256 */ pixoptix > + struct aggressiveness_profile3_entry aggressiveness3[16]; /* 253-256 */ > + struct panel_identification panel_identity[16]; /* 257+ */ panel_identification > + u16 xpst; /* 257+ */ xpst_support > + u16 tcon; /* 257+ */ tcon_based_backlight_optimization > + struct aggressiveness_profile4_entry aggressiveness4[16]; /* 257+ */ > + u16 tcon_coexist_xpst; /* 257+ */ Hrmh, this is where the member naming in spec is not feasible. Maybe tcon_xpst_coexistence. > } __packed; > > /* -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] drm/i915/bios: Update new entries in VBT BDB block definations 2024-08-12 14:27 ` Jani Nikula @ 2024-08-13 5:27 ` Bhadane, Dnyaneshwar 2024-08-14 15:23 ` Bhadane, Dnyaneshwar 0 siblings, 1 reply; 6+ messages in thread From: Bhadane, Dnyaneshwar @ 2024-08-13 5:27 UTC (permalink / raw) To: Jani Nikula, intel-gfx@lists.freedesktop.org > -----Original Message----- > From: Jani Nikula <jani.nikula@linux.intel.com> > Sent: Monday, August 12, 2024 7:58 PM > To: Bhadane, Dnyaneshwar <dnyaneshwar.bhadane@intel.com>; intel- > gfx@lists.freedesktop.org > Cc: Bhadane, Dnyaneshwar <dnyaneshwar.bhadane@intel.com> > Subject: Re: [PATCH] drm/i915/bios: Update new entries in VBT BDB block > definations > > On Mon, 12 Aug 2024, Dnyaneshwar Bhadane > <dnyaneshwar.bhadane@intel.com> wrote: > > New entries updated in BDB defination from VBT v257- v260. > > *definition > > Please explain what you're adding. Thank you, Jani for the feedback, I will address all the suggestion above and below in the next revision. > > Also, the spec never ceases to amaze me. Like here, adding stuff for a few > revisions, obsoleting and starting over. Ugh. > > > Signed-off-by: Dnyaneshwar Bhadane <dnyaneshwar.bhadane@intel.com> > > --- > > drivers/gpu/drm/i915/display/intel_vbt_defs.h | 35 > > ++++++++++++++++--- > > 1 file changed, 30 insertions(+), 5 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > b/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > index e613288937e4..65342f347bba 100644 > > --- a/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > +++ b/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > @@ -1080,6 +1080,8 @@ struct bdb_edp { > > u16 edp_fast_link_training_rate[16]; /* 224+ */ > > u16 edp_max_port_link_rate[16]; /* > 244+ */ > > u16 edp_dsc_disable; /* 251+ */ > > + u16 t16_delay; /* 260+ */ > > Please let's follow the spec in member naming where feasible. Noted, Thanks. > > This would be t6_delay_support. > > > + u16 t16_link_idle_time; /* 260+ */ > > And this would be u16 link_idle_time[16]. The size is 32 bytes, not 2. Noted, I missed to add as an array of [16]. Thank you. > > (Where does t16 come from?) Noted, Renaming needed. > > > } __packed; > > > > /* > > @@ -1330,12 +1332,27 @@ struct aggressiveness_profile2_entry { > > u8 elp_aggressiveness : 4; > > } __packed; > > > > +struct aggressiveness_profile3_entry { > > + u8 adp_aggressiveness:4; > > apd_aggressiveness > > > + u8 po_aggressiveness:4; > > pixoptix_aggressiveness Noted. Thank you. > > > +} __packed; > > + > > +struct aggressiveness_profile4_entry { > > + u8 xpst_aggressiveness:4; > > + u8 tcon_aggressiveness:4; > > +} __packed; > > + > > +struct panel_identification { > > + u8 panel_type:4; > > panel_type is a loaded word in VBT. Let's avoid it. Maybe panel_technology or > something. Noted. Thank you. > > > + u8 reserved:4; > > +} __packed; > > + > > struct bdb_lfp_power { > > struct lfp_power_features features; /* > ???-227 */ > > struct als_data_entry als[5]; > > u8 lace_aggressiveness_profile:3; /* > 210-227 */ > > u8 reserved1:5; > > - u16 dpst; /* > 228+ */ > > + u16 dpst; /* > 228-256 */ > > u16 psr; /* 228+ */ > > u16 drrs; /* > 228+ */ > > u16 lace_support; /* > 228+ */ > > @@ -1343,12 +1360,20 @@ struct bdb_lfp_power { > > u16 dmrrs; /* > 228+ */ > > u16 adb; /* > 228+ */ > > u16 lace_enabled_status; /* > 228+ */ > > - struct aggressiveness_profile_entry aggressiveness[16]; /* > 228+ */ > > + struct aggressiveness_profile_entry aggressiveness[16]; /* > 228-256 */ > > The LACE agressiveness is still valid. Please add the comment to struct > aggressiveness_profile dpst_aggressiveness member. Noted. Thank you. > > > u16 hobl; /* > 232+ */ > > u16 vrr_feature_enabled; /* > 233+ */ > > - u16 elp; /* 247+ */ > > - u16 opst; /* > 247+ */ > > - struct aggressiveness_profile2_entry aggressiveness2[16]; /* > 247+ */ > > + u16 elp; /* 247-256 */ > > + u16 opst; /* > 247-256 */ > > + struct aggressiveness_profile2_entry aggressiveness2[16]; /* > 247-256 */ > > + u16 adp; /* > 253-256 */ > > apd > > > + u16 po; /* > 253-256 */ > > pixoptix > > > + struct aggressiveness_profile3_entry aggressiveness3[16]; /* > 253-256 */ > > + struct panel_identification panel_identity[16]; /* > 257+ */ > > panel_identification Noted. Thank you. > > > + u16 xpst; /* > 257+ */ > > xpst_support > > > + u16 tcon; /* > 257+ */ > > tcon_based_backlight_optimization > > > + struct aggressiveness_profile4_entry aggressiveness4[16]; /* > 257+ */ > > + u16 tcon_coexist_xpst; /* > 257+ */ > > Hrmh, this is where the member naming in spec is not feasible. Maybe > tcon_xpst_coexistence. Renaming needed. Noted. Thank you. Dnyaneshwar > > > } __packed; > > > > /* > > -- > Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] drm/i915/bios: Update new entries in VBT BDB block definations 2024-08-13 5:27 ` Bhadane, Dnyaneshwar @ 2024-08-14 15:23 ` Bhadane, Dnyaneshwar 0 siblings, 0 replies; 6+ messages in thread From: Bhadane, Dnyaneshwar @ 2024-08-14 15:23 UTC (permalink / raw) To: Bhadane, Dnyaneshwar, Jani Nikula, intel-gfx@lists.freedesktop.org > -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of > Bhadane, Dnyaneshwar > Sent: Tuesday, August 13, 2024 10:58 AM > To: Jani Nikula <jani.nikula@linux.intel.com>; intel-gfx@lists.freedesktop.org > Subject: RE: [PATCH] drm/i915/bios: Update new entries in VBT BDB block > definations > > > > > -----Original Message----- > > From: Jani Nikula <jani.nikula@linux.intel.com> > > Sent: Monday, August 12, 2024 7:58 PM > > To: Bhadane, Dnyaneshwar <dnyaneshwar.bhadane@intel.com>; intel- > > gfx@lists.freedesktop.org > > Cc: Bhadane, Dnyaneshwar <dnyaneshwar.bhadane@intel.com> > > Subject: Re: [PATCH] drm/i915/bios: Update new entries in VBT BDB > > block definitions Please find the rev v2 here: https://patchwork.freedesktop.org/patch/608267/. > > > > On Mon, 12 Aug 2024, Dnyaneshwar Bhadane > > <dnyaneshwar.bhadane@intel.com> wrote: > > > New entries updated in BDB defination from VBT v257- v260. > > > > *definition > > > > Please explain what you're adding. > > Thank you, Jani for the feedback, > > I will address all the suggestion above and below in the next revision. > > > > Also, the spec never ceases to amaze me. Like here, adding stuff for a > > few revisions, obsoleting and starting over. Ugh. > > > > > Signed-off-by: Dnyaneshwar Bhadane > <dnyaneshwar.bhadane@intel.com> > > > --- > > > drivers/gpu/drm/i915/display/intel_vbt_defs.h | 35 > > > ++++++++++++++++--- > > > 1 file changed, 30 insertions(+), 5 deletions(-) > > > > > > diff --git a/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > > b/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > > index e613288937e4..65342f347bba 100644 > > > --- a/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > > +++ b/drivers/gpu/drm/i915/display/intel_vbt_defs.h > > > @@ -1080,6 +1080,8 @@ struct bdb_edp { > > > u16 edp_fast_link_training_rate[16]; /* 224+ */ > > > u16 edp_max_port_link_rate[16]; /* > > 244+ */ > > > u16 edp_dsc_disable; /* 251+ */ > > > + u16 t16_delay; /* 260+ */ > > > > Please let's follow the spec in member naming where feasible. > Noted, Thanks. > > > > This would be t6_delay_support. > > > > > + u16 t16_link_idle_time; /* 260+ */ > > > > And this would be u16 link_idle_time[16]. The size is 32 bytes, not 2. > > Noted, I missed to add as an array of [16]. Thank you. > > > > > (Where does t16 come from?) > Noted, Renaming needed. > > > > > } __packed; > > > > > > /* > > > @@ -1330,12 +1332,27 @@ struct aggressiveness_profile2_entry { > > > u8 elp_aggressiveness : 4; > > > } __packed; > > > > > > +struct aggressiveness_profile3_entry { > > > + u8 adp_aggressiveness:4; > > > > apd_aggressiveness > > > > > + u8 po_aggressiveness:4; > > > > pixoptix_aggressiveness > Noted. Thank you. > > > > > +} __packed; > > > + > > > +struct aggressiveness_profile4_entry { > > > + u8 xpst_aggressiveness:4; > > > + u8 tcon_aggressiveness:4; > > > +} __packed; > > > + > > > +struct panel_identification { > > > + u8 panel_type:4; > > > > panel_type is a loaded word in VBT. Let's avoid it. Maybe > > panel_technology or something. > Noted. Thank you. > > > > > + u8 reserved:4; > > > +} __packed; > > > + > > > struct bdb_lfp_power { > > > struct lfp_power_features features; /* > > ???-227 */ > > > struct als_data_entry als[5]; > > > u8 lace_aggressiveness_profile:3; /* > > 210-227 */ > > > u8 reserved1:5; > > > - u16 dpst; /* > > 228+ */ > > > + u16 dpst; /* > > 228-256 */ > > > u16 psr; /* > 228+ */ > > > u16 drrs; /* > > 228+ */ > > > u16 lace_support; /* > > 228+ */ > > > @@ -1343,12 +1360,20 @@ struct bdb_lfp_power { > > > u16 dmrrs; /* > > 228+ */ > > > u16 adb; /* > > 228+ */ > > > u16 lace_enabled_status; /* > > 228+ */ > > > - struct aggressiveness_profile_entry aggressiveness[16]; /* > > 228+ */ > > > + struct aggressiveness_profile_entry aggressiveness[16]; /* > > 228-256 */ > > > > The LACE agressiveness is still valid. Please add the comment to > > struct aggressiveness_profile dpst_aggressiveness member. > Noted. Thank you. > > > > > u16 hobl; /* > > 232+ */ > > > u16 vrr_feature_enabled; /* > > 233+ */ > > > - u16 elp; /* > 247+ */ > > > - u16 opst; /* > > 247+ */ > > > - struct aggressiveness_profile2_entry aggressiveness2[16]; /* > > 247+ */ > > > + u16 elp; /* > 247-256 */ > > > + u16 opst; /* > > 247-256 */ > > > + struct aggressiveness_profile2_entry aggressiveness2[16]; /* > > 247-256 */ > > > + u16 adp; /* > > 253-256 */ > > > > apd > > > > > + u16 po; /* > > 253-256 */ > > > > pixoptix > > > > > + struct aggressiveness_profile3_entry aggressiveness3[16]; /* > > 253-256 */ > > > + struct panel_identification panel_identity[16]; /* > > 257+ */ > > > > panel_identification > Noted. Thank you. > > > > > + u16 xpst; /* > > 257+ */ > > > > xpst_support > > > > > + u16 tcon; /* > > 257+ */ > > > > tcon_based_backlight_optimization > > > > > + struct aggressiveness_profile4_entry aggressiveness4[16]; /* > > 257+ */ > > > + u16 tcon_coexist_xpst; /* > > 257+ */ > > > > Hrmh, this is where the member naming in spec is not feasible. Maybe > > tcon_xpst_coexistence. > Renaming needed. Noted. Thank you. > > Dnyaneshwar > > > > > > } __packed; > > > > > > /* > > > > -- > > Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/bios: Update new entries in VBT BDB block definations 2024-08-12 13:40 [PATCH] drm/i915/bios: Update new entries in VBT BDB block definations Dnyaneshwar Bhadane 2024-08-12 14:27 ` Jani Nikula @ 2024-08-12 15:03 ` Patchwork 2024-08-13 4:52 ` ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-08-12 15:03 UTC (permalink / raw) To: Dnyaneshwar Bhadane; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 14531 bytes --] == Series Details == Series: drm/i915/bios: Update new entries in VBT BDB block definations URL : https://patchwork.freedesktop.org/series/137185/ State : success == Summary == CI Bug Log - changes from CI_DRM_15218 -> Patchwork_137185v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/index.html Participating hosts (40 -> 39) ------------------------------ Additional (3): bat-dg2-11 bat-arls-1 fi-elk-e7500 Missing (4): bat-arlh-3 fi-kbl-8809g fi-snb-2520m bat-mtlp-6 Known issues ------------ Here are the changes found in Patchwork_137185v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-arls-1: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@random-engines: - bat-arls-1: NOTRUN -> [SKIP][2] ([i915#10213]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@basic: - bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@gem_mmap@basic.html - bat-arls-1: NOTRUN -> [SKIP][4] ([i915#11343] / [i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-1: NOTRUN -> [SKIP][5] ([i915#10197] / [i915#10211] / [i915#4079]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-1: NOTRUN -> [SKIP][6] ([i915#10196] / [i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@gem_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4077]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@gem_tiled_pread_basic.html - bat-arls-1: NOTRUN -> [SKIP][9] ([i915#10206] / [i915#4079]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-11: NOTRUN -> [SKIP][10] ([i915#11681] / [i915#6621]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@i915_pm_rps@basic-api.html - bat-arls-1: NOTRUN -> [SKIP][11] ([i915#10209]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-arls-1: NOTRUN -> [SKIP][12] ([i915#10200]) +9 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#4212]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#5190]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-11: NOTRUN -> [SKIP][15] ([i915#4215] / [i915#5190]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#4103] / [i915#4213]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-arls-1: NOTRUN -> [SKIP][17] ([i915#10202] / [i915#11346]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg2-11: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#3840]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_dsc@dsc-basic.html - bat-arls-1: NOTRUN -> [SKIP][19] ([i915#11346] / [i915#9886]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-arls-1: NOTRUN -> [SKIP][20] ([i915#10207] / [i915#11346]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@kms_force_connector_basic@force-load-detect.html - bat-dg2-11: NOTRUN -> [SKIP][21] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#5274]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pm_backlight@basic-brightness: - bat-dg2-11: NOTRUN -> [SKIP][23] ([i915#5354]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html - bat-arls-1: NOTRUN -> [SKIP][24] ([i915#11346] / [i915#9812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-elk-e7500: NOTRUN -> [SKIP][25] +24 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/fi-elk-e7500/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-arls-1: NOTRUN -> [SKIP][26] ([i915#11346] / [i915#9732]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-dg2-11: NOTRUN -> [SKIP][27] ([i915#1072] / [i915#9732]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-11: NOTRUN -> [SKIP][28] ([i915#3555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html - bat-arls-1: NOTRUN -> [SKIP][29] ([i915#10208] / [i915#8809]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-11: NOTRUN -> [SKIP][30] ([i915#3708]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-11: NOTRUN -> [SKIP][31] ([i915#3708] / [i915#4077]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-arls-1: NOTRUN -> [SKIP][32] ([i915#10212] / [i915#3708]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-arls-1: NOTRUN -> [SKIP][33] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-dg2-11: NOTRUN -> [SKIP][34] ([i915#3291] / [i915#3708]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-dg2-11/igt@prime_vgem@basic-read.html - bat-arls-1: NOTRUN -> [SKIP][35] ([i915#10214] / [i915#3708]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-1: NOTRUN -> [SKIP][36] ([i915#10216] / [i915#3708]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@gt_lrc: - bat-adlp-11: [INCOMPLETE][37] ([i915#9413]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/bat-adlp-11/igt@i915_selftest@live@gt_lrc.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-adlp-11/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@hangcheck: - bat-arls-2: [DMESG-WARN][39] ([i915#11349] / [i915#11378]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/bat-arls-2/igt@i915_selftest@live@hangcheck.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/bat-arls-2/igt@i915_selftest@live@hangcheck.html #### Warnings #### * igt@i915_module_load@reload: - fi-kbl-7567u: [DMESG-WARN][41] ([i915#180] / [i915#9925]) -> [DMESG-WARN][42] ([i915#180] / [i915#1982] / [i915#9925]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/fi-kbl-7567u/igt@i915_module_load@reload.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/fi-kbl-7567u/igt@i915_module_load@reload.html * igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1: - fi-kbl-7567u: [DMESG-WARN][43] ([i915#11888] / [i915#180] / [i915#1982] / [i915#9925]) -> [DMESG-WARN][44] ([i915#11888] / [i915#180] / [i915#9925]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html [i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11888 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 [i915#9925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9925 Build changes ------------- * Linux: CI_DRM_15218 -> Patchwork_137185v1 CI-20190529: 20190529 CI_DRM_15218: 87d7c94569370d9da7d1d3f768d0418e0e0eb286 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_137185v1: 87d7c94569370d9da7d1d3f768d0418e0e0eb286 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/index.html [-- Attachment #2: Type: text/html, Size: 17994 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915/bios: Update new entries in VBT BDB block definations 2024-08-12 13:40 [PATCH] drm/i915/bios: Update new entries in VBT BDB block definations Dnyaneshwar Bhadane 2024-08-12 14:27 ` Jani Nikula 2024-08-12 15:03 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-08-13 4:52 ` Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-08-13 4:52 UTC (permalink / raw) To: Dnyaneshwar Bhadane; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 77854 bytes --] == Series Details == Series: drm/i915/bios: Update new entries in VBT BDB block definations URL : https://patchwork.freedesktop.org/series/137185/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15218_full -> Patchwork_137185v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_137185v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_137185v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_137185v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][1] +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@capture@vecs0-smem: - shard-mtlp: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_exec_capture@capture@vecs0-smem.html * igt@i915_selftest@live@gt_pm: - shard-glk: [PASS][3] -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-glk5/igt@i915_selftest@live@gt_pm.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk5/igt@i915_selftest@live@gt_pm.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b-hdmi-a-1.html #### Warnings #### * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: [SKIP][6] ([i915#3555] / [i915#8810]) -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html Known issues ------------ Here are the changes found in Patchwork_137185v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +9 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@drm_fdinfo@virtual-busy-all.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][15] ([i915#9846]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@hang: - shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb5/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#5882]) +6 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4771]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_exec_balancer@bonded-dual.html - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4771]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#4525]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][22] ([i915#2842]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#3539]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-cpu-gtt-active: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-gtt-active.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#3281]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][36] ([i915#11441]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4860]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4565]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap@basic: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4083]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic-write: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4077]) +7 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_mmap_gtt@basic-write.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4077]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3282]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][50] ([i915#2658]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk8/igt@gem_pread@exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4270]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4270]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html - shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4079]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +7 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_basic: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@gem_tiled_pread_basic.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4879]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@bb-oversize: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#2856]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#2856]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@secure-batches: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#2527]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: NOTRUN -> [DMESG-WARN][71] ([i915#4391] / [i915#4423]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][72] -> [ABORT][73] ([i915#9820]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#6412]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [PASS][75] -> [FAIL][76] ([i915#3591]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#11681] / [i915#6621]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#11681]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@i915_pm_rps@thresholds-park.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#6245]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@i915_query@hwconfig_table.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4215]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4212]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4212]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4212]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#8709]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#8709]) +11 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#9531]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs: - shard-glk: NOTRUN -> [FAIL][87] ([i915#11859]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][88] ([i915#1769]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#1769] / [i915#3555]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][90] ([i915#5956]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][91] ([i915#5956]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-16/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4538] / [i915#5286]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#5286]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3638]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3638]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5190]) +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6187]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html - shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_joiner@basic: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#10656]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_big_joiner@basic.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#6095]) +91 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#10307] / [i915#6095]) +194 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#6095]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#6095]) +49 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6095]) +15 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#10434] / [i915#6095]) +8 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#7213]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4087]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#7828]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#7828]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#7828]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#7828]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7828]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#9424]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#7118]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#7118] / [i915#9424]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-10/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#7116] / [i915#9424]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3359]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][119] ([i915#11453] / [i915#3359]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#11453]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3555]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3555] / [i915#8814]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-1: - shard-glk: [PASS][123] -> [DMESG-FAIL][124] ([i915#118]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-glk6/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-1.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk8/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][125] +12 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#4103]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4103] / [i915#4213]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#9723]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3804]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#3555]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#1257]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3840]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3555] / [i915#3840]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#3840]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#3840]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4854]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#9337]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_feature_discovery@dp-mst.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4881]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3637]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#8381]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#8381]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg2: NOTRUN -> [SKIP][142] ([i915#8381]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#9934]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-snb: [PASS][144] -> [INCOMPLETE][145] ([i915#4839]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#2672]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#2587] / [i915#2672]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#2672]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8810]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#8810]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#2672] / [i915#3555]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][152] +28 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-snb: [PASS][153] -> [SKIP][154] [153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#1825]) +19 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#8708]) +11 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4423] / [i915#8708]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3458]) +13 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#8708]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3023]) +9 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3458]) +10 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#8708]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#5354]) +20 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#1825]) +8 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-snb: NOTRUN -> [SKIP][165] +70 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][166] +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8228]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8228]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8228]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8228]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8228]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#6301]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][173] +10 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][174] ([i915#10647]) +1 other test fail [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#9423]) +20 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#9423]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#9423]) +11 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#5176] / [i915#9423]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#5235] / [i915#9423]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#5235]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#9728]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][182] +289 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#9728]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3361]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][185] -> [FAIL][186] ([i915#9295]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#9685]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][188] -> [SKIP][189] ([i915#4281]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][190] -> [SKIP][191] ([i915#9519]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#9519]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][193] -> [SKIP][194] ([i915#9519]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][195] +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#6524] / [i915#6805]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#11520]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#11520]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#9808]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_psr2_sf@fbc-overlay-plane-move-continuous-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#11520]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9683]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9683]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-primary-render: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#1072] / [i915#9732]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-psr2-sprite-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#1072] / [i915#9732]) +13 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#1072] / [i915#9732]) +9 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-6/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9688]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_psr@pr-cursor-blt.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#9732]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#9685]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#4235]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_rotation_crc@bad-tiling.html - shard-dg2: NOTRUN -> [SKIP][211] ([i915#11131] / [i915#4235]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#4884]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#5289]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#11131]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#3555]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][216] ([i915#5465]) +1 other test fail [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8809]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#8623]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9906]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-7/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#2437] / [i915#9412]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][221] ([i915#2437]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][222] ([i915#2437] / [i915#9412]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#2436]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#7387]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#2434]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][226] ([i915#9100]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#2433]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@cpu-hotplug: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#8850]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#8516]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-17/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][230] ([i915#9351]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#3708] / [i915#4077]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3708]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-15/igt@prime_vgem@fence-flip-hang.html #### Possible fixes #### * igt@gem_exec_flush@basic-wb-set-default: - shard-mtlp: [INCOMPLETE][233] -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-mtlp-1/igt@gem_exec_flush@basic-wb-set-default.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-2/igt@gem_exec_flush@basic-wb-set-default.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][235] ([i915#9820]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][237] ([i915#3591]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][239] ([i915#7790]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-snb5/igt@i915_pm_rps@reset.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb5/igt@i915_pm_rps@reset.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1: - shard-glk: [FAIL][241] ([i915#10991]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1: - shard-mtlp: [FAIL][243] ([i915#11808] / [i915#5956]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels@pipe-a-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1: - shard-snb: [FAIL][245] ([i915#5956]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][247] ([i915#11808]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-tglu-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-10/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_color@ctm-red-to-blue@pipe-a-hdmi-a-1: - shard-tglu: [ABORT][249] -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-tglu-7/igt@kms_color@ctm-red-to-blue@pipe-a-hdmi-a-1.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-3/igt@kms_color@ctm-red-to-blue@pipe-a-hdmi-a-1.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][251] ([i915#2122]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][253] ([i915#9519]) -> [PASS][254] +2 other tests pass [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html - shard-rkl: [SKIP][255] ([i915#9519]) -> [PASS][256] +2 other tests pass [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][257] ([i915#9196]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][259] ([i915#5493]) -> [DMESG-WARN][260] ([i915#4936] / [i915#5493]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][261] ([i915#9697]) -> [ABORT][262] ([i915#9820]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: [SKIP][263] ([i915#11453] / [i915#3359]) -> [SKIP][264] ([i915#11453]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: [SKIP][265] ([i915#3458]) -> [SKIP][266] ([i915#10433] / [i915#3458]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: [SKIP][267] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][268] ([i915#1072] / [i915#9732]) +19 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg2-2/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-dg1: [SKIP][269] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][270] ([i915#1072] / [i915#9732]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15218/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-cpu.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-cpu.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884 [i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_15218 -> Patchwork_137185v1 CI-20190529: 20190529 CI_DRM_15218: 87d7c94569370d9da7d1d3f768d0418e0e0eb286 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_137185v1: 87d7c94569370d9da7d1d3f768d0418e0e0eb286 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_137185v1/index.html [-- Attachment #2: Type: text/html, Size: 95170 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-08-14 15:23 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-08-12 13:40 [PATCH] drm/i915/bios: Update new entries in VBT BDB block definations Dnyaneshwar Bhadane 2024-08-12 14:27 ` Jani Nikula 2024-08-13 5:27 ` Bhadane, Dnyaneshwar 2024-08-14 15:23 ` Bhadane, Dnyaneshwar 2024-08-12 15:03 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-08-13 4:52 ` ✗ Fi.CI.IGT: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.