* [PATCH v1 0/3] Extend ARL support
@ 2024-01-08 12:27 Haridhar Kalvala
2024-01-08 12:27 ` [PATCH v1 1/3] drm/i915: Add additional ARL PCI IDs Haridhar Kalvala
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Haridhar Kalvala @ 2024-01-08 12:27 UTC (permalink / raw)
To: intel-gfx; +Cc: matthew.d.roper
Some SKUs of Arrow Lake use a slightly newer Xe_LPG+ graphics
IP (version 12.74). Add some additional PCI IDs and extend the
code to support this newer IP version. The general code flow
should continue to match existing MTL and Xe_LPG code paths.
Harish Chegondi (1):
drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+
Matt Roper (2):
drm/i915: Add additional ARL PCI IDs
drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74
drivers/gpu/drm/i915/gt/gen8_engine_cs.c | 4 ++--
drivers/gpu/drm/i915/gt/intel_engine_cs.c | 3 ++-
drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +-
drivers/gpu/drm/i915/gt/intel_rc6.c | 2 +-
drivers/gpu/drm/i915/gt/intel_workarounds.c | 24 +++++++++++++--------
drivers/gpu/drm/i915/i915_debugfs.c | 2 +-
drivers/gpu/drm/i915/i915_perf.c | 2 +-
include/drm/i915_pciids.h | 3 +++
8 files changed, 26 insertions(+), 16 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH v1 1/3] drm/i915: Add additional ARL PCI IDs 2024-01-08 12:27 [PATCH v1 0/3] Extend ARL support Haridhar Kalvala @ 2024-01-08 12:27 ` Haridhar Kalvala 2024-01-18 23:01 ` Matt Atwood 2024-01-08 12:27 ` [PATCH v1 2/3] drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+ Haridhar Kalvala ` (4 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Haridhar Kalvala @ 2024-01-08 12:27 UTC (permalink / raw) To: intel-gfx; +Cc: matthew.d.roper From: Matt Roper <matthew.d.roper@intel.com> Our existing MTL driver handling is also sufficient to handle ARL, so these IDs are simply added to the MTL ID list. Bspec: 55420 Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- include/drm/i915_pciids.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h index fcf1849aa47c..07779a11758e 100644 --- a/include/drm/i915_pciids.h +++ b/include/drm/i915_pciids.h @@ -751,10 +751,13 @@ /* MTL */ #define INTEL_MTL_IDS(info) \ INTEL_VGA_DEVICE(0x7D40, info), \ + INTEL_VGA_DEVICE(0x7D41, info), \ INTEL_VGA_DEVICE(0x7D45, info), \ + INTEL_VGA_DEVICE(0x7D51, info), \ INTEL_VGA_DEVICE(0x7D55, info), \ INTEL_VGA_DEVICE(0x7D60, info), \ INTEL_VGA_DEVICE(0x7D67, info), \ + INTEL_VGA_DEVICE(0x7DD1, info), \ INTEL_VGA_DEVICE(0x7DD5, info) #endif /* _I915_PCIIDS_H */ -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v1 1/3] drm/i915: Add additional ARL PCI IDs 2024-01-08 12:27 ` [PATCH v1 1/3] drm/i915: Add additional ARL PCI IDs Haridhar Kalvala @ 2024-01-18 23:01 ` Matt Atwood 0 siblings, 0 replies; 12+ messages in thread From: Matt Atwood @ 2024-01-18 23:01 UTC (permalink / raw) To: Haridhar Kalvala, intel-gfx; +Cc: intel-gfx, matthew.d.roper On Mon, Jan 08, 2024 at 05:57:36PM +0530, Haridhar Kalvala wrote: > From: Matt Roper <matthew.d.roper@intel.com> > > Our existing MTL driver handling is also sufficient to handle ARL, so > these IDs are simply added to the MTL ID list. > > Bspec: 55420 > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com> > --- > include/drm/i915_pciids.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h > index fcf1849aa47c..07779a11758e 100644 > --- a/include/drm/i915_pciids.h > +++ b/include/drm/i915_pciids.h > @@ -751,10 +751,13 @@ > /* MTL */ > #define INTEL_MTL_IDS(info) \ > INTEL_VGA_DEVICE(0x7D40, info), \ > + INTEL_VGA_DEVICE(0x7D41, info), \ > INTEL_VGA_DEVICE(0x7D45, info), \ > + INTEL_VGA_DEVICE(0x7D51, info), \ > INTEL_VGA_DEVICE(0x7D55, info), \ > INTEL_VGA_DEVICE(0x7D60, info), \ > INTEL_VGA_DEVICE(0x7D67, info), \ > + INTEL_VGA_DEVICE(0x7DD1, info), \ > INTEL_VGA_DEVICE(0x7DD5, info) > > #endif /* _I915_PCIIDS_H */ > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v1 2/3] drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+ 2024-01-08 12:27 [PATCH v1 0/3] Extend ARL support Haridhar Kalvala 2024-01-08 12:27 ` [PATCH v1 1/3] drm/i915: Add additional ARL PCI IDs Haridhar Kalvala @ 2024-01-08 12:27 ` Haridhar Kalvala 2024-01-08 14:49 ` Matt Roper 2024-01-08 12:27 ` [PATCH v1 3/3] drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74 Haridhar Kalvala ` (3 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Haridhar Kalvala @ 2024-01-08 12:27 UTC (permalink / raw) To: intel-gfx; +Cc: matthew.d.roper From: Harish Chegondi <harish.chegondi@intel.com> Xe_LPG+ (IP version 12.74) should take the same general code paths as Xe_LPG (versions 12.70 and 12.71). Xe_LPG+'s workaround list will be handled by the next patch. Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> Signed-off-by: Haridhar Kalvala <haridhar.kalvala@intel.com> --- drivers/gpu/drm/i915/gt/intel_engine_cs.c | 3 ++- drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- drivers/gpu/drm/i915/gt/intel_rc6.c | 2 +- drivers/gpu/drm/i915/i915_debugfs.c | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c index 40687806d22a..1ade568ffbfa 100644 --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c @@ -1190,7 +1190,8 @@ static int intel_engine_init_tlb_invalidation(struct intel_engine_cs *engine) num = ARRAY_SIZE(xelpmp_regs); } } else { - if (GRAPHICS_VER_FULL(i915) == IP_VER(12, 71) || + if (GRAPHICS_VER_FULL(i915) == IP_VER(12, 74) || + GRAPHICS_VER_FULL(i915) == IP_VER(12, 71) || GRAPHICS_VER_FULL(i915) == IP_VER(12, 70) || GRAPHICS_VER_FULL(i915) == IP_VER(12, 50) || GRAPHICS_VER_FULL(i915) == IP_VER(12, 55)) { diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c index 353f93baaca0..25c1023eb5f9 100644 --- a/drivers/gpu/drm/i915/gt/intel_mocs.c +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c @@ -495,7 +495,7 @@ static unsigned int get_mocs_settings(struct drm_i915_private *i915, memset(table, 0, sizeof(struct drm_i915_mocs_table)); table->unused_entries_index = I915_MOCS_PTE; - if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 71))) { + if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 74))) { table->size = ARRAY_SIZE(mtl_mocs_table); table->table = mtl_mocs_table; table->n_entries = MTL_NUM_MOCS_ENTRIES; diff --git a/drivers/gpu/drm/i915/gt/intel_rc6.c b/drivers/gpu/drm/i915/gt/intel_rc6.c index 7090e4be29cb..8f4b3c8af09c 100644 --- a/drivers/gpu/drm/i915/gt/intel_rc6.c +++ b/drivers/gpu/drm/i915/gt/intel_rc6.c @@ -123,7 +123,7 @@ static void gen11_rc6_enable(struct intel_rc6 *rc6) * temporary wa and should be removed after fixing real cause * of forcewake timeouts. */ - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71))) + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74))) pg_enable = GEN9_MEDIA_PG_ENABLE | GEN11_MEDIA_SAMPLER_PG_ENABLE; diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index db99c2ef66db..990eaa029d9c 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -147,7 +147,7 @@ static const char *i915_cache_level_str(struct drm_i915_gem_object *obj) { struct drm_i915_private *i915 = obj_to_i915(obj); - if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 71))) { + if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 74))) { switch (obj->pat_index) { case 0: return " WB"; case 1: return " WT"; -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v1 2/3] drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+ 2024-01-08 12:27 ` [PATCH v1 2/3] drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+ Haridhar Kalvala @ 2024-01-08 14:49 ` Matt Roper 0 siblings, 0 replies; 12+ messages in thread From: Matt Roper @ 2024-01-08 14:49 UTC (permalink / raw) To: Haridhar Kalvala; +Cc: intel-gfx On Mon, Jan 08, 2024 at 05:57:37PM +0530, Haridhar Kalvala wrote: > From: Harish Chegondi <harish.chegondi@intel.com> > > Xe_LPG+ (IP version 12.74) should take the same general code > paths as Xe_LPG (versions 12.70 and 12.71). > > Xe_LPG+'s workaround list will be handled by the next patch. > > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > Signed-off-by: Haridhar Kalvala <haridhar.kalvala@intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> > --- > drivers/gpu/drm/i915/gt/intel_engine_cs.c | 3 ++- > drivers/gpu/drm/i915/gt/intel_mocs.c | 2 +- > drivers/gpu/drm/i915/gt/intel_rc6.c | 2 +- > drivers/gpu/drm/i915/i915_debugfs.c | 2 +- > 4 files changed, 5 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i915/gt/intel_engine_cs.c > index 40687806d22a..1ade568ffbfa 100644 > --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c > +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c > @@ -1190,7 +1190,8 @@ static int intel_engine_init_tlb_invalidation(struct intel_engine_cs *engine) > num = ARRAY_SIZE(xelpmp_regs); > } > } else { > - if (GRAPHICS_VER_FULL(i915) == IP_VER(12, 71) || > + if (GRAPHICS_VER_FULL(i915) == IP_VER(12, 74) || > + GRAPHICS_VER_FULL(i915) == IP_VER(12, 71) || > GRAPHICS_VER_FULL(i915) == IP_VER(12, 70) || > GRAPHICS_VER_FULL(i915) == IP_VER(12, 50) || > GRAPHICS_VER_FULL(i915) == IP_VER(12, 55)) { > diff --git a/drivers/gpu/drm/i915/gt/intel_mocs.c b/drivers/gpu/drm/i915/gt/intel_mocs.c > index 353f93baaca0..25c1023eb5f9 100644 > --- a/drivers/gpu/drm/i915/gt/intel_mocs.c > +++ b/drivers/gpu/drm/i915/gt/intel_mocs.c > @@ -495,7 +495,7 @@ static unsigned int get_mocs_settings(struct drm_i915_private *i915, > memset(table, 0, sizeof(struct drm_i915_mocs_table)); > > table->unused_entries_index = I915_MOCS_PTE; > - if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 71))) { > + if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 74))) { > table->size = ARRAY_SIZE(mtl_mocs_table); > table->table = mtl_mocs_table; > table->n_entries = MTL_NUM_MOCS_ENTRIES; > diff --git a/drivers/gpu/drm/i915/gt/intel_rc6.c b/drivers/gpu/drm/i915/gt/intel_rc6.c > index 7090e4be29cb..8f4b3c8af09c 100644 > --- a/drivers/gpu/drm/i915/gt/intel_rc6.c > +++ b/drivers/gpu/drm/i915/gt/intel_rc6.c > @@ -123,7 +123,7 @@ static void gen11_rc6_enable(struct intel_rc6 *rc6) > * temporary wa and should be removed after fixing real cause > * of forcewake timeouts. > */ > - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71))) > + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74))) > pg_enable = > GEN9_MEDIA_PG_ENABLE | > GEN11_MEDIA_SAMPLER_PG_ENABLE; > diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c > index db99c2ef66db..990eaa029d9c 100644 > --- a/drivers/gpu/drm/i915/i915_debugfs.c > +++ b/drivers/gpu/drm/i915/i915_debugfs.c > @@ -147,7 +147,7 @@ static const char *i915_cache_level_str(struct drm_i915_gem_object *obj) > { > struct drm_i915_private *i915 = obj_to_i915(obj); > > - if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 71))) { > + if (IS_GFX_GT_IP_RANGE(to_gt(i915), IP_VER(12, 70), IP_VER(12, 74))) { > switch (obj->pat_index) { > case 0: return " WB"; > case 1: return " WT"; > -- > 2.25.1 > -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v1 3/3] drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74 2024-01-08 12:27 [PATCH v1 0/3] Extend ARL support Haridhar Kalvala 2024-01-08 12:27 ` [PATCH v1 1/3] drm/i915: Add additional ARL PCI IDs Haridhar Kalvala 2024-01-08 12:27 ` [PATCH v1 2/3] drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+ Haridhar Kalvala @ 2024-01-08 12:27 ` Haridhar Kalvala 2024-01-18 23:22 ` Matt Atwood 2024-01-08 13:33 ` ✗ Fi.CI.SPARSE: warning for Extend ARL support Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Haridhar Kalvala @ 2024-01-08 12:27 UTC (permalink / raw) To: intel-gfx; +Cc: matthew.d.roper From: Matt Roper <matthew.d.roper@intel.com> Some of our existing Xe_LPG workarounds and tuning are also applicable to the version 12.74 variant. Extend the condition bounds accordingly. Also fix the comment on Wa_14018575942 while we're at it. v2: Extend some more workarounds (Harish) Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> Signed-off-by: Haridhar Kalvala <haridhar.kalvala@intel.com> --- drivers/gpu/drm/i915/gt/gen8_engine_cs.c | 4 ++-- drivers/gpu/drm/i915/gt/intel_workarounds.c | 24 +++++++++++++-------- drivers/gpu/drm/i915/i915_perf.c | 2 +- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c index 86a04afff64b..e1bf13e3d307 100644 --- a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c +++ b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c @@ -226,7 +226,7 @@ u32 *gen12_emit_aux_table_inv(struct intel_engine_cs *engine, u32 *cs) static int mtl_dummy_pipe_control(struct i915_request *rq) { /* Wa_14016712196 */ - if (IS_GFX_GT_IP_RANGE(rq->engine->gt, IP_VER(12, 70), IP_VER(12, 71)) || + if (IS_GFX_GT_IP_RANGE(rq->engine->gt, IP_VER(12, 70), IP_VER(12, 74)) || IS_DG2(rq->i915)) { u32 *cs; @@ -822,7 +822,7 @@ u32 *gen12_emit_fini_breadcrumb_rcs(struct i915_request *rq, u32 *cs) flags |= PIPE_CONTROL_FLUSH_L3; /* Wa_14016712196 */ - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71)) || IS_DG2(i915)) + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74)) || IS_DG2(i915)) /* dummy PIPE_CONTROL + depth flush */ cs = gen12_emit_pipe_control(cs, 0, PIPE_CONTROL_DEPTH_CACHE_FLUSH, 0); diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c index 3eacbc50caf8..72dac27d9332 100644 --- a/drivers/gpu/drm/i915/gt/intel_workarounds.c +++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c @@ -789,8 +789,13 @@ static void xelpg_ctx_gt_tuning_init(struct intel_engine_cs *engine, dg2_ctx_gt_tuning_init(engine, wal); - if (IS_GFX_GT_IP_STEP(gt, IP_VER(12, 70), STEP_B0, STEP_FOREVER) || - IS_GFX_GT_IP_STEP(gt, IP_VER(12, 71), STEP_B0, STEP_FOREVER)) + /* + * Due to Wa_16014892111, the DRAW_WATERMARK tuning must be done in + * gen12_emit_indirect_ctx_rcs() rather than here on some early + * steppings. + */ + if (!(IS_GFX_GT_IP_STEP(gt, IP_VER(12, 70), STEP_A0, STEP_B0) || + IS_GFX_GT_IP_STEP(gt, IP_VER(12, 71), STEP_A0, STEP_B0))) wa_add(wal, DRAW_WATERMARK, VERT_WM_VAL, 0x3FF, 0, false); } @@ -908,7 +913,7 @@ __intel_engine_init_ctx_wa(struct intel_engine_cs *engine, if (engine->class != RENDER_CLASS) goto done; - if (IS_GFX_GT_IP_RANGE(engine->gt, IP_VER(12, 70), IP_VER(12, 71))) + if (IS_GFX_GT_IP_RANGE(engine->gt, IP_VER(12, 70), IP_VER(12, 74))) xelpg_ctx_workarounds_init(engine, wal); else if (IS_PONTEVECCHIO(i915)) ; /* noop; none at this time */ @@ -1643,7 +1648,7 @@ pvc_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) static void xelpg_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) { - /* Wa_14018778641 / Wa_18018781329 */ + /* Wa_14018575942 / Wa_18018781329 */ wa_mcr_write_or(wal, COMP_MOD_CTRL, FORCE_MISS_FTLB); /* Wa_22016670082 */ @@ -1710,7 +1715,7 @@ xelpmp_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) */ static void gt_tuning_settings(struct intel_gt *gt, struct i915_wa_list *wal) { - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71))) { + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74))) { wa_mcr_write_or(wal, XEHP_L3SCQREG7, BLEND_FILL_CACHING_OPT_DIS); wa_mcr_write_or(wal, XEHP_SQCM, EN_32B_ACCESS); } @@ -1743,7 +1748,7 @@ gt_init_workarounds(struct intel_gt *gt, struct i915_wa_list *wal) return; } - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71))) + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74))) xelpg_gt_workarounds_init(gt, wal); else if (IS_PONTEVECCHIO(i915)) pvc_gt_workarounds_init(gt, wal); @@ -2216,7 +2221,7 @@ void intel_engine_init_whitelist(struct intel_engine_cs *engine) if (engine->gt->type == GT_MEDIA) ; /* none yet */ - else if (IS_GFX_GT_IP_RANGE(engine->gt, IP_VER(12, 70), IP_VER(12, 71))) + else if (IS_GFX_GT_IP_RANGE(engine->gt, IP_VER(12, 70), IP_VER(12, 74))) xelpg_whitelist_build(engine); else if (IS_PONTEVECCHIO(i915)) pvc_whitelist_build(engine); @@ -2828,7 +2833,7 @@ add_render_compute_tuning_settings(struct intel_gt *gt, { struct drm_i915_private *i915 = gt->i915; - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71)) || IS_DG2(i915)) + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74)) || IS_DG2(i915)) wa_mcr_write_clr_set(wal, RT_CTRL, STACKID_CTRL, STACKID_CTRL_512); /* @@ -2881,7 +2886,8 @@ general_render_compute_wa_init(struct intel_engine_cs *engine, struct i915_wa_li } if (IS_GFX_GT_IP_STEP(gt, IP_VER(12, 70), STEP_B0, STEP_FOREVER) || - IS_GFX_GT_IP_STEP(gt, IP_VER(12, 71), STEP_B0, STEP_FOREVER)) + IS_GFX_GT_IP_STEP(gt, IP_VER(12, 71), STEP_B0, STEP_FOREVER) || + IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 74), IP_VER(12, 74))) /* Wa_14017856879 */ wa_mcr_masked_en(wal, GEN9_ROW_CHICKEN3, MTL_DISABLE_FIX_FOR_EOT_FLUSH); diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c index 7b1c8de2f9cb..6e1b9c53a22a 100644 --- a/drivers/gpu/drm/i915/i915_perf.c +++ b/drivers/gpu/drm/i915/i915_perf.c @@ -3196,7 +3196,7 @@ u32 i915_perf_oa_timestamp_frequency(struct drm_i915_private *i915) struct intel_gt *gt = to_gt(i915); /* Wa_18013179988 */ - if (IS_DG2(i915) || IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71))) { + if (IS_DG2(i915) || IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74))) { intel_wakeref_t wakeref; u32 reg, shift; -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v1 3/3] drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74 2024-01-08 12:27 ` [PATCH v1 3/3] drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74 Haridhar Kalvala @ 2024-01-18 23:22 ` Matt Atwood 0 siblings, 0 replies; 12+ messages in thread From: Matt Atwood @ 2024-01-18 23:22 UTC (permalink / raw) To: Haridhar Kalvala, intel-gfx; +Cc: intel-gfx, matthew.d.roper On Mon, Jan 08, 2024 at 05:57:38PM +0530, Haridhar Kalvala wrote: > From: Matt Roper <matthew.d.roper@intel.com> > > Some of our existing Xe_LPG workarounds and tuning are also applicable > to the version 12.74 variant. Extend the condition bounds accordingly. > Also fix the comment on Wa_14018575942 while we're at it. > > v2: Extend some more workarounds (Harish) > > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> > Signed-off-by: Harish Chegondi <harish.chegondi@intel.com> > Signed-off-by: Haridhar Kalvala <haridhar.kalvala@intel.com> Reviewed-by: Matt Atwood <matthew.s.atwood@intel.com> > --- > drivers/gpu/drm/i915/gt/gen8_engine_cs.c | 4 ++-- > drivers/gpu/drm/i915/gt/intel_workarounds.c | 24 +++++++++++++-------- > drivers/gpu/drm/i915/i915_perf.c | 2 +- > 3 files changed, 18 insertions(+), 12 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c > index 86a04afff64b..e1bf13e3d307 100644 > --- a/drivers/gpu/drm/i915/gt/gen8_engine_cs.c > +++ b/drivers/gpu/drm/i915/gt/gen8_engine_cs.c > @@ -226,7 +226,7 @@ u32 *gen12_emit_aux_table_inv(struct intel_engine_cs *engine, u32 *cs) > static int mtl_dummy_pipe_control(struct i915_request *rq) > { > /* Wa_14016712196 */ > - if (IS_GFX_GT_IP_RANGE(rq->engine->gt, IP_VER(12, 70), IP_VER(12, 71)) || > + if (IS_GFX_GT_IP_RANGE(rq->engine->gt, IP_VER(12, 70), IP_VER(12, 74)) || > IS_DG2(rq->i915)) { > u32 *cs; > > @@ -822,7 +822,7 @@ u32 *gen12_emit_fini_breadcrumb_rcs(struct i915_request *rq, u32 *cs) > flags |= PIPE_CONTROL_FLUSH_L3; > > /* Wa_14016712196 */ > - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71)) || IS_DG2(i915)) > + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74)) || IS_DG2(i915)) > /* dummy PIPE_CONTROL + depth flush */ > cs = gen12_emit_pipe_control(cs, 0, > PIPE_CONTROL_DEPTH_CACHE_FLUSH, 0); > diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c > index 3eacbc50caf8..72dac27d9332 100644 > --- a/drivers/gpu/drm/i915/gt/intel_workarounds.c > +++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c > @@ -789,8 +789,13 @@ static void xelpg_ctx_gt_tuning_init(struct intel_engine_cs *engine, > > dg2_ctx_gt_tuning_init(engine, wal); > > - if (IS_GFX_GT_IP_STEP(gt, IP_VER(12, 70), STEP_B0, STEP_FOREVER) || > - IS_GFX_GT_IP_STEP(gt, IP_VER(12, 71), STEP_B0, STEP_FOREVER)) > + /* > + * Due to Wa_16014892111, the DRAW_WATERMARK tuning must be done in > + * gen12_emit_indirect_ctx_rcs() rather than here on some early > + * steppings. > + */ > + if (!(IS_GFX_GT_IP_STEP(gt, IP_VER(12, 70), STEP_A0, STEP_B0) || > + IS_GFX_GT_IP_STEP(gt, IP_VER(12, 71), STEP_A0, STEP_B0))) > wa_add(wal, DRAW_WATERMARK, VERT_WM_VAL, 0x3FF, 0, false); > } > > @@ -908,7 +913,7 @@ __intel_engine_init_ctx_wa(struct intel_engine_cs *engine, > if (engine->class != RENDER_CLASS) > goto done; > > - if (IS_GFX_GT_IP_RANGE(engine->gt, IP_VER(12, 70), IP_VER(12, 71))) > + if (IS_GFX_GT_IP_RANGE(engine->gt, IP_VER(12, 70), IP_VER(12, 74))) > xelpg_ctx_workarounds_init(engine, wal); > else if (IS_PONTEVECCHIO(i915)) > ; /* noop; none at this time */ > @@ -1643,7 +1648,7 @@ pvc_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) > static void > xelpg_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) > { > - /* Wa_14018778641 / Wa_18018781329 */ > + /* Wa_14018575942 / Wa_18018781329 */ > wa_mcr_write_or(wal, COMP_MOD_CTRL, FORCE_MISS_FTLB); > > /* Wa_22016670082 */ > @@ -1710,7 +1715,7 @@ xelpmp_gt_workarounds_init(struct intel_gt *gt, struct i915_wa_list *wal) > */ > static void gt_tuning_settings(struct intel_gt *gt, struct i915_wa_list *wal) > { > - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71))) { > + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74))) { > wa_mcr_write_or(wal, XEHP_L3SCQREG7, BLEND_FILL_CACHING_OPT_DIS); > wa_mcr_write_or(wal, XEHP_SQCM, EN_32B_ACCESS); > } > @@ -1743,7 +1748,7 @@ gt_init_workarounds(struct intel_gt *gt, struct i915_wa_list *wal) > return; > } > > - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71))) > + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74))) > xelpg_gt_workarounds_init(gt, wal); > else if (IS_PONTEVECCHIO(i915)) > pvc_gt_workarounds_init(gt, wal); > @@ -2216,7 +2221,7 @@ void intel_engine_init_whitelist(struct intel_engine_cs *engine) > > if (engine->gt->type == GT_MEDIA) > ; /* none yet */ > - else if (IS_GFX_GT_IP_RANGE(engine->gt, IP_VER(12, 70), IP_VER(12, 71))) > + else if (IS_GFX_GT_IP_RANGE(engine->gt, IP_VER(12, 70), IP_VER(12, 74))) > xelpg_whitelist_build(engine); > else if (IS_PONTEVECCHIO(i915)) > pvc_whitelist_build(engine); > @@ -2828,7 +2833,7 @@ add_render_compute_tuning_settings(struct intel_gt *gt, > { > struct drm_i915_private *i915 = gt->i915; > > - if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71)) || IS_DG2(i915)) > + if (IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74)) || IS_DG2(i915)) > wa_mcr_write_clr_set(wal, RT_CTRL, STACKID_CTRL, STACKID_CTRL_512); > > /* > @@ -2881,7 +2886,8 @@ general_render_compute_wa_init(struct intel_engine_cs *engine, struct i915_wa_li > } > > if (IS_GFX_GT_IP_STEP(gt, IP_VER(12, 70), STEP_B0, STEP_FOREVER) || > - IS_GFX_GT_IP_STEP(gt, IP_VER(12, 71), STEP_B0, STEP_FOREVER)) > + IS_GFX_GT_IP_STEP(gt, IP_VER(12, 71), STEP_B0, STEP_FOREVER) || > + IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 74), IP_VER(12, 74))) > /* Wa_14017856879 */ > wa_mcr_masked_en(wal, GEN9_ROW_CHICKEN3, MTL_DISABLE_FIX_FOR_EOT_FLUSH); > > diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c > index 7b1c8de2f9cb..6e1b9c53a22a 100644 > --- a/drivers/gpu/drm/i915/i915_perf.c > +++ b/drivers/gpu/drm/i915/i915_perf.c > @@ -3196,7 +3196,7 @@ u32 i915_perf_oa_timestamp_frequency(struct drm_i915_private *i915) > struct intel_gt *gt = to_gt(i915); > > /* Wa_18013179988 */ > - if (IS_DG2(i915) || IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 71))) { > + if (IS_DG2(i915) || IS_GFX_GT_IP_RANGE(gt, IP_VER(12, 70), IP_VER(12, 74))) { > intel_wakeref_t wakeref; > u32 reg, shift; > > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Extend ARL support 2024-01-08 12:27 [PATCH v1 0/3] Extend ARL support Haridhar Kalvala ` (2 preceding siblings ...) 2024-01-08 12:27 ` [PATCH v1 3/3] drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74 Haridhar Kalvala @ 2024-01-08 13:33 ` Patchwork 2024-01-08 13:47 ` ✓ Fi.CI.BAT: success " Patchwork 2024-01-08 15:37 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-01-08 13:33 UTC (permalink / raw) To: Haridhar Kalvala; +Cc: intel-gfx == Series Details == Series: Extend ARL support URL : https://patchwork.freedesktop.org/series/128322/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./drivers/gpu/drm/i915/intel_uncore.h:346:1: warning: trying to copy expression type 31 +./drivers/gpu/drm/i915/intel_uncore.h:346:1: warning: trying to copy expression type 31 +./drivers/gpu/drm/i915/intel_uncore.h:351:1: warning: trying to copy expression type 31 +./drivers/gpu/drm/i915/intel_uncore.h:351:1: warning: trying to copy expression type 31 +./drivers/gpu/drm/i915/intel_uncore.h:351:1: warning: trying to copy expression type 31 +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for Extend ARL support 2024-01-08 12:27 [PATCH v1 0/3] Extend ARL support Haridhar Kalvala ` (3 preceding siblings ...) 2024-01-08 13:33 ` ✗ Fi.CI.SPARSE: warning for Extend ARL support Patchwork @ 2024-01-08 13:47 ` Patchwork 2024-01-08 15:37 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-01-08 13:47 UTC (permalink / raw) To: Haridhar Kalvala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 6243 bytes --] == Series Details == Series: Extend ARL support URL : https://patchwork.freedesktop.org/series/128322/ State : success == Summary == CI Bug Log - changes from CI_DRM_14092 -> Patchwork_128322v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/index.html Participating hosts (37 -> 35) ------------------------------ Additional (1): bat-kbl-2 Missing (3): fi-bsw-nick fi-snb-2520m fi-bsw-n3050 Known issues ------------ Here are the changes found in Patchwork_128322v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/bat-kbl-2/igt@fbdev@info.html * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [PASS][2] -> [INCOMPLETE][3] ([i915#9883]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][4] ([fdo#109271]) +36 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_module_load@reload: - fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#1982] / [i915#8585]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/fi-kbl-7567u/igt@i915_module_load@reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/fi-kbl-7567u/igt@i915_module_load@reload.html * igt@i915_pm_rpm@module-reload: - fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#8585]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-7567u: [PASS][9] -> [DMESG-WARN][10] ([i915#9730]) +31 other tests dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/fi-kbl-7567u/igt@i915_selftest@live@gt_heartbeat.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/fi-kbl-7567u/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s2idle-without-i915: - fi-kbl-7567u: [PASS][11] -> [DMESG-WARN][12] ([i915#180]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/fi-kbl-7567u/igt@i915_suspend@basic-s2idle-without-i915.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/fi-kbl-7567u/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [PASS][13] -> [FAIL][14] ([i915#10031]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html - bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6645]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#1836]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pm_backlight@basic-brightness@edp-1: - bat-rplp-1: NOTRUN -> [ABORT][17] ([i915#8668]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/bat-rplp-1/igt@kms_pm_backlight@basic-brightness@edp-1.html #### Possible fixes #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][18] ([i915#8668] / [i915#9368]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#4550]: https://gitlab.freedesktop.org/drm/intel/issues/4550 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9368]: https://gitlab.freedesktop.org/drm/intel/issues/9368 [i915#9730]: https://gitlab.freedesktop.org/drm/intel/issues/9730 [i915#9883]: https://gitlab.freedesktop.org/drm/intel/issues/9883 Build changes ------------- * Linux: CI_DRM_14092 -> Patchwork_128322v1 CI-20190529: 20190529 CI_DRM_14092: f4cec0fbca99cb2517f10790abcecdb9fe7eb4a5 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7661: 17df2eb8cded19c629cacee8a369629b56976068 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_128322v1: f4cec0fbca99cb2517f10790abcecdb9fe7eb4a5 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 6fef8faaa708 drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74 76121f371ad8 drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+ 81bb98e564e5 drm/i915: Add additional ARL PCI IDs == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/index.html [-- Attachment #2: Type: text/html, Size: 7193 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for Extend ARL support 2024-01-08 12:27 [PATCH v1 0/3] Extend ARL support Haridhar Kalvala ` (4 preceding siblings ...) 2024-01-08 13:47 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-01-08 15:37 ` Patchwork 2024-01-18 23:33 ` Matt Roper 5 siblings, 1 reply; 12+ messages in thread From: Patchwork @ 2024-01-08 15:37 UTC (permalink / raw) To: Haridhar Kalvala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 68036 bytes --] == Series Details == Series: Extend ARL support URL : https://patchwork.freedesktop.org/series/128322/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14092_full -> Patchwork_128322v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_128322v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_128322v1_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_128322v1_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-snb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1: - shard-tglu: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html * igt@sysfs_heartbeat_interval@mixed@ccs1: - shard-dg2: [PASS][7] -> [INCOMPLETE][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-2/igt@sysfs_heartbeat_interval@mixed@ccs1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-7/igt@sysfs_heartbeat_interval@mixed@ccs1.html Known issues ------------ Here are the changes found in Patchwork_128322v1_full that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - shard-glk: ([PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [FAIL][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30]) ([i915#8293]) -> ([PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk6/boot.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk7/boot.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk7/boot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk6/boot.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk6/boot.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk5/boot.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk5/boot.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/boot.html ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#7701]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#8414]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#8414]) +10 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@drm_fdinfo@busy-check-all@ccs3.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: [PASS][56] -> [FAIL][57] ([i915#7742]) +2 other tests fail [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][58] ([i915#7297]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][59] ([fdo#109314]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#8555]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hang: - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#1099]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@gem_ctx_persistence@legacy-engines-hang.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#280]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][63] -> [ABORT][64] ([i915#7975] / [i915#8213]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-11/igt@gem_eio@hibernate.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4812]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: [PASS][66] -> [FAIL][67] ([i915#2842]) +1 other test fail [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-6/igt@gem_exec_fair@basic-none-rrul@rcs0.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][68] ([i915#2842]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html - shard-glk: NOTRUN -> [FAIL][69] ([i915#2842]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4812]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_exec_fence@submit3.html * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271]) +41 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3539] / [i915#4852]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3539] / [i915#4852]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3281]) +7 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3281]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-read.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3281]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3281]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][78] ([i915#7975] / [i915#8213]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][79] -> [ABORT][80] ([i915#7975] / [i915#8213]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4860]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4860]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2190]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#4613]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#284]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_media_vme.html * igt@gem_mmap@basic: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4083]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_mmap@basic.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4083]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4077]) +11 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4077]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3282]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3282]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@fail-invalid-protected-context: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_pxp@fail-invalid-protected-context.html - shard-rkl: NOTRUN -> [SKIP][95] ([i915#4270]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_pxp@fail-invalid-protected-context.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4270]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190]) +10 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8411]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4079]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gen3_render_mixed_blits: - shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#109289]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gen3_render_mixed_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][102] ([fdo#109289]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-secure: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][107] -> [INCOMPLETE][108] ([i915#9200] / [i915#9849]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][109] -> [INCOMPLETE][110] ([i915#9200]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][111] -> [INCOMPLETE][112] ([i915#9200] / [i915#9849]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#8399]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#3591]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][116] -> [FAIL][117] ([i915#3591]) +1 other test fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6621]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@i915_pm_rps@basic-api.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#8709]) +7 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#8709]) +11 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][122] -> [FAIL][123] ([i915#5138]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111614]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html - shard-tglu: [PASS][129] -> [FAIL][130] ([i915#3743]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][131] ([fdo#110723]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +9 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-glk: NOTRUN -> [SKIP][136] ([fdo#109271]) +226 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-4-tiled-mtl-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +10 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_ccs@pipe-c-missing-ccs-buffer-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5354]) +14 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-0-50: - shard-mtlp: NOTRUN -> [SKIP][139] ([fdo#111827]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#111827]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-negative: - shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111827]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7828]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_chamelium_frames@hdmi-frame-dump.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#7828]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3116]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8814]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3359]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3359]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3359]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#4213]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111825]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274] / [i915#5354]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#9067]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][158] ([i915#9067]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9067]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#9833]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#9833]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9723]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9227]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3804]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3840] / [i915#9688]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4854]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9337]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9337]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#658]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][170] ([fdo#109274]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][171] ([fdo#111825] / [i915#9934]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#8381]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@b-vga1: - shard-snb: NOTRUN -> [DMESG-WARN][173] ([i915#10007]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#2672]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#2672]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#109285]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-snb: [PASS][179] -> [SKIP][180] ([fdo#109271]) +10 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3458]) +12 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#5354]) +62 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111825] / [i915#1825]) +14 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111825]) +9 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3023]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][186] ([i915#8708]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8708]) +11 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#6301]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109289]) +5 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-dg1: NOTRUN -> [SKIP][192] ([fdo#109289]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][193] ([i915#8292]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][194] ([i915#8292]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: [PASS][195] -> [FAIL][196] ([i915#8292]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#9423]) +9 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9423]) +7 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#5176] / [i915#9423]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5176] / [i915#9423]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9423]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#5235]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#5235]) +9 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#5235] / [i915#9423]) +15 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#5354]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_pm_backlight@fade.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][206] -> [SKIP][207] ([i915#9519]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][208] -> [SKIP][209] ([i915#9519]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][210] ([fdo#109293] / [fdo#109506]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#6524] / [i915#6805]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9683]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#4235] / [i915#5190]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3555]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][215] -> [FAIL][216] ([i915#9196]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][218] ([fdo#109271] / [i915#2437]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2437]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][220] ([i915#2437]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][221] ([i915#2437]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2437]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#2434]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][224] ([i915#4349]) +3 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9917]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@sriov_basic@enable-vfs-bind-unbind-each.html - shard-dg2: NOTRUN -> [SKIP][226] ([i915#9917]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9917]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][228] ([i915#9779]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_perfmon@create-single-perfmon: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2575]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@v3d/v3d_perfmon@create-single-perfmon.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#2575]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109315]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@v3d/v3d_submit_csd@valid-multisync-submission.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#2575]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#7711]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#7711]) +6 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_perfmon@get-values-invalid-perfmon: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#7711]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][236] ([i915#7297]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][238] ([i915#6268]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [FAIL][240] ([i915#6268]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@wait-wedge-1us: - shard-mtlp: [ABORT][242] -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-4/igt@gem_eio@wait-wedge-1us.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gem_eio@wait-wedge-1us.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][244] ([i915#2842]) -> [PASS][245] +1 other test pass [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][246] ([i915#2842]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][248] ([i915#9275]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][250] ([i915#9820]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [FAIL][252] ([i915#3591]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0: - shard-rkl: [INCOMPLETE][254] -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][256] ([i915#7790]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb5/igt@i915_pm_rps@reset.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@i915_pm_rps@reset.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][258] ([i915#3743]) -> [PASS][259] +1 other test pass [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-snb: [SKIP][260] ([fdo#109271]) -> [PASS][261] +4 other tests pass [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [FAIL][262] ([i915#6880]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][264] ([i915#9519]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][266] ([i915#9519]) -> [PASS][267] +1 other test pass [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [FAIL][268] ([i915#9196]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][270] ([i915#9846]) -> [INCOMPLETE][271] ([i915#9364]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][272] ([i915#9820]) -> [INCOMPLETE][273] ([i915#9849]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][274] ([i915#9820]) -> [ABORT][275] ([i915#9697]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [SKIP][276] ([fdo#109271]) -> [INCOMPLETE][277] ([i915#8816]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@kms_content_protection@atomic-dpms.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb7/igt@kms_content_protection@atomic-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][278] ([i915#4281]) -> [SKIP][279] ([i915#3361]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#10007]: https://gitlab.freedesktop.org/drm/intel/issues/10007 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * Linux: CI_DRM_14092 -> Patchwork_128322v1 CI-20190529: 20190529 CI_DRM_14092: f4cec0fbca99cb2517f10790abcecdb9fe7eb4a5 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7661: 17df2eb8cded19c629cacee8a369629b56976068 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_128322v1: f4cec0fbca99cb2517f10790abcecdb9fe7eb4a5 @ 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_128322v1/index.html [-- Attachment #2: Type: text/html, Size: 80915 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for Extend ARL support 2024-01-08 15:37 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-01-18 23:33 ` Matt Roper 2024-01-19 9:44 ` Kalvala, Haridhar 0 siblings, 1 reply; 12+ messages in thread From: Matt Roper @ 2024-01-18 23:33 UTC (permalink / raw) To: intel-gfx On Mon, Jan 08, 2024 at 03:37:29PM -0000, Patchwork wrote: > == Series Details == > > Series: Extend ARL support > URL : https://patchwork.freedesktop.org/series/128322/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_14092_full -> Patchwork_128322v1_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_128322v1_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_128322v1_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 (8 -> 8) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_128322v1_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > - shard-snb: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > * igt@i915_suspend@basic-s3-without-i915: > - shard-snb: [PASS][3] -> [INCOMPLETE][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html > > * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1: > - shard-tglu: [PASS][5] -> [INCOMPLETE][6] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html > > * igt@sysfs_heartbeat_interval@mixed@ccs1: > - shard-dg2: [PASS][7] -> [INCOMPLETE][8] > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-2/igt@sysfs_heartbeat_interval@mixed@ccs1.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-7/igt@sysfs_heartbeat_interval@mixed@ccs1.html None of these failures are related to the ARL PCI IDs or graphics version 12.74 workarounds added in this series. First patch applied to drm-intel-next (after adding Haridhar's missing s-o-b line as we discussed offline) and the other two applied to drm-intel-gt-next. Thanks for the patches and reviews. Matt > > > Known issues > ------------ > > Here are the changes found in Patchwork_128322v1_full that come from known issues: > > ### CI changes ### > > #### Possible fixes #### > > * boot: > - shard-glk: ([PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [FAIL][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30]) ([i915#8293]) -> ([PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk6/boot.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk7/boot.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk7/boot.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk6/boot.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk6/boot.html > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk5/boot.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk5/boot.html > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/boot.html > > > > ### IGT changes ### > > #### Issues hit #### > > * igt@device_reset@unbind-cold-reset-rebind: > - shard-dg2: NOTRUN -> [SKIP][53] ([i915#7701]) > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html > > * igt@drm_fdinfo@busy-check-all@bcs0: > - shard-dg1: NOTRUN -> [SKIP][54] ([i915#8414]) +4 other tests skip > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@drm_fdinfo@busy-check-all@bcs0.html > > * igt@drm_fdinfo@busy-check-all@ccs3: > - shard-dg2: NOTRUN -> [SKIP][55] ([i915#8414]) +10 other tests skip > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@drm_fdinfo@busy-check-all@ccs3.html > > * igt@drm_fdinfo@virtual-idle: > - shard-rkl: [PASS][56] -> [FAIL][57] ([i915#7742]) +2 other tests fail > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html > > * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: > - shard-dg2: NOTRUN -> [INCOMPLETE][58] ([i915#7297]) > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html > > * igt@gem_ctx_param@set-priority-not-supported: > - shard-dg2: NOTRUN -> [SKIP][59] ([fdo#109314]) > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_ctx_param@set-priority-not-supported.html > > * igt@gem_ctx_persistence@heartbeat-stop: > - shard-dg2: NOTRUN -> [SKIP][60] ([i915#8555]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html > > * igt@gem_ctx_persistence@legacy-engines-hang: > - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#1099]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@gem_ctx_persistence@legacy-engines-hang.html > > * igt@gem_ctx_sseu@mmap-args: > - shard-dg2: NOTRUN -> [SKIP][62] ([i915#280]) > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html > > * igt@gem_eio@hibernate: > - shard-dg2: [PASS][63] -> [ABORT][64] ([i915#7975] / [i915#8213]) > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-11/igt@gem_eio@hibernate.html > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_eio@hibernate.html > > * igt@gem_exec_balancer@bonded-semaphore: > - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4812]) > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_balancer@bonded-semaphore.html > > * igt@gem_exec_fair@basic-none-rrul@rcs0: > - shard-rkl: [PASS][66] -> [FAIL][67] ([i915#2842]) +1 other test fail > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-6/igt@gem_exec_fair@basic-none-rrul@rcs0.html > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html > > * igt@gem_exec_fair@basic-none-vip@rcs0: > - shard-rkl: NOTRUN -> [FAIL][68] ([i915#2842]) > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html > - shard-glk: NOTRUN -> [FAIL][69] ([i915#2842]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/igt@gem_exec_fair@basic-none-vip@rcs0.html > > * igt@gem_exec_fence@submit3: > - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4812]) +2 other tests skip > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_exec_fence@submit3.html > > * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: > - shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271]) +41 other tests skip > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html > > * igt@gem_exec_flush@basic-wb-rw-before-default: > - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3539] / [i915#4852]) +1 other test skip > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html > > * igt@gem_exec_flush@basic-wb-set-default: > - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3539] / [i915#4852]) +3 other tests skip > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_exec_flush@basic-wb-set-default.html > > * igt@gem_exec_reloc@basic-cpu-read: > - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3281]) +7 other tests skip > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-read.html > > * igt@gem_exec_reloc@basic-gtt-read: > - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3281]) +1 other test skip > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-read.html > - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3281]) > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_reloc@basic-gtt-read.html > > * igt@gem_exec_reloc@basic-wc-cpu-noreloc: > - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3281]) > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html > > * igt@gem_exec_suspend@basic-s4-devices@lmem0: > - shard-dg2: NOTRUN -> [ABORT][78] ([i915#7975] / [i915#8213]) > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html > > * igt@gem_exec_suspend@basic-s4-devices@smem: > - shard-tglu: [PASS][79] -> [ABORT][80] ([i915#7975] / [i915#8213]) > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html > > * igt@gem_fence_thrash@bo-write-verify-y: > - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4860]) +2 other tests skip > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html > - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4860]) > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-y.html > > * igt@gem_huc_copy@huc-copy: > - shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2190]) > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@gem_huc_copy@huc-copy.html > > * igt@gem_lmem_swapping@verify: > - shard-rkl: NOTRUN -> [SKIP][84] ([i915#4613]) +1 other test skip > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_lmem_swapping@verify.html > > * igt@gem_lmem_swapping@verify-ccs: > - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +1 other test skip > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html > > * igt@gem_media_vme: > - shard-dg2: NOTRUN -> [SKIP][86] ([i915#284]) > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_media_vme.html > > * igt@gem_mmap@basic: > - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4083]) > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_mmap@basic.html > - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4083]) > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_mmap@basic.html > > * igt@gem_mmap_gtt@basic-small-bo: > - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4077]) +11 other tests skip > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html > > * igt@gem_mmap_gtt@basic-small-copy-xy: > - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4077]) +3 other tests skip > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-xy.html > > * igt@gem_partial_pwrite_pread@write: > - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3282]) +2 other tests skip > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_partial_pwrite_pread@write.html > > * igt@gem_partial_pwrite_pread@writes-after-reads-display: > - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282]) +2 other tests skip > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html > - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3282]) > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads-display.html > > * igt@gem_pxp@fail-invalid-protected-context: > - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270]) +2 other tests skip > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_pxp@fail-invalid-protected-context.html > - shard-rkl: NOTRUN -> [SKIP][95] ([i915#4270]) +1 other test skip > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_pxp@fail-invalid-protected-context.html > - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4270]) > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_pxp@fail-invalid-protected-context.html > > * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: > - shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190]) +10 other tests skip > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html > > * igt@gem_set_tiling_vs_blt@tiled-to-tiled: > - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8411]) > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html > > * igt@gem_tiled_pread_pwrite: > - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4079]) > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_tiled_pread_pwrite.html > > * igt@gem_userptr_blits@map-fixed-invalidate-overlap: > - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880]) > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html > > * igt@gen3_render_mixed_blits: > - shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#109289]) > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gen3_render_mixed_blits.html > > * igt@gen7_exec_parse@basic-rejected: > - shard-rkl: NOTRUN -> [SKIP][102] ([fdo#109289]) +2 other tests skip > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@gen7_exec_parse@basic-rejected.html > > * igt@gen9_exec_parse@batch-invalid-length: > - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html > - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gen9_exec_parse@batch-invalid-length.html > > * igt@gen9_exec_parse@bb-secure: > - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gen9_exec_parse@bb-secure.html > > * igt@gen9_exec_parse@valid-registers: > - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +3 other tests skip > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html > > * igt@i915_module_load@reload-with-fault-injection: > - shard-snb: [PASS][107] -> [INCOMPLETE][108] ([i915#9200] / [i915#9849]) > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html > - shard-tglu: [PASS][109] -> [INCOMPLETE][110] ([i915#9200]) > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html > - shard-glk: [PASS][111] -> [INCOMPLETE][112] ([i915#9200] / [i915#9849]) > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html > > * igt@i915_pm_freq_api@freq-reset-multiple: > - shard-rkl: NOTRUN -> [SKIP][113] ([i915#8399]) > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html > > * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: > - shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#3591]) > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html > > * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: > - shard-dg1: [PASS][116] -> [FAIL][117] ([i915#3591]) +1 other test fail > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html > > * igt@i915_pm_rps@basic-api: > - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6621]) > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@i915_pm_rps@basic-api.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: > - shard-dg1: NOTRUN -> [SKIP][119] ([i915#8709]) +7 other tests skip > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: > - shard-dg2: NOTRUN -> [SKIP][120] ([i915#8709]) +11 other tests skip > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html > > * igt@kms_big_fb@4-tiled-16bpp-rotate-270: > - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > - shard-mtlp: [PASS][122] -> [FAIL][123] ([i915#5138]) > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html > > * igt@kms_big_fb@linear-64bpp-rotate-90: > - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) +1 other test skip > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html > > * igt@kms_big_fb@linear-8bpp-rotate-90: > - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111614]) +5 other tests skip > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-90.html > > * igt@kms_big_fb@y-tiled-64bpp-rotate-90: > - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: > - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +1 other test skip > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html > - shard-tglu: [PASS][129] -> [FAIL][130] ([i915#3743]) > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html > > * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: > - shard-rkl: NOTRUN -> [SKIP][131] ([fdo#110723]) +1 other test skip > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html > > * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: > - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +3 other tests skip > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html > - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html > > * igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs: > - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +9 other tests skip > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs.html > > * igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs: > - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095]) +1 other test skip > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs.html > > * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: > - shard-glk: NOTRUN -> [SKIP][136] ([fdo#109271]) +226 other tests skip > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html > > * igt@kms_ccs@pipe-c-missing-ccs-buffer-4-tiled-mtl-rc-ccs: > - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +10 other tests skip > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_ccs@pipe-c-missing-ccs-buffer-4-tiled-mtl-rc-ccs.html > > * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: > - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5354]) +14 other tests skip > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html > > * igt@kms_chamelium_color@ctm-0-50: > - shard-mtlp: NOTRUN -> [SKIP][139] ([fdo#111827]) > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_chamelium_color@ctm-0-50.html > > * igt@kms_chamelium_color@ctm-blue-to-red: > - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#111827]) +1 other test skip > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_chamelium_color@ctm-blue-to-red.html > > * igt@kms_chamelium_color@ctm-negative: > - shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111827]) > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_chamelium_color@ctm-negative.html > > * igt@kms_chamelium_frames@hdmi-crc-fast: > - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7828]) +7 other tests skip > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-fast.html > - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-crc-fast.html > > * igt@kms_chamelium_frames@hdmi-frame-dump: > - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +2 other tests skip > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_chamelium_frames@hdmi-frame-dump.html > - shard-dg1: NOTRUN -> [SKIP][145] ([i915#7828]) +1 other test skip > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_chamelium_frames@hdmi-frame-dump.html > > * igt@kms_content_protection@dp-mst-lic-type-0: > - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3116]) > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html > > * igt@kms_content_protection@type1: > - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118]) +2 other tests skip > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_content_protection@type1.html > > * igt@kms_cursor_crc@cursor-onscreen-max-size: > - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +2 other tests skip > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html > > * igt@kms_cursor_crc@cursor-random-256x85: > - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8814]) > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85.html > > * igt@kms_cursor_crc@cursor-random-512x170: > - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3359]) +2 other tests skip > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html > > * igt@kms_cursor_crc@cursor-rapid-movement-512x170: > - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3359]) > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html > - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3359]) > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html > > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: > - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#4213]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html > - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: > - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111825]) +5 other tests skip > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: > - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274] / [i915#5354]) +1 other test skip > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html > > * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: > - shard-dg2: NOTRUN -> [SKIP][157] ([i915#9067]) > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html > - shard-rkl: NOTRUN -> [SKIP][158] ([i915#9067]) > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html > - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9067]) > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html > > * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: > - shard-dg2: NOTRUN -> [SKIP][160] ([i915#9833]) > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html > - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#9833]) > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html > > * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9723]) > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html > > * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: > - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9227]) > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html > > * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3804]) > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html > > * igt@kms_dsc@dsc-fractional-bpp: > - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3840] / [i915#9688]) > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html > > * igt@kms_feature_discovery@chamelium: > - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4854]) > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_feature_discovery@chamelium.html > > * igt@kms_feature_discovery@dp-mst: > - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9337]) > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html > - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9337]) > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html > > * igt@kms_feature_discovery@psr1: > - shard-dg2: NOTRUN -> [SKIP][169] ([i915#658]) > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_feature_discovery@psr1.html > > * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: > - shard-dg2: NOTRUN -> [SKIP][170] ([fdo#109274]) +3 other tests skip > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html > - shard-dg1: NOTRUN -> [SKIP][171] ([fdo#111825] / [i915#9934]) > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html > > * igt@kms_flip@flip-vs-fences-interruptible: > - shard-dg2: NOTRUN -> [SKIP][172] ([i915#8381]) > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html > > * igt@kms_flip@flip-vs-suspend-interruptible@b-vga1: > - shard-snb: NOTRUN -> [DMESG-WARN][173] ([i915#10007]) > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html > > * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: > - shard-rkl: NOTRUN -> [SKIP][174] ([i915#2672]) > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html > - shard-dg1: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: > - shard-dg2: NOTRUN -> [SKIP][176] ([i915#2672]) +4 other tests skip > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: > - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555]) > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#109285]) > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: > - shard-snb: [PASS][179] -> [SKIP][180] ([fdo#109271]) +10 other tests skip > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: > - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3458]) +12 other tests skip > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: > - shard-dg2: NOTRUN -> [SKIP][182] ([i915#5354]) +62 other tests skip > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: > - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111825] / [i915#1825]) +14 other tests skip > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html > - shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111825]) +9 other tests skip > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: > - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3023]) +7 other tests skip > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html > - shard-dg1: NOTRUN -> [SKIP][186] ([i915#8708]) +1 other test skip > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: > - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +4 other tests skip > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html > > * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8708]) +11 other tests skip > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html > > * igt@kms_hdr@invalid-metadata-sizes: > - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) +2 other tests skip > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html > > * igt@kms_panel_fitting@atomic-fastset: > - shard-rkl: NOTRUN -> [SKIP][190] ([i915#6301]) > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html > > * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: > - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109289]) +5 other tests skip > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html > > * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: > - shard-dg1: NOTRUN -> [SKIP][192] ([fdo#109289]) +1 other test skip > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: > - shard-dg2: NOTRUN -> [FAIL][193] ([i915#8292]) > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [FAIL][194] ([i915#8292]) > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: > - shard-dg1: [PASS][195] -> [FAIL][196] ([i915#8292]) > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html > > * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][197] ([i915#9423]) +9 other tests skip > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9423]) +7 other tests skip > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html > > * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][199] ([i915#5176] / [i915#9423]) +1 other test skip > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html > > * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: > - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5176] / [i915#9423]) +3 other tests skip > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html > > * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4: > - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9423]) +3 other tests skip > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: > - shard-dg1: NOTRUN -> [SKIP][202] ([i915#5235]) +3 other tests skip > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html > > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][203] ([i915#5235]) +9 other tests skip > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: > - shard-dg2: NOTRUN -> [SKIP][204] ([i915#5235] / [i915#9423]) +15 other tests skip > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html > > * igt@kms_pm_backlight@fade: > - shard-dg1: NOTRUN -> [SKIP][205] ([i915#5354]) > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_pm_backlight@fade.html > > * igt@kms_pm_rpm@modeset-lpsp: > - shard-rkl: [PASS][206] -> [SKIP][207] ([i915#9519]) +1 other test skip > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html > > * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: > - shard-dg2: [PASS][208] -> [SKIP][209] ([i915#9519]) +1 other test skip > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html > > * igt@kms_pm_rpm@pc8-residency: > - shard-dg2: NOTRUN -> [SKIP][210] ([fdo#109293] / [fdo#109506]) > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_pm_rpm@pc8-residency.html > > * igt@kms_prime@basic-modeset-hybrid: > - shard-dg2: NOTRUN -> [SKIP][211] ([i915#6524] / [i915#6805]) > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html > > * igt@kms_psr2_su@page_flip-nv12: > - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9683]) +1 other test skip > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_psr2_su@page_flip-nv12.html > > * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: > - shard-dg2: NOTRUN -> [SKIP][213] ([i915#4235] / [i915#5190]) > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html > > * igt@kms_scaling_modes@scaling-mode-full-aspect: > - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3555]) > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-full-aspect.html > > * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: > - shard-tglu: [PASS][215] -> [FAIL][216] ([i915#9196]) > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html > > * igt@kms_vrr@negative-basic: > - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555]) +1 other test skip > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_vrr@negative-basic.html > > * igt@kms_writeback@writeback-fb-id: > - shard-glk: NOTRUN -> [SKIP][218] ([fdo#109271] / [i915#2437]) +1 other test skip > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/igt@kms_writeback@writeback-fb-id.html > - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2437]) +1 other test skip > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html > - shard-rkl: NOTRUN -> [SKIP][220] ([i915#2437]) > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html > - shard-dg1: NOTRUN -> [SKIP][221] ([i915#2437]) > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html > > * igt@kms_writeback@writeback-pixel-formats: > - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2437]) > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_writeback@writeback-pixel-formats.html > > * igt@perf@mi-rpc: > - shard-rkl: NOTRUN -> [SKIP][223] ([i915#2434]) > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@perf@mi-rpc.html > > * igt@perf_pmu@busy-double-start@vecs1: > - shard-dg2: NOTRUN -> [FAIL][224] ([i915#4349]) +3 other tests fail > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html > > * igt@sriov_basic@enable-vfs-bind-unbind-each: > - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9917]) > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@sriov_basic@enable-vfs-bind-unbind-each.html > - shard-dg2: NOTRUN -> [SKIP][226] ([i915#9917]) > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html > - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9917]) > [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html > > * igt@syncobj_wait@invalid-wait-zero-handles: > - shard-glk: NOTRUN -> [FAIL][228] ([i915#9779]) > [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/igt@syncobj_wait@invalid-wait-zero-handles.html > > * igt@v3d/v3d_perfmon@create-single-perfmon: > - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2575]) > [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@v3d/v3d_perfmon@create-single-perfmon.html > > * igt@v3d/v3d_perfmon@create-two-perfmon: > - shard-dg2: NOTRUN -> [SKIP][230] ([i915#2575]) +7 other tests skip > [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@v3d/v3d_perfmon@create-two-perfmon.html > > * igt@v3d/v3d_submit_csd@valid-multisync-submission: > - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109315]) +5 other tests skip > [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@v3d/v3d_submit_csd@valid-multisync-submission.html > - shard-dg1: NOTRUN -> [SKIP][232] ([i915#2575]) +2 other tests skip > [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@v3d/v3d_submit_csd@valid-multisync-submission.html > > * igt@vc4/vc4_mmap@mmap-bad-handle: > - shard-dg1: NOTRUN -> [SKIP][233] ([i915#7711]) +1 other test skip > [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@vc4/vc4_mmap@mmap-bad-handle.html > > * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: > - shard-dg2: NOTRUN -> [SKIP][234] ([i915#7711]) +6 other tests skip > [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html > > * igt@vc4/vc4_perfmon@get-values-invalid-perfmon: > - shard-rkl: NOTRUN -> [SKIP][235] ([i915#7711]) +1 other test skip > [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html > > > #### Possible fixes #### > > * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: > - shard-dg2: [INCOMPLETE][236] ([i915#7297]) -> [PASS][237] > [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html > [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - shard-rkl: [FAIL][238] ([i915#6268]) -> [PASS][239] > [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html > [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html > - shard-tglu: [FAIL][240] ([i915#6268]) -> [PASS][241] > [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html > [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_eio@wait-wedge-1us: > - shard-mtlp: [ABORT][242] -> [PASS][243] > [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-4/igt@gem_eio@wait-wedge-1us.html > [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gem_eio@wait-wedge-1us.html > > * igt@gem_exec_fair@basic-none-share@rcs0: > - shard-tglu: [FAIL][244] ([i915#2842]) -> [PASS][245] +1 other test pass > [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html > [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html > > * igt@gem_exec_fair@basic-pace-solo@rcs0: > - shard-rkl: [FAIL][246] ([i915#2842]) -> [PASS][247] > [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html > [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html > > * igt@gem_exec_suspend@basic-s0@smem: > - shard-dg2: [INCOMPLETE][248] ([i915#9275]) -> [PASS][249] > [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html > [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html > > * igt@i915_module_load@reload-with-fault-injection: > - shard-rkl: [ABORT][250] ([i915#9820]) -> [PASS][251] > [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html > [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html > > * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: > - shard-dg1: [FAIL][252] ([i915#3591]) -> [PASS][253] > [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html > [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html > > * igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0: > - shard-rkl: [INCOMPLETE][254] -> [PASS][255] > [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html > [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html > > * igt@i915_pm_rps@reset: > - shard-snb: [INCOMPLETE][256] ([i915#7790]) -> [PASS][257] > [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb5/igt@i915_pm_rps@reset.html > [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@i915_pm_rps@reset.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - shard-tglu: [FAIL][258] ([i915#3743]) -> [PASS][259] +1 other test pass > [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html > [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: > - shard-snb: [SKIP][260] ([fdo#109271]) -> [PASS][261] +4 other tests pass > [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html > [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: > - shard-dg2: [FAIL][262] ([i915#6880]) -> [PASS][263] > [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html > [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html > > * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: > - shard-rkl: [SKIP][264] ([i915#9519]) -> [PASS][265] > [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html > [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html > > * igt@kms_pm_rpm@modeset-non-lpsp: > - shard-dg2: [SKIP][266] ([i915#9519]) -> [PASS][267] +1 other test pass > [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html > [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html > > * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: > - shard-mtlp: [FAIL][268] ([i915#9196]) -> [PASS][269] > [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html > [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html > > > #### Warnings #### > > * igt@gem_create@create-ext-cpu-access-big: > - shard-dg2: [ABORT][270] ([i915#9846]) -> [INCOMPLETE][271] ([i915#9364]) > [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html > [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html > > * igt@i915_module_load@reload-with-fault-injection: > - shard-dg1: [ABORT][272] ([i915#9820]) -> [INCOMPLETE][273] ([i915#9849]) > [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html > [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html > - shard-mtlp: [ABORT][274] ([i915#9820]) -> [ABORT][275] ([i915#9697]) > [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html > [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html > > * igt@kms_content_protection@atomic-dpms: > - shard-snb: [SKIP][276] ([fdo#109271]) -> [INCOMPLETE][277] ([i915#8816]) > [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@kms_content_protection@atomic-dpms.html > [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb7/igt@kms_content_protection@atomic-dpms.html > > * igt@kms_pm_dc@dc9-dpms: > - shard-rkl: [SKIP][278] ([i915#4281]) -> [SKIP][279] ([i915#3361]) > [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html > [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 > [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [i915#10007]: https://gitlab.freedesktop.org/drm/intel/issues/10007 > [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 > [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 > [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 > [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 > [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 > [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293 > [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 > [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 > [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 > [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 > [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 > [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 > [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 > [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 > [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 > [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 > [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 > [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 > [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 > [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 > [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 > [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 > [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 > [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 > [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 > [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 > [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 > [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 > [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 > [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 > [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 > [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 > [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 > [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 > [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 > > > Build changes > ------------- > > * Linux: CI_DRM_14092 -> Patchwork_128322v1 > > CI-20190529: 20190529 > CI_DRM_14092: f4cec0fbca99cb2517f10790abcecdb9fe7eb4a5 @ git://anongit.freedesktop.org/gfx-ci/linux > IGT_7661: 17df2eb8cded19c629cacee8a369629b56976068 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > Patchwork_128322v1: f4cec0fbca99cb2517f10790abcecdb9fe7eb4a5 @ 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_128322v1/index.html -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for Extend ARL support 2024-01-18 23:33 ` Matt Roper @ 2024-01-19 9:44 ` Kalvala, Haridhar 0 siblings, 0 replies; 12+ messages in thread From: Kalvala, Haridhar @ 2024-01-19 9:44 UTC (permalink / raw) To: Matt Roper, intel-gfx On 1/19/2024 5:03 AM, Matt Roper wrote: > On Mon, Jan 08, 2024 at 03:37:29PM -0000, Patchwork wrote: >> == Series Details == >> >> Series: Extend ARL support >> URL : https://patchwork.freedesktop.org/series/128322/ >> State : failure >> >> == Summary == >> >> CI Bug Log - changes from CI_DRM_14092_full -> Patchwork_128322v1_full >> ==================================================== >> >> Summary >> ------- >> >> **FAILURE** >> >> Serious unknown changes coming with Patchwork_128322v1_full absolutely need to be >> verified manually. >> >> If you think the reported changes have nothing to do with the changes >> introduced in Patchwork_128322v1_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 (8 -> 8) >> ------------------------------ >> >> No changes in participating hosts >> >> Possible new issues >> ------------------- >> >> Here are the unknown changes that may have been introduced in Patchwork_128322v1_full: >> >> ### IGT changes ### >> >> #### Possible regressions #### >> >> * igt@i915_pipe_stress@stress-xrgb8888-untiled: >> - shard-snb: [PASS][1] -> [FAIL][2] >> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html >> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html >> >> * igt@i915_suspend@basic-s3-without-i915: >> - shard-snb: [PASS][3] -> [INCOMPLETE][4] >> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html >> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html >> >> * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1: >> - shard-tglu: [PASS][5] -> [INCOMPLETE][6] >> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html >> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html >> >> * igt@sysfs_heartbeat_interval@mixed@ccs1: >> - shard-dg2: [PASS][7] -> [INCOMPLETE][8] >> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-2/igt@sysfs_heartbeat_interval@mixed@ccs1.html >> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-7/igt@sysfs_heartbeat_interval@mixed@ccs1.html > None of these failures are related to the ARL PCI IDs or graphics > version 12.74 workarounds added in this series. > > First patch applied to drm-intel-next (after adding Haridhar's missing > s-o-b line as we discussed offline) and the other two applied to > drm-intel-gt-next. > > Thanks for the patches and reviews. > > > Matt Thank you Matt for applying the patch. Thank you Matt R and Matt A for review. >> >> Known issues >> ------------ >> >> Here are the changes found in Patchwork_128322v1_full that come from known issues: >> >> ### CI changes ### >> >> #### Possible fixes #### >> >> * boot: >> - shard-glk: ([PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [FAIL][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30]) ([i915#8293]) -> ([PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52]) >> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html >> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html >> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html >> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html >> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk9/boot.html >> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html >> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html >> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk1/boot.html >> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html >> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html >> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/boot.html >> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html >> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html >> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk4/boot.html >> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html >> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html >> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk5/boot.html >> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk6/boot.html >> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk7/boot.html >> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk7/boot.html >> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html >> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk8/boot.html >> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html >> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html >> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html >> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/boot.html >> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html >> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html >> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/boot.html >> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html >> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html >> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk7/boot.html >> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk6/boot.html >> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk6/boot.html >> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk5/boot.html >> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk5/boot.html >> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html >> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html >> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk4/boot.html >> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html >> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html >> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html >> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/boot.html >> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/boot.html >> >> >> >> ### IGT changes ### >> >> #### Issues hit #### >> >> * igt@device_reset@unbind-cold-reset-rebind: >> - shard-dg2: NOTRUN -> [SKIP][53] ([i915#7701]) >> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html >> >> * igt@drm_fdinfo@busy-check-all@bcs0: >> - shard-dg1: NOTRUN -> [SKIP][54] ([i915#8414]) +4 other tests skip >> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@drm_fdinfo@busy-check-all@bcs0.html >> >> * igt@drm_fdinfo@busy-check-all@ccs3: >> - shard-dg2: NOTRUN -> [SKIP][55] ([i915#8414]) +10 other tests skip >> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@drm_fdinfo@busy-check-all@ccs3.html >> >> * igt@drm_fdinfo@virtual-idle: >> - shard-rkl: [PASS][56] -> [FAIL][57] ([i915#7742]) +2 other tests fail >> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html >> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html >> >> * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: >> - shard-dg2: NOTRUN -> [INCOMPLETE][58] ([i915#7297]) >> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html >> >> * igt@gem_ctx_param@set-priority-not-supported: >> - shard-dg2: NOTRUN -> [SKIP][59] ([fdo#109314]) >> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_ctx_param@set-priority-not-supported.html >> >> * igt@gem_ctx_persistence@heartbeat-stop: >> - shard-dg2: NOTRUN -> [SKIP][60] ([i915#8555]) >> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html >> >> * igt@gem_ctx_persistence@legacy-engines-hang: >> - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#1099]) >> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@gem_ctx_persistence@legacy-engines-hang.html >> >> * igt@gem_ctx_sseu@mmap-args: >> - shard-dg2: NOTRUN -> [SKIP][62] ([i915#280]) >> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html >> >> * igt@gem_eio@hibernate: >> - shard-dg2: [PASS][63] -> [ABORT][64] ([i915#7975] / [i915#8213]) >> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-11/igt@gem_eio@hibernate.html >> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_eio@hibernate.html >> >> * igt@gem_exec_balancer@bonded-semaphore: >> - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4812]) >> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_balancer@bonded-semaphore.html >> >> * igt@gem_exec_fair@basic-none-rrul@rcs0: >> - shard-rkl: [PASS][66] -> [FAIL][67] ([i915#2842]) +1 other test fail >> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-6/igt@gem_exec_fair@basic-none-rrul@rcs0.html >> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html >> >> * igt@gem_exec_fair@basic-none-vip@rcs0: >> - shard-rkl: NOTRUN -> [FAIL][68] ([i915#2842]) >> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html >> - shard-glk: NOTRUN -> [FAIL][69] ([i915#2842]) >> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/igt@gem_exec_fair@basic-none-vip@rcs0.html >> >> * igt@gem_exec_fence@submit3: >> - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4812]) +2 other tests skip >> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_exec_fence@submit3.html >> >> * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: >> - shard-snb: NOTRUN -> [SKIP][71] ([fdo#109271]) +41 other tests skip >> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html >> >> * igt@gem_exec_flush@basic-wb-rw-before-default: >> - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3539] / [i915#4852]) +1 other test skip >> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html >> >> * igt@gem_exec_flush@basic-wb-set-default: >> - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3539] / [i915#4852]) +3 other tests skip >> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_exec_flush@basic-wb-set-default.html >> >> * igt@gem_exec_reloc@basic-cpu-read: >> - shard-dg2: NOTRUN -> [SKIP][74] ([i915#3281]) +7 other tests skip >> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-read.html >> >> * igt@gem_exec_reloc@basic-gtt-read: >> - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3281]) +1 other test skip >> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-read.html >> - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3281]) >> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_exec_reloc@basic-gtt-read.html >> >> * igt@gem_exec_reloc@basic-wc-cpu-noreloc: >> - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3281]) >> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html >> >> * igt@gem_exec_suspend@basic-s4-devices@lmem0: >> - shard-dg2: NOTRUN -> [ABORT][78] ([i915#7975] / [i915#8213]) >> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html >> >> * igt@gem_exec_suspend@basic-s4-devices@smem: >> - shard-tglu: [PASS][79] -> [ABORT][80] ([i915#7975] / [i915#8213]) >> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html >> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html >> >> * igt@gem_fence_thrash@bo-write-verify-y: >> - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4860]) +2 other tests skip >> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-y.html >> - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4860]) >> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-y.html >> >> * igt@gem_huc_copy@huc-copy: >> - shard-glk: NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2190]) >> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@gem_huc_copy@huc-copy.html >> >> * igt@gem_lmem_swapping@verify: >> - shard-rkl: NOTRUN -> [SKIP][84] ([i915#4613]) +1 other test skip >> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_lmem_swapping@verify.html >> >> * igt@gem_lmem_swapping@verify-ccs: >> - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +1 other test skip >> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html >> >> * igt@gem_media_vme: >> - shard-dg2: NOTRUN -> [SKIP][86] ([i915#284]) >> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_media_vme.html >> >> * igt@gem_mmap@basic: >> - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4083]) >> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_mmap@basic.html >> - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4083]) >> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_mmap@basic.html >> >> * igt@gem_mmap_gtt@basic-small-bo: >> - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4077]) +11 other tests skip >> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html >> >> * igt@gem_mmap_gtt@basic-small-copy-xy: >> - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4077]) +3 other tests skip >> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_mmap_gtt@basic-small-copy-xy.html >> >> * igt@gem_partial_pwrite_pread@write: >> - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3282]) +2 other tests skip >> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@gem_partial_pwrite_pread@write.html >> >> * igt@gem_partial_pwrite_pread@writes-after-reads-display: >> - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282]) +2 other tests skip >> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html >> - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3282]) >> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads-display.html >> >> * igt@gem_pxp@fail-invalid-protected-context: >> - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4270]) +2 other tests skip >> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@gem_pxp@fail-invalid-protected-context.html >> - shard-rkl: NOTRUN -> [SKIP][95] ([i915#4270]) +1 other test skip >> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gem_pxp@fail-invalid-protected-context.html >> - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4270]) >> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gem_pxp@fail-invalid-protected-context.html >> >> * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: >> - shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190]) +10 other tests skip >> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html >> >> * igt@gem_set_tiling_vs_blt@tiled-to-tiled: >> - shard-rkl: NOTRUN -> [SKIP][98] ([i915#8411]) >> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html >> >> * igt@gem_tiled_pread_pwrite: >> - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4079]) >> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_tiled_pread_pwrite.html >> >> * igt@gem_userptr_blits@map-fixed-invalidate-overlap: >> - shard-dg2: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880]) >> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html >> >> * igt@gen3_render_mixed_blits: >> - shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#109289]) >> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gen3_render_mixed_blits.html >> >> * igt@gen7_exec_parse@basic-rejected: >> - shard-rkl: NOTRUN -> [SKIP][102] ([fdo#109289]) +2 other tests skip >> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@gen7_exec_parse@basic-rejected.html >> >> * igt@gen9_exec_parse@batch-invalid-length: >> - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) >> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html >> - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) >> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@gen9_exec_parse@batch-invalid-length.html >> >> * igt@gen9_exec_parse@bb-secure: >> - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) >> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gen9_exec_parse@bb-secure.html >> >> * igt@gen9_exec_parse@valid-registers: >> - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2856]) +3 other tests skip >> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html >> >> * igt@i915_module_load@reload-with-fault-injection: >> - shard-snb: [PASS][107] -> [INCOMPLETE][108] ([i915#9200] / [i915#9849]) >> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html >> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html >> - shard-tglu: [PASS][109] -> [INCOMPLETE][110] ([i915#9200]) >> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html >> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html >> - shard-glk: [PASS][111] -> [INCOMPLETE][112] ([i915#9200] / [i915#9849]) >> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html >> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html >> >> * igt@i915_pm_freq_api@freq-reset-multiple: >> - shard-rkl: NOTRUN -> [SKIP][113] ([i915#8399]) >> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html >> >> * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: >> - shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#3591]) >> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html >> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html >> >> * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: >> - shard-dg1: [PASS][116] -> [FAIL][117] ([i915#3591]) +1 other test fail >> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html >> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html >> >> * igt@i915_pm_rps@basic-api: >> - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6621]) >> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@i915_pm_rps@basic-api.html >> >> * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: >> - shard-dg1: NOTRUN -> [SKIP][119] ([i915#8709]) +7 other tests skip >> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html >> >> * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: >> - shard-dg2: NOTRUN -> [SKIP][120] ([i915#8709]) +11 other tests skip >> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html >> >> * igt@kms_big_fb@4-tiled-16bpp-rotate-270: >> - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +2 other tests skip >> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html >> >> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: >> - shard-mtlp: [PASS][122] -> [FAIL][123] ([i915#5138]) >> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html >> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html >> >> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: >> - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) >> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html >> >> * igt@kms_big_fb@linear-64bpp-rotate-90: >> - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) +1 other test skip >> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html >> >> * igt@kms_big_fb@linear-8bpp-rotate-90: >> - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111614]) +5 other tests skip >> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_big_fb@linear-8bpp-rotate-90.html >> >> * igt@kms_big_fb@y-tiled-64bpp-rotate-90: >> - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip >> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html >> >> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: >> - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +1 other test skip >> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html >> - shard-tglu: [PASS][129] -> [FAIL][130] ([i915#3743]) >> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html >> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html >> >> * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: >> - shard-rkl: NOTRUN -> [SKIP][131] ([fdo#110723]) +1 other test skip >> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html >> >> * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: >> - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +3 other tests skip >> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html >> - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) >> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html >> >> * igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs: >> - shard-rkl: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +9 other tests skip >> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs.html >> >> * igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs: >> - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#5354] / [i915#6095]) +1 other test skip >> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs.html >> >> * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: >> - shard-glk: NOTRUN -> [SKIP][136] ([fdo#109271]) +226 other tests skip >> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk8/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html >> >> * igt@kms_ccs@pipe-c-missing-ccs-buffer-4-tiled-mtl-rc-ccs: >> - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +10 other tests skip >> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_ccs@pipe-c-missing-ccs-buffer-4-tiled-mtl-rc-ccs.html >> >> * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: >> - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5354]) +14 other tests skip >> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html >> >> * igt@kms_chamelium_color@ctm-0-50: >> - shard-mtlp: NOTRUN -> [SKIP][139] ([fdo#111827]) >> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_chamelium_color@ctm-0-50.html >> >> * igt@kms_chamelium_color@ctm-blue-to-red: >> - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#111827]) +1 other test skip >> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_chamelium_color@ctm-blue-to-red.html >> >> * igt@kms_chamelium_color@ctm-negative: >> - shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111827]) >> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_chamelium_color@ctm-negative.html >> >> * igt@kms_chamelium_frames@hdmi-crc-fast: >> - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7828]) +7 other tests skip >> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-fast.html >> - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) >> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-crc-fast.html >> >> * igt@kms_chamelium_frames@hdmi-frame-dump: >> - shard-rkl: NOTRUN -> [SKIP][144] ([i915#7828]) +2 other tests skip >> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_chamelium_frames@hdmi-frame-dump.html >> - shard-dg1: NOTRUN -> [SKIP][145] ([i915#7828]) +1 other test skip >> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_chamelium_frames@hdmi-frame-dump.html >> >> * igt@kms_content_protection@dp-mst-lic-type-0: >> - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3116]) >> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html >> >> * igt@kms_content_protection@type1: >> - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7118]) +2 other tests skip >> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_content_protection@type1.html >> >> * igt@kms_cursor_crc@cursor-onscreen-max-size: >> - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +2 other tests skip >> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html >> >> * igt@kms_cursor_crc@cursor-random-256x85: >> - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8814]) >> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85.html >> >> * igt@kms_cursor_crc@cursor-random-512x170: >> - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3359]) +2 other tests skip >> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html >> >> * igt@kms_cursor_crc@cursor-rapid-movement-512x170: >> - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3359]) >> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html >> - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3359]) >> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html >> >> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: >> - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#4213]) >> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html >> - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) >> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html >> >> * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: >> - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111825]) +5 other tests skip >> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html >> >> * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: >> - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274] / [i915#5354]) +1 other test skip >> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html >> >> * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: >> - shard-dg2: NOTRUN -> [SKIP][157] ([i915#9067]) >> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html >> - shard-rkl: NOTRUN -> [SKIP][158] ([i915#9067]) >> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html >> - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9067]) >> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html >> >> * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: >> - shard-dg2: NOTRUN -> [SKIP][160] ([i915#9833]) >> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html >> - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#9833]) >> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html >> >> * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: >> - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9723]) >> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html >> >> * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: >> - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9227]) >> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html >> >> * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: >> - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3804]) >> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html >> >> * igt@kms_dsc@dsc-fractional-bpp: >> - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3840] / [i915#9688]) >> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html >> >> * igt@kms_feature_discovery@chamelium: >> - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4854]) >> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_feature_discovery@chamelium.html >> >> * igt@kms_feature_discovery@dp-mst: >> - shard-dg2: NOTRUN -> [SKIP][167] ([i915#9337]) >> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html >> - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9337]) >> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_feature_discovery@dp-mst.html >> >> * igt@kms_feature_discovery@psr1: >> - shard-dg2: NOTRUN -> [SKIP][169] ([i915#658]) >> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_feature_discovery@psr1.html >> >> * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: >> - shard-dg2: NOTRUN -> [SKIP][170] ([fdo#109274]) +3 other tests skip >> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html >> - shard-dg1: NOTRUN -> [SKIP][171] ([fdo#111825] / [i915#9934]) >> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html >> >> * igt@kms_flip@flip-vs-fences-interruptible: >> - shard-dg2: NOTRUN -> [SKIP][172] ([i915#8381]) >> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html >> >> * igt@kms_flip@flip-vs-suspend-interruptible@b-vga1: >> - shard-snb: NOTRUN -> [DMESG-WARN][173] ([i915#10007]) >> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html >> >> * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: >> - shard-rkl: NOTRUN -> [SKIP][174] ([i915#2672]) >> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html >> - shard-dg1: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) >> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html >> >> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: >> - shard-dg2: NOTRUN -> [SKIP][176] ([i915#2672]) +4 other tests skip >> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html >> >> * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: >> - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555]) >> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html >> >> * igt@kms_force_connector_basic@force-load-detect: >> - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#109285]) >> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_force_connector_basic@force-load-detect.html >> >> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: >> - shard-snb: [PASS][179] -> [SKIP][180] ([fdo#109271]) +10 other tests skip >> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html >> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html >> >> * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: >> - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3458]) +12 other tests skip >> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html >> >> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: >> - shard-dg2: NOTRUN -> [SKIP][182] ([i915#5354]) +62 other tests skip >> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html >> >> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: >> - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111825] / [i915#1825]) +14 other tests skip >> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html >> - shard-dg1: NOTRUN -> [SKIP][184] ([fdo#111825]) +9 other tests skip >> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html >> >> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: >> - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3023]) +7 other tests skip >> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html >> - shard-dg1: NOTRUN -> [SKIP][186] ([i915#8708]) +1 other test skip >> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html >> >> * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: >> - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3458]) +4 other tests skip >> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html >> >> * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: >> - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8708]) +11 other tests skip >> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html >> >> * igt@kms_hdr@invalid-metadata-sizes: >> - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) +2 other tests skip >> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html >> >> * igt@kms_panel_fitting@atomic-fastset: >> - shard-rkl: NOTRUN -> [SKIP][190] ([i915#6301]) >> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html >> >> * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: >> - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109289]) +5 other tests skip >> [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html >> >> * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: >> - shard-dg1: NOTRUN -> [SKIP][192] ([fdo#109289]) +1 other test skip >> [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html >> >> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: >> - shard-dg2: NOTRUN -> [FAIL][193] ([i915#8292]) >> [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html >> >> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: >> - shard-rkl: NOTRUN -> [FAIL][194] ([i915#8292]) >> [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html >> >> * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: >> - shard-dg1: [PASS][195] -> [FAIL][196] ([i915#8292]) >> [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html >> [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html >> >> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: >> - shard-rkl: NOTRUN -> [SKIP][197] ([i915#9423]) +9 other tests skip >> [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html >> >> * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: >> - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9423]) +7 other tests skip >> [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html >> >> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: >> - shard-rkl: NOTRUN -> [SKIP][199] ([i915#5176] / [i915#9423]) +1 other test skip >> [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html >> >> * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: >> - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5176] / [i915#9423]) +3 other tests skip >> [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html >> >> * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4: >> - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9423]) +3 other tests skip >> [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html >> >> * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: >> - shard-dg1: NOTRUN -> [SKIP][202] ([i915#5235]) +3 other tests skip >> [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html >> >> * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: >> - shard-rkl: NOTRUN -> [SKIP][203] ([i915#5235]) +9 other tests skip >> [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html >> >> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: >> - shard-dg2: NOTRUN -> [SKIP][204] ([i915#5235] / [i915#9423]) +15 other tests skip >> [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html >> >> * igt@kms_pm_backlight@fade: >> - shard-dg1: NOTRUN -> [SKIP][205] ([i915#5354]) >> [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_pm_backlight@fade.html >> >> * igt@kms_pm_rpm@modeset-lpsp: >> - shard-rkl: [PASS][206] -> [SKIP][207] ([i915#9519]) +1 other test skip >> [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html >> [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html >> >> * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: >> - shard-dg2: [PASS][208] -> [SKIP][209] ([i915#9519]) +1 other test skip >> [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html >> [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html >> >> * igt@kms_pm_rpm@pc8-residency: >> - shard-dg2: NOTRUN -> [SKIP][210] ([fdo#109293] / [fdo#109506]) >> [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_pm_rpm@pc8-residency.html >> >> * igt@kms_prime@basic-modeset-hybrid: >> - shard-dg2: NOTRUN -> [SKIP][211] ([i915#6524] / [i915#6805]) >> [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html >> >> * igt@kms_psr2_su@page_flip-nv12: >> - shard-dg2: NOTRUN -> [SKIP][212] ([i915#9683]) +1 other test skip >> [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_psr2_su@page_flip-nv12.html >> >> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: >> - shard-dg2: NOTRUN -> [SKIP][213] ([i915#4235] / [i915#5190]) >> [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html >> >> * igt@kms_scaling_modes@scaling-mode-full-aspect: >> - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3555]) >> [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-full-aspect.html >> >> * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: >> - shard-tglu: [PASS][215] -> [FAIL][216] ([i915#9196]) >> [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html >> [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html >> >> * igt@kms_vrr@negative-basic: >> - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555]) +1 other test skip >> [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@kms_vrr@negative-basic.html >> >> * igt@kms_writeback@writeback-fb-id: >> - shard-glk: NOTRUN -> [SKIP][218] ([fdo#109271] / [i915#2437]) +1 other test skip >> [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk1/igt@kms_writeback@writeback-fb-id.html >> - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2437]) +1 other test skip >> [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@kms_writeback@writeback-fb-id.html >> - shard-rkl: NOTRUN -> [SKIP][220] ([i915#2437]) >> [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_writeback@writeback-fb-id.html >> - shard-dg1: NOTRUN -> [SKIP][221] ([i915#2437]) >> [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html >> >> * igt@kms_writeback@writeback-pixel-formats: >> - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2437]) >> [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@kms_writeback@writeback-pixel-formats.html >> >> * igt@perf@mi-rpc: >> - shard-rkl: NOTRUN -> [SKIP][223] ([i915#2434]) >> [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@perf@mi-rpc.html >> >> * igt@perf_pmu@busy-double-start@vecs1: >> - shard-dg2: NOTRUN -> [FAIL][224] ([i915#4349]) +3 other tests fail >> [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html >> >> * igt@sriov_basic@enable-vfs-bind-unbind-each: >> - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9917]) >> [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@sriov_basic@enable-vfs-bind-unbind-each.html >> - shard-dg2: NOTRUN -> [SKIP][226] ([i915#9917]) >> [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html >> - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9917]) >> [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html >> >> * igt@syncobj_wait@invalid-wait-zero-handles: >> - shard-glk: NOTRUN -> [FAIL][228] ([i915#9779]) >> [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-glk3/igt@syncobj_wait@invalid-wait-zero-handles.html >> >> * igt@v3d/v3d_perfmon@create-single-perfmon: >> - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#2575]) >> [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@v3d/v3d_perfmon@create-single-perfmon.html >> >> * igt@v3d/v3d_perfmon@create-two-perfmon: >> - shard-dg2: NOTRUN -> [SKIP][230] ([i915#2575]) +7 other tests skip >> [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@v3d/v3d_perfmon@create-two-perfmon.html >> >> * igt@v3d/v3d_submit_csd@valid-multisync-submission: >> - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109315]) +5 other tests skip >> [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@v3d/v3d_submit_csd@valid-multisync-submission.html >> - shard-dg1: NOTRUN -> [SKIP][232] ([i915#2575]) +2 other tests skip >> [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@v3d/v3d_submit_csd@valid-multisync-submission.html >> >> * igt@vc4/vc4_mmap@mmap-bad-handle: >> - shard-dg1: NOTRUN -> [SKIP][233] ([i915#7711]) +1 other test skip >> [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-15/igt@vc4/vc4_mmap@mmap-bad-handle.html >> >> * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: >> - shard-dg2: NOTRUN -> [SKIP][234] ([i915#7711]) +6 other tests skip >> [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-2/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html >> >> * igt@vc4/vc4_perfmon@get-values-invalid-perfmon: >> - shard-rkl: NOTRUN -> [SKIP][235] ([i915#7711]) +1 other test skip >> [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html >> >> >> #### Possible fixes #### >> >> * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: >> - shard-dg2: [INCOMPLETE][236] ([i915#7297]) -> [PASS][237] >> [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html >> [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html >> >> * igt@gem_ctx_exec@basic-nohangcheck: >> - shard-rkl: [FAIL][238] ([i915#6268]) -> [PASS][239] >> [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html >> [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html >> - shard-tglu: [FAIL][240] ([i915#6268]) -> [PASS][241] >> [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html >> [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html >> >> * igt@gem_eio@wait-wedge-1us: >> - shard-mtlp: [ABORT][242] -> [PASS][243] >> [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-4/igt@gem_eio@wait-wedge-1us.html >> [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-8/igt@gem_eio@wait-wedge-1us.html >> >> * igt@gem_exec_fair@basic-none-share@rcs0: >> - shard-tglu: [FAIL][244] ([i915#2842]) -> [PASS][245] +1 other test pass >> [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html >> [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html >> >> * igt@gem_exec_fair@basic-pace-solo@rcs0: >> - shard-rkl: [FAIL][246] ([i915#2842]) -> [PASS][247] >> [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html >> [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html >> >> * igt@gem_exec_suspend@basic-s0@smem: >> - shard-dg2: [INCOMPLETE][248] ([i915#9275]) -> [PASS][249] >> [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html >> [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html >> >> * igt@i915_module_load@reload-with-fault-injection: >> - shard-rkl: [ABORT][250] ([i915#9820]) -> [PASS][251] >> [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html >> [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html >> >> * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: >> - shard-dg1: [FAIL][252] ([i915#3591]) -> [PASS][253] >> [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html >> [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html >> >> * igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0: >> - shard-rkl: [INCOMPLETE][254] -> [PASS][255] >> [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html >> [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-5/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html >> >> * igt@i915_pm_rps@reset: >> - shard-snb: [INCOMPLETE][256] ([i915#7790]) -> [PASS][257] >> [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb5/igt@i915_pm_rps@reset.html >> [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb1/igt@i915_pm_rps@reset.html >> >> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: >> - shard-tglu: [FAIL][258] ([i915#3743]) -> [PASS][259] +1 other test pass >> [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html >> [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-tglu-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html >> >> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: >> - shard-snb: [SKIP][260] ([fdo#109271]) -> [PASS][261] +4 other tests pass >> [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html >> [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html >> >> * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: >> - shard-dg2: [FAIL][262] ([i915#6880]) -> [PASS][263] >> [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html >> [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html >> >> * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: >> - shard-rkl: [SKIP][264] ([i915#9519]) -> [PASS][265] >> [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html >> [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html >> >> * igt@kms_pm_rpm@modeset-non-lpsp: >> - shard-dg2: [SKIP][266] ([i915#9519]) -> [PASS][267] +1 other test pass >> [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html >> [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html >> >> * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: >> - shard-mtlp: [FAIL][268] ([i915#9196]) -> [PASS][269] >> [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html >> [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html >> >> >> #### Warnings #### >> >> * igt@gem_create@create-ext-cpu-access-big: >> - shard-dg2: [ABORT][270] ([i915#9846]) -> [INCOMPLETE][271] ([i915#9364]) >> [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html >> [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html >> >> * igt@i915_module_load@reload-with-fault-injection: >> - shard-dg1: [ABORT][272] ([i915#9820]) -> [INCOMPLETE][273] ([i915#9849]) >> [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html >> [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html >> - shard-mtlp: [ABORT][274] ([i915#9820]) -> [ABORT][275] ([i915#9697]) >> [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html >> [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html >> >> * igt@kms_content_protection@atomic-dpms: >> - shard-snb: [SKIP][276] ([fdo#109271]) -> [INCOMPLETE][277] ([i915#8816]) >> [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-snb2/igt@kms_content_protection@atomic-dpms.html >> [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-snb7/igt@kms_content_protection@atomic-dpms.html >> >> * igt@kms_pm_dc@dc9-dpms: >> - shard-rkl: [SKIP][278] ([i915#4281]) -> [SKIP][279] ([i915#3361]) >> [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14092/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html >> [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_128322v1/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html >> >> >> {name}: This element is suppressed. This means it is ignored when computing >> the status of the difference (SUCCESS, WARNING, or FAILURE). >> >> [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 >> [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 >> [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 >> [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 >> [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 >> [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 >> [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 >> [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 >> [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 >> [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 >> [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 >> [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 >> [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 >> [i915#10007]: https://gitlab.freedesktop.org/drm/intel/issues/10007 >> [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 >> [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 >> [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 >> [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 >> [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 >> [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 >> [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 >> [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 >> [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 >> [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 >> [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 >> [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 >> [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 >> [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 >> [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 >> [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 >> [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 >> [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 >> [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 >> [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 >> [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 >> [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 >> [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 >> [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 >> [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 >> [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 >> [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 >> [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 >> [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 >> [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 >> [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 >> [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 >> [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 >> [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 >> [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 >> [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 >> [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 >> [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 >> [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 >> [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 >> [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 >> [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 >> [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 >> [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 >> [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 >> [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 >> [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 >> [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 >> [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 >> [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 >> [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 >> [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 >> [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 >> [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 >> [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 >> [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 >> [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 >> [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 >> [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 >> [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 >> [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 >> [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 >> [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 >> [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 >> [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 >> [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 >> [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 >> [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 >> [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 >> [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293 >> [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 >> [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 >> [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 >> [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 >> [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 >> [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 >> [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 >> [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 >> [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 >> [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 >> [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 >> [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 >> [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 >> [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 >> [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 >> [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 >> [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 >> [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 >> [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 >> [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 >> [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 >> [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 >> [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 >> [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 >> [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 >> [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 >> [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 >> [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 >> [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 >> [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 >> [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 >> >> >> Build changes >> ------------- >> >> * Linux: CI_DRM_14092 -> Patchwork_128322v1 >> >> CI-20190529: 20190529 >> CI_DRM_14092: f4cec0fbca99cb2517f10790abcecdb9fe7eb4a5 @ git://anongit.freedesktop.org/gfx-ci/linux >> IGT_7661: 17df2eb8cded19c629cacee8a369629b56976068 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git >> Patchwork_128322v1: f4cec0fbca99cb2517f10790abcecdb9fe7eb4a5 @ 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_128322v1/index.html -- Regards, Haridhar Kalvala ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-01-19 9:45 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-08 12:27 [PATCH v1 0/3] Extend ARL support Haridhar Kalvala 2024-01-08 12:27 ` [PATCH v1 1/3] drm/i915: Add additional ARL PCI IDs Haridhar Kalvala 2024-01-18 23:01 ` Matt Atwood 2024-01-08 12:27 ` [PATCH v1 2/3] drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+ Haridhar Kalvala 2024-01-08 14:49 ` Matt Roper 2024-01-08 12:27 ` [PATCH v1 3/3] drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74 Haridhar Kalvala 2024-01-18 23:22 ` Matt Atwood 2024-01-08 13:33 ` ✗ Fi.CI.SPARSE: warning for Extend ARL support Patchwork 2024-01-08 13:47 ` ✓ Fi.CI.BAT: success " Patchwork 2024-01-08 15:37 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-18 23:33 ` Matt Roper 2024-01-19 9:44 ` Kalvala, Haridhar
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox