* [Intel-gfx] [PATCH 1/2] drm/i915/gt: Do not use stolen on MTL
@ 2023-07-11 22:06 Nirmoy Das
2023-07-11 22:06 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: " Nirmoy Das
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Nirmoy Das @ 2023-07-11 22:06 UTC (permalink / raw)
To: intel-gfx; +Cc: Andrzej Hajda, Nirmoy Das
Use smem on MTL due to a HW bug in MTL that prevents
reading from stolen memory using LMEM BAR.
Cc: Oak Zeng <oak.zeng@intel.com>
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Andi Shyti <andi.shyti@linux.intel.com>
Cc: Andrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
Reviewed-by: Oak Zeng <oak.zeng@intel.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/gt/intel_gt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_gt.c b/drivers/gpu/drm/i915/gt/intel_gt.c
index 33a61046ba58..9f64d61dd5fc 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt.c
@@ -466,7 +466,7 @@ static int intel_gt_init_scratch(struct intel_gt *gt, unsigned int size)
obj = i915_gem_object_create_lmem(i915, size,
I915_BO_ALLOC_VOLATILE |
I915_BO_ALLOC_GPU_ONLY);
- if (IS_ERR(obj))
+ if (IS_ERR(obj) && !IS_METEORLAKE(i915)) /* Wa_22018444074 */
obj = i915_gem_object_create_stolen(i915, size);
if (IS_ERR(obj))
obj = i915_gem_object_create_internal(i915, size);
--
2.39.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not use stolen on MTL 2023-07-11 22:06 [Intel-gfx] [PATCH 1/2] drm/i915/gt: Do not use stolen on MTL Nirmoy Das @ 2023-07-11 22:06 ` Nirmoy Das 2023-07-13 14:45 ` Nirmoy Das 2023-07-11 23:20 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/2] drm/i915/gt: " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 8+ messages in thread From: Nirmoy Das @ 2023-07-11 22:06 UTC (permalink / raw) To: intel-gfx; +Cc: Andrzej Hajda, Nirmoy Das Use smem on MTL due to a HW bug in MTL that prevents reading from stolen memory using LMEM BAR. v2: improve stolen skip detection(Andrzej) Cc: Oak Zeng <oak.zeng@intel.com> Cc: Jani Nikula <jani.nikula@linux.intel.com> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Andi Shyti <andi.shyti@linux.intel.com> Cc: Andrzej Hajda <andrzej.hajda@intel.com> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> Reviewed-by: Oak Zeng <oak.zeng@intel.com> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_fbdev.c | 5 ++++- drivers/gpu/drm/i915/display/intel_overlay.c | 5 +++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c index 1cc0ddc6a310..e019bbcd474e 100644 --- a/drivers/gpu/drm/i915/display/intel_fbdev.c +++ b/drivers/gpu/drm/i915/display/intel_fbdev.c @@ -187,8 +187,11 @@ static int intelfb_alloc(struct drm_fb_helper *helper, * If the FB is too big, just don't use it since fbdev is not very * important and we should probably use that space with FBC or other * features. + * + * Also skip stolen on MTL as Wa_22018444074 mitigation. */ - if (size * 2 < dev_priv->dsm.usable_size) + if (size * 2 < dev_priv->dsm.usable_size || + !(IS_METEORLAKE(dev_priv))) obj = i915_gem_object_create_stolen(dev_priv, size); if (IS_ERR(obj)) obj = i915_gem_object_create_shmem(dev_priv, size); diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c b/drivers/gpu/drm/i915/display/intel_overlay.c index d6fe2bbabe55..09c1aa1427ad 100644 --- a/drivers/gpu/drm/i915/display/intel_overlay.c +++ b/drivers/gpu/drm/i915/display/intel_overlay.c @@ -1348,11 +1348,12 @@ int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data, static int get_registers(struct intel_overlay *overlay, bool use_phys) { struct drm_i915_private *i915 = overlay->i915; - struct drm_i915_gem_object *obj; + struct drm_i915_gem_object *obj = ERR_PTR(-ENODEV); struct i915_vma *vma; int err; - obj = i915_gem_object_create_stolen(i915, PAGE_SIZE); + if (!IS_METEORLAKE(i915)) /* Wa_22018444074 */ + obj = i915_gem_object_create_stolen(i915, PAGE_SIZE); if (IS_ERR(obj)) obj = i915_gem_object_create_internal(i915, PAGE_SIZE); if (IS_ERR(obj)) -- 2.39.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not use stolen on MTL 2023-07-11 22:06 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: " Nirmoy Das @ 2023-07-13 14:45 ` Nirmoy Das 2023-07-13 14:56 ` Andrzej Hajda 0 siblings, 1 reply; 8+ messages in thread From: Nirmoy Das @ 2023-07-13 14:45 UTC (permalink / raw) To: Nirmoy Das, intel-gfx; +Cc: Andrzej Hajda On 7/12/2023 12:06 AM, Nirmoy Das wrote: > Use smem on MTL due to a HW bug in MTL that prevents > reading from stolen memory using LMEM BAR. > > v2: improve stolen skip detection(Andrzej) > > Cc: Oak Zeng <oak.zeng@intel.com> > Cc: Jani Nikula <jani.nikula@linux.intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Andi Shyti <andi.shyti@linux.intel.com> > Cc: Andrzej Hajda <andrzej.hajda@intel.com> > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > Reviewed-by: Oak Zeng <oak.zeng@intel.com> > Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> > --- > drivers/gpu/drm/i915/display/intel_fbdev.c | 5 ++++- > drivers/gpu/drm/i915/display/intel_overlay.c | 5 +++-- > 2 files changed, 7 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c > index 1cc0ddc6a310..e019bbcd474e 100644 > --- a/drivers/gpu/drm/i915/display/intel_fbdev.c > +++ b/drivers/gpu/drm/i915/display/intel_fbdev.c > @@ -187,8 +187,11 @@ static int intelfb_alloc(struct drm_fb_helper *helper, > * If the FB is too big, just don't use it since fbdev is not very > * important and we should probably use that space with FBC or other > * features. > + * > + * Also skip stolen on MTL as Wa_22018444074 mitigation. > */ > - if (size * 2 < dev_priv->dsm.usable_size) > + if (size * 2 < dev_priv->dsm.usable_size || > + !(IS_METEORLAKE(dev_priv))) Just realized this is wrong, stolen will be picked on non-mtl even if the stolen usable size is < 2*size which is not expected. I will keep this as v1 Regards, Nirmoy > obj = i915_gem_object_create_stolen(dev_priv, size); > if (IS_ERR(obj)) > obj = i915_gem_object_create_shmem(dev_priv, size); > diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c b/drivers/gpu/drm/i915/display/intel_overlay.c > index d6fe2bbabe55..09c1aa1427ad 100644 > --- a/drivers/gpu/drm/i915/display/intel_overlay.c > +++ b/drivers/gpu/drm/i915/display/intel_overlay.c > @@ -1348,11 +1348,12 @@ int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data, > static int get_registers(struct intel_overlay *overlay, bool use_phys) > { > struct drm_i915_private *i915 = overlay->i915; > - struct drm_i915_gem_object *obj; > + struct drm_i915_gem_object *obj = ERR_PTR(-ENODEV); > struct i915_vma *vma; > int err; > > - obj = i915_gem_object_create_stolen(i915, PAGE_SIZE); > + if (!IS_METEORLAKE(i915)) /* Wa_22018444074 */ > + obj = i915_gem_object_create_stolen(i915, PAGE_SIZE); > if (IS_ERR(obj)) > obj = i915_gem_object_create_internal(i915, PAGE_SIZE); > if (IS_ERR(obj)) ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not use stolen on MTL 2023-07-13 14:45 ` Nirmoy Das @ 2023-07-13 14:56 ` Andrzej Hajda 2023-07-13 15:02 ` Nirmoy Das 0 siblings, 1 reply; 8+ messages in thread From: Andrzej Hajda @ 2023-07-13 14:56 UTC (permalink / raw) To: Nirmoy Das, Nirmoy Das, intel-gfx On 13.07.2023 16:45, Nirmoy Das wrote: > > On 7/12/2023 12:06 AM, Nirmoy Das wrote: >> Use smem on MTL due to a HW bug in MTL that prevents >> reading from stolen memory using LMEM BAR. >> >> v2: improve stolen skip detection(Andrzej) >> >> Cc: Oak Zeng <oak.zeng@intel.com> >> Cc: Jani Nikula <jani.nikula@linux.intel.com> >> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> >> Cc: Andi Shyti <andi.shyti@linux.intel.com> >> Cc: Andrzej Hajda <andrzej.hajda@intel.com> >> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> >> Reviewed-by: Oak Zeng <oak.zeng@intel.com> >> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> >> Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> >> --- >> drivers/gpu/drm/i915/display/intel_fbdev.c | 5 ++++- >> drivers/gpu/drm/i915/display/intel_overlay.c | 5 +++-- >> 2 files changed, 7 insertions(+), 3 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c >> b/drivers/gpu/drm/i915/display/intel_fbdev.c >> index 1cc0ddc6a310..e019bbcd474e 100644 >> --- a/drivers/gpu/drm/i915/display/intel_fbdev.c >> +++ b/drivers/gpu/drm/i915/display/intel_fbdev.c >> @@ -187,8 +187,11 @@ static int intelfb_alloc(struct drm_fb_helper >> *helper, >> * If the FB is too big, just don't use it since fbdev is >> not very >> * important and we should probably use that space with FBC >> or other >> * features. >> + * >> + * Also skip stolen on MTL as Wa_22018444074 mitigation. >> */ >> - if (size * 2 < dev_priv->dsm.usable_size) >> + if (size * 2 < dev_priv->dsm.usable_size || >> + !(IS_METEORLAKE(dev_priv))) > > Just realized this is wrong, stolen will be picked on non-mtl even if > the stolen usable size is < 2*size which is not expected. if (!(IS_METEORLAKE(dev_priv)) && size * 2 < dev_priv->dsm.usable_size) ? Regards Andrzej > > I will keep this as v1 > > > Regards, > > Nirmoy > >> obj = i915_gem_object_create_stolen(dev_priv, size); >> if (IS_ERR(obj)) >> obj = i915_gem_object_create_shmem(dev_priv, size); >> diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c >> b/drivers/gpu/drm/i915/display/intel_overlay.c >> index d6fe2bbabe55..09c1aa1427ad 100644 >> --- a/drivers/gpu/drm/i915/display/intel_overlay.c >> +++ b/drivers/gpu/drm/i915/display/intel_overlay.c >> @@ -1348,11 +1348,12 @@ int intel_overlay_attrs_ioctl(struct >> drm_device *dev, void *data, >> static int get_registers(struct intel_overlay *overlay, bool use_phys) >> { >> struct drm_i915_private *i915 = overlay->i915; >> - struct drm_i915_gem_object *obj; >> + struct drm_i915_gem_object *obj = ERR_PTR(-ENODEV); >> struct i915_vma *vma; >> int err; >> - obj = i915_gem_object_create_stolen(i915, PAGE_SIZE); >> + if (!IS_METEORLAKE(i915)) /* Wa_22018444074 */ >> + obj = i915_gem_object_create_stolen(i915, PAGE_SIZE); >> if (IS_ERR(obj)) >> obj = i915_gem_object_create_internal(i915, PAGE_SIZE); >> if (IS_ERR(obj)) ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH v2 2/2] drm/i915/display: Do not use stolen on MTL 2023-07-13 14:56 ` Andrzej Hajda @ 2023-07-13 15:02 ` Nirmoy Das 0 siblings, 0 replies; 8+ messages in thread From: Nirmoy Das @ 2023-07-13 15:02 UTC (permalink / raw) To: Andrzej Hajda, Nirmoy Das, intel-gfx On 7/13/2023 4:56 PM, Andrzej Hajda wrote: > > > On 13.07.2023 16:45, Nirmoy Das wrote: >> >> On 7/12/2023 12:06 AM, Nirmoy Das wrote: >>> Use smem on MTL due to a HW bug in MTL that prevents >>> reading from stolen memory using LMEM BAR. >>> >>> v2: improve stolen skip detection(Andrzej) >>> >>> Cc: Oak Zeng <oak.zeng@intel.com> >>> Cc: Jani Nikula <jani.nikula@linux.intel.com> >>> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> >>> Cc: Andi Shyti <andi.shyti@linux.intel.com> >>> Cc: Andrzej Hajda <andrzej.hajda@intel.com> >>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> >>> Reviewed-by: Oak Zeng <oak.zeng@intel.com> >>> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> >>> Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> >>> --- >>> drivers/gpu/drm/i915/display/intel_fbdev.c | 5 ++++- >>> drivers/gpu/drm/i915/display/intel_overlay.c | 5 +++-- >>> 2 files changed, 7 insertions(+), 3 deletions(-) >>> >>> diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c >>> b/drivers/gpu/drm/i915/display/intel_fbdev.c >>> index 1cc0ddc6a310..e019bbcd474e 100644 >>> --- a/drivers/gpu/drm/i915/display/intel_fbdev.c >>> +++ b/drivers/gpu/drm/i915/display/intel_fbdev.c >>> @@ -187,8 +187,11 @@ static int intelfb_alloc(struct drm_fb_helper >>> *helper, >>> * If the FB is too big, just don't use it since fbdev is >>> not very >>> * important and we should probably use that space with >>> FBC or other >>> * features. >>> + * >>> + * Also skip stolen on MTL as Wa_22018444074 mitigation. >>> */ >>> - if (size * 2 < dev_priv->dsm.usable_size) >>> + if (size * 2 < dev_priv->dsm.usable_size || >>> + !(IS_METEORLAKE(dev_priv))) >> >> Just realized this is wrong, stolen will be picked on non-mtl even >> if the stolen usable size is < 2*size which is not expected. > > if (!(IS_METEORLAKE(dev_priv)) && size * 2 < dev_priv->dsm.usable_size) ? that should work, resent with that. Thanks, Nirmoy > > Regards > Andrzej > >> >> I will keep this as v1 >> >> >> Regards, >> >> Nirmoy >> >>> obj = i915_gem_object_create_stolen(dev_priv, size); >>> if (IS_ERR(obj)) >>> obj = i915_gem_object_create_shmem(dev_priv, size); >>> diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c >>> b/drivers/gpu/drm/i915/display/intel_overlay.c >>> index d6fe2bbabe55..09c1aa1427ad 100644 >>> --- a/drivers/gpu/drm/i915/display/intel_overlay.c >>> +++ b/drivers/gpu/drm/i915/display/intel_overlay.c >>> @@ -1348,11 +1348,12 @@ int intel_overlay_attrs_ioctl(struct >>> drm_device *dev, void *data, >>> static int get_registers(struct intel_overlay *overlay, bool >>> use_phys) >>> { >>> struct drm_i915_private *i915 = overlay->i915; >>> - struct drm_i915_gem_object *obj; >>> + struct drm_i915_gem_object *obj = ERR_PTR(-ENODEV); >>> struct i915_vma *vma; >>> int err; >>> - obj = i915_gem_object_create_stolen(i915, PAGE_SIZE); >>> + if (!IS_METEORLAKE(i915)) /* Wa_22018444074 */ >>> + obj = i915_gem_object_create_stolen(i915, PAGE_SIZE); >>> if (IS_ERR(obj)) >>> obj = i915_gem_object_create_internal(i915, PAGE_SIZE); >>> if (IS_ERR(obj)) > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/2] drm/i915/gt: Do not use stolen on MTL 2023-07-11 22:06 [Intel-gfx] [PATCH 1/2] drm/i915/gt: Do not use stolen on MTL Nirmoy Das 2023-07-11 22:06 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: " Nirmoy Das @ 2023-07-11 23:20 ` Patchwork 2023-07-11 23:29 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-07-12 2:04 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-07-11 23:20 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx == Series Details == Series: series starting with [1/2] drm/i915/gt: Do not use stolen on MTL URL : https://patchwork.freedesktop.org/series/120579/ 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:117:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:148:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:150:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:154:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:156:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:156:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:174:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:176:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:180:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:182:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:182:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:186:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:188:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:192:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:195:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:195:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:237:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:239:9: 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' +drivers/gpu/drm/i915/gt/intel_gt.h:112:16: 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 +./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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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:14: warning: unreplaced symbol 'old' +./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: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: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: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: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:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915/gt: Do not use stolen on MTL 2023-07-11 22:06 [Intel-gfx] [PATCH 1/2] drm/i915/gt: Do not use stolen on MTL Nirmoy Das 2023-07-11 22:06 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: " Nirmoy Das 2023-07-11 23:20 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/2] drm/i915/gt: " Patchwork @ 2023-07-11 23:29 ` Patchwork 2023-07-12 2:04 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-07-11 23:29 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 7760 bytes --] == Series Details == Series: series starting with [1/2] drm/i915/gt: Do not use stolen on MTL URL : https://patchwork.freedesktop.org/series/120579/ State : success == Summary == CI Bug Log - changes from CI_DRM_13372 -> Patchwork_120579v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_120579v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@requests: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#8497]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-mtlp-8/igt@i915_selftest@live@requests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-2: [PASS][3] -> [ABORT][4] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-rpls-2/igt@i915_selftest@live@reset.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-mtlp-8: [PASS][5] -> [DMESG-WARN][6] ([i915#6367]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-mtlp-8/igt@i915_selftest@live@slpc.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-mtlp-8/igt@i915_selftest@live@slpc.html - bat-rpls-1: NOTRUN -> [DMESG-WARN][7] ([i915#6367]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: NOTRUN -> [ABORT][8] ([i915#6687] / [i915#7978] / [i915#8668]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#1845] / [i915#5354]) +3 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@cursor_plane_move: - bat-rplp-1: NOTRUN -> [ABORT][10] ([i915#8434] / [i915#8668]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-rplp-1/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: NOTRUN -> [SKIP][11] ([i915#1072]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-rplp-1/igt@kms_psr@primary_page_flip.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-cfl-8700k: [FAIL][12] ([i915#7940]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-tgl-1115g4: [FAIL][14] ([i915#7940]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-6: [DMESG-FAIL][16] ([i915#7059]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][18] ([i915#4983] / [i915#7461] / [i915#7981] / [i915#8347] / [i915#8384]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-rpls-1/igt@i915_selftest@live@reset.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [DMESG-WARN][20] ([i915#6367]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-mtlp-6/igt@i915_selftest@live@slpc.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-mtlp-6/igt@i915_selftest@live@slpc.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][22] ([i915#8442] / [i915#8668]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [DMESG-WARN][24] ([i915#4423]) -> [ABORT][25] ([i915#4423]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/bat-adlp-11/igt@i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_pm_rpm@basic-pci-d3-state: - fi-skl-guc: [FAIL][26] ([i915#7940]) -> [FAIL][27] ([i915#7691]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * Linux: CI_DRM_13372 -> Patchwork_120579v1 CI-20190529: 20190529 CI_DRM_13372: 01c4678ab6c623c621a1dea438133e39711291d4 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7380: 8e65f12de2fd52c05dc48fdbcb8cfe86f6de1a75 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_120579v1: 01c4678ab6c623c621a1dea438133e39711291d4 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits ed51a3c7dec6 drm/i915/display: Do not use stolen on MTL 8e0fe1fad4a2 drm/i915/gt: Do not use stolen on MTL == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/index.html [-- Attachment #2: Type: text/html, Size: 9408 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [1/2] drm/i915/gt: Do not use stolen on MTL 2023-07-11 22:06 [Intel-gfx] [PATCH 1/2] drm/i915/gt: Do not use stolen on MTL Nirmoy Das ` (2 preceding siblings ...) 2023-07-11 23:29 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-07-12 2:04 ` Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-07-12 2:04 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 51836 bytes --] == Series Details == Series: series starting with [1/2] drm/i915/gt: Do not use stolen on MTL URL : https://patchwork.freedesktop.org/series/120579/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13372_full -> Patchwork_120579v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_120579v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_120579v1_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_120579v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_create@hog-create@smem0: - shard-snb: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-snb5/igt@gem_create@hog-create@smem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-snb7/igt@gem_create@hog-create@smem0.html Known issues ------------ Here are the changes found in Patchwork_120579v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][3] ([i915#7701]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-3/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@drm_fdinfo@virtual-busy-hang.html * igt@feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#4854]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@feature_discovery@chamelium.html * igt@gem_barrier_race@remote-request@rcs0: - shard-apl: [PASS][7] -> [ABORT][8] ([i915#7461] / [i915#8211] / [i915#8234]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl2/igt@gem_barrier_race@remote-request@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-apl2/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][9] ([i915#7697]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-set-pat: - shard-snb: NOTRUN -> [FAIL][10] ([i915#8621]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-snb7/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: [PASS][11] -> [ABORT][12] ([i915#180]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-apl4/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglu: NOTRUN -> [SKIP][13] ([fdo#109314]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@legacy-engines-mixed: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#1099]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed.html * igt@gem_ctx_persistence@smoketest: - shard-mtlp: [PASS][15] -> [FAIL][16] ([i915#8663]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-3/igt@gem_ctx_persistence@smoketest.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-2/igt@gem_ctx_persistence@smoketest.html * igt@gem_eio@kms: - shard-snb: [PASS][17] -> [FAIL][18] ([i915#8764]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-snb5/igt@gem_eio@kms.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-snb2/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#4771]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4473] / [i915#4771]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-6/igt@gem_exec_fair@basic-none.html - shard-dg2: NOTRUN -> [SKIP][21] ([i915#3539] / [i915#4852]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][22] -> [FAIL][23] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][24] ([fdo#112283]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#3281]) +3 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_whisper@basic-normal: - shard-mtlp: [PASS][26] -> [FAIL][27] ([i915#6363]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-1/igt@gem_exec_whisper@basic-normal.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-1/igt@gem_exec_whisper@basic-normal.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4860]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#4613]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][30] -> [TIMEOUT][31] ([i915#5493]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4083]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@gem_mmap_wc@close.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3282]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4270]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-6/igt@gem_pxp@create-regular-buffer.html - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4270]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4270]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4079]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-7/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#3297]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen7_exec_parse@basic-allowed: - shard-mtlp: NOTRUN -> [SKIP][39] ([fdo#109289]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-7/igt@gen7_exec_parse@basic-allowed.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][40] -> [ABORT][41] ([i915#5566]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl1/igt@gen9_exec_parse@allowed-single.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#6227]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@i915_module_load@load.html * igt@i915_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#658]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#1937]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [FAIL][45] ([i915#7940]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@gem-idle: - shard-tglu: [PASS][46] -> [FAIL][47] ([i915#7940]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-8/igt@i915_pm_rpm@gem-idle.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-2/igt@i915_pm_rpm@gem-idle.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][48] -> [SKIP][49] ([i915#1397]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: [PASS][50] -> [SKIP][51] ([i915#1397]) +2 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@i915_pm_rpm@pm-tiling.html * igt@i915_selftest@live@slpc: - shard-mtlp: [PASS][53] -> [DMESG-WARN][54] ([i915#6367]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-2/igt@i915_selftest@live@slpc.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-3/igt@i915_selftest@live@slpc.html * igt@i915_suspend@forcewake: - shard-dg2: [PASS][55] -> [FAIL][56] ([fdo#103375] / [i915#6121]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-5/igt@i915_suspend@forcewake.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4212]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [PASS][58] -> [FAIL][59] ([i915#2521]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: [PASS][60] -> [FAIL][61] ([i915#3743]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][62] ([fdo#111615] / [i915#5286]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][63] ([fdo#111614]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4538] / [i915#5190]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][66] ([fdo#111615]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3689] / [i915#3886] / [i915#5354]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][69] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-glk: NOTRUN -> [SKIP][71] ([fdo#109271]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-glk6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#5354] / [i915#6095]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3689] / [i915#5354]) +6 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#6095]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-7/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-a-dp-2: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4087] / [i915#7213]) +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-12/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#7828]) +2 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-6/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#7828]) +2 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8063]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-7/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@uevent: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#6944] / [i915#7116] / [i915#7118]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3359]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][81] ([fdo#109279] / [i915#3359]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3359]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][83] ([fdo#109274]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [PASS][84] -> [FAIL][85] ([i915#8248]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#109274] / [i915#5354]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-tglu: NOTRUN -> [SKIP][87] ([fdo#109274] / [fdo#111767]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3804]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3555] / [i915#3840]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#3469]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4881]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][92] ([fdo#109274]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][93] ([fdo#109274] / [i915#3637]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-glk: [PASS][94] -> [FAIL][95] ([i915#79]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#2587] / [i915#2672]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2672]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#2672]) +2 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][99] -> [FAIL][100] ([i915#6880]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#8708]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3458]) +2 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5354]) +11 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#109280]) +4 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-snb: NOTRUN -> [SKIP][105] ([fdo#109271]) +91 similar issues [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-stridechange: - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#110189]) +4 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#8708]) +6 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3555] / [i915#8228]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-dg2: NOTRUN -> [SKIP][109] ([fdo#109289]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#5176]) +5 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#5176]) +7 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#5235]) +15 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#5235]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#5235]) +3 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_psr@basic: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#1072]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_psr@basic.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4235]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4235]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#8623]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#8623]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#2437]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][122] -> [FAIL][123] ([i915#7484]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#8807]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-3/igt@perf_pmu@event-wait@rcs0.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3291] / [i915#3708]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@prime_vgem@basic-read.html * igt@v3d/v3d_get_param@get-bad-param: - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#109315] / [i915#2575]) +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@v3d/v3d_get_param@get-bad-param.html * igt@v3d/v3d_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#2575]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-7/igt@v3d/v3d_perfmon@create-perfmon-exceed.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#2575]) +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@vc4/vc4_mmap@mmap-bo: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#2575]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@destroy-invalid-perfmon: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7711]) +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-5/igt@vc4/vc4_perfmon@destroy-invalid-perfmon.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7711]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-6/igt@vc4/vc4_perfmon@destroy-invalid-perfmon.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][132] ([i915#7742]) -> [PASS][133] +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_barrier_race@remote-request@rcs0: - shard-glk: [ABORT][134] ([i915#7461] / [i915#8190]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-glk9/igt@gem_barrier_race@remote-request@rcs0.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-glk6/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][136] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-10/igt@gem_eio@hibernate.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-glk: [FAIL][138] ([i915#8764]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-glk1/igt@gem_eio@kms.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-glk2/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - {shard-dg1}: [FAIL][140] ([i915#5784]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-19/igt@gem_eio@reset-stress.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_await@wide-contexts: - shard-dg2: [TIMEOUT][142] ([i915#5892]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@gem_exec_await@wide-contexts.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][144] ([i915#2842]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [FAIL][146] ([i915#2842]) -> [PASS][147] +1 similar issue [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-4/igt@gem_exec_fair@basic-none@vecs0.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglu: [FAIL][148] ([i915#2842]) -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-2/igt@gem_exec_fair@basic-throttle@rcs0.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [TIMEOUT][150] ([i915#8628]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][152] ([i915#1397]) -> [PASS][153] +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-rkl-6/igt@i915_pm_rpm@dpms-lpsp.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@gem-execbuf@smem0: - shard-tglu: [FAIL][154] ([i915#7940]) -> [PASS][155] +1 similar issue [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-10/igt@i915_pm_rpm@gem-execbuf@smem0.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf@smem0.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][156] ([i915#8717]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-2/igt@i915_pm_rpm@i2c.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-1/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp-stress: - {shard-dg1}: [SKIP][158] ([i915#1397]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-16/igt@i915_pm_rpm@modeset-lpsp-stress.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][160] ([i915#1397]) -> [PASS][161] +2 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend-modeset: - {shard-dg1}: [FAIL][162] ([i915#7940]) -> [PASS][163] +1 similar issue [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-16/igt@i915_pm_rpm@system-suspend-modeset.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg1-16/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_selftest@perf@request: - shard-mtlp: [DMESG-FAIL][164] ([i915#8573]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-1/igt@i915_selftest@perf@request.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-4/igt@i915_selftest@perf@request.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][166] ([i915#5138]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][168] ([i915#3743]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][170] ([i915#2346]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-mtlp: [FAIL][172] ([i915#79]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][174] ([i915#6880]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - {shard-dg1}: [DMESG-WARN][176] -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@syncobj_timeline@reset-signaled: - shard-dg2: [TIMEOUT][178] -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@syncobj_timeline@reset-signaled.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@syncobj_timeline@reset-signaled.html * igt@sysfs_heartbeat_interval@nopreempt@rcs0: - shard-mtlp: [FAIL][180] ([i915#6015]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@rcs0.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-6/igt@sysfs_heartbeat_interval@nopreempt@rcs0.html #### Warnings #### * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg2: [TIMEOUT][182] -> [SKIP][183] ([i915#3281]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@gem_exec_reloc@basic-write-cpu-active.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@deep@vcs1: - shard-mtlp: [FAIL][184] ([i915#8606]) -> [FAIL][185] ([i915#8545]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-6/igt@gem_exec_schedule@deep@vcs1.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-8/igt@gem_exec_schedule@deep@vcs1.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [WARN][186] ([i915#2681]) -> [FAIL][187] ([i915#2681] / [i915#3591]) +1 similar issue [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2: [TIMEOUT][188] -> [SKIP][189] ([i915#7828]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][190] ([i915#7118]) -> [SKIP][191] ([i915#7118] / [i915#7162]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-dg2-6/igt@kms_content_protection@type1.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-dg2-11/igt@kms_content_protection@type1.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [ABORT][192] ([i915#8521]) -> [TIMEOUT][193] ([i915#6950]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13372/shard-mtlp-5/igt@sysfs_timeslice_duration@timeout@vecs0.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120579v1/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [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#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [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#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [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#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [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#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 [i915#8606]: https://gitlab.freedesktop.org/drm/intel/issues/8606 [i915#8621]: https://gitlab.freedesktop.org/drm/intel/issues/8621 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8663]: https://gitlab.freedesktop.org/drm/intel/issues/8663 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8764]: https://gitlab.freedesktop.org/drm/intel/issues/8764 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 Build changes ------------- * Linux: CI_DRM_13372 -> Patchwork_120579v1 CI-20190529: 20190529 CI_DRM_13372: 01c4678ab6c623c621a1dea438133e39711291d4 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7380: 8e65f12de2fd52c05dc48fdbcb8cfe86f6de1a75 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_120579v1: 01c4678ab6c623c621a1dea438133e39711291d4 @ 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_120579v1/index.html [-- Attachment #2: Type: text/html, Size: 59960 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-07-13 15:03 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-11 22:06 [Intel-gfx] [PATCH 1/2] drm/i915/gt: Do not use stolen on MTL Nirmoy Das 2023-07-11 22:06 ` [Intel-gfx] [PATCH v2 2/2] drm/i915/display: " Nirmoy Das 2023-07-13 14:45 ` Nirmoy Das 2023-07-13 14:56 ` Andrzej Hajda 2023-07-13 15:02 ` Nirmoy Das 2023-07-11 23:20 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/2] drm/i915/gt: " Patchwork 2023-07-11 23:29 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-07-12 2:04 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox