* [Intel-gfx] [PATCH 0/3] drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON
@ 2023-09-14 9:34 Jani Nikula
2023-09-14 9:34 ` [Intel-gfx] [PATCH 1/3] drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() Jani Nikula
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Jani Nikula @ 2023-09-14 9:34 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
The display code has almost no uses of GEM_BUG_ON/GEM_WARN_ON. Remove
the last ones to be clean of them.
Jani Nikula (3):
drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON()
drm/i915/fb: replace GEM_WARN_ON() with drm_WARN_ON()
drm/i915/dpt: replace GEM_BUG_ON() with drm_WARN_ON()
drivers/gpu/drm/i915/display/intel_dpt.c | 2 +-
drivers/gpu/drm/i915/display/intel_fb_pin.c | 3 ++-
drivers/gpu/drm/i915/display/intel_fbc.c | 14 ++++++++------
3 files changed, 11 insertions(+), 8 deletions(-)
--
2.39.2
^ permalink raw reply [flat|nested] 11+ messages in thread* [Intel-gfx] [PATCH 1/3] drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() 2023-09-14 9:34 [Intel-gfx] [PATCH 0/3] drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Jani Nikula @ 2023-09-14 9:34 ` Jani Nikula 2023-09-14 12:40 ` Rodrigo Vivi 2023-09-14 9:34 ` [Intel-gfx] [PATCH 2/3] drm/i915/fb: replace GEM_WARN_ON() with drm_WARN_ON() Jani Nikula ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Jani Nikula @ 2023-09-14 9:34 UTC (permalink / raw) To: intel-gfx; +Cc: jani.nikula Avoid using GEM_BUG_ON() in display code. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_fbc.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c index 817e5784660b..1cb9eec29640 100644 --- a/drivers/gpu/drm/i915/display/intel_fbc.c +++ b/drivers/gpu/drm/i915/display/intel_fbc.c @@ -333,12 +333,14 @@ static void i8xx_fbc_program_cfb(struct intel_fbc *fbc) { struct drm_i915_private *i915 = fbc->i915; - GEM_BUG_ON(range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), - i915_gem_stolen_node_offset(&fbc->compressed_fb), - U32_MAX)); - GEM_BUG_ON(range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), - i915_gem_stolen_node_offset(&fbc->compressed_llb), - U32_MAX)); + drm_WARN_ON(&i915->drm, + range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), + i915_gem_stolen_node_offset(&fbc->compressed_fb), + U32_MAX)); + drm_WARN_ON(&i915->drm, + range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), + i915_gem_stolen_node_offset(&fbc->compressed_llb), + U32_MAX)); intel_de_write(i915, FBC_CFB_BASE, i915_gem_stolen_node_address(i915, &fbc->compressed_fb)); intel_de_write(i915, FBC_LL_BASE, -- 2.39.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] [PATCH 1/3] drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() 2023-09-14 9:34 ` [Intel-gfx] [PATCH 1/3] drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() Jani Nikula @ 2023-09-14 12:40 ` Rodrigo Vivi 2023-09-15 15:28 ` Jani Nikula 0 siblings, 1 reply; 11+ messages in thread From: Rodrigo Vivi @ 2023-09-14 12:40 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Thu, Sep 14, 2023 at 12:34:57PM +0300, Jani Nikula wrote: > Avoid using GEM_BUG_ON() in display code. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > drivers/gpu/drm/i915/display/intel_fbc.c | 14 ++++++++------ > 1 file changed, 8 insertions(+), 6 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c > index 817e5784660b..1cb9eec29640 100644 > --- a/drivers/gpu/drm/i915/display/intel_fbc.c > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c > @@ -333,12 +333,14 @@ static void i8xx_fbc_program_cfb(struct intel_fbc *fbc) > { > struct drm_i915_private *i915 = fbc->i915; > > - GEM_BUG_ON(range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), > - i915_gem_stolen_node_offset(&fbc->compressed_fb), > - U32_MAX)); > - GEM_BUG_ON(range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), > - i915_gem_stolen_node_offset(&fbc->compressed_llb), > - U32_MAX)); > + drm_WARN_ON(&i915->drm, > + range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), > + i915_gem_stolen_node_offset(&fbc->compressed_fb), > + U32_MAX)); > + drm_WARN_ON(&i915->drm, > + range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), > + i915_gem_stolen_node_offset(&fbc->compressed_llb), > + U32_MAX)); > intel_de_write(i915, FBC_CFB_BASE, > i915_gem_stolen_node_address(i915, &fbc->compressed_fb)); > intel_de_write(i915, FBC_LL_BASE, > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] [PATCH 1/3] drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() 2023-09-14 12:40 ` Rodrigo Vivi @ 2023-09-15 15:28 ` Jani Nikula 0 siblings, 0 replies; 11+ messages in thread From: Jani Nikula @ 2023-09-15 15:28 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx On Thu, 14 Sep 2023, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote: > On Thu, Sep 14, 2023 at 12:34:57PM +0300, Jani Nikula wrote: >> Avoid using GEM_BUG_ON() in display code. >> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Thanks, pushed the series. BR, Jani. > >> --- >> drivers/gpu/drm/i915/display/intel_fbc.c | 14 ++++++++------ >> 1 file changed, 8 insertions(+), 6 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c >> index 817e5784660b..1cb9eec29640 100644 >> --- a/drivers/gpu/drm/i915/display/intel_fbc.c >> +++ b/drivers/gpu/drm/i915/display/intel_fbc.c >> @@ -333,12 +333,14 @@ static void i8xx_fbc_program_cfb(struct intel_fbc *fbc) >> { >> struct drm_i915_private *i915 = fbc->i915; >> >> - GEM_BUG_ON(range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), >> - i915_gem_stolen_node_offset(&fbc->compressed_fb), >> - U32_MAX)); >> - GEM_BUG_ON(range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), >> - i915_gem_stolen_node_offset(&fbc->compressed_llb), >> - U32_MAX)); >> + drm_WARN_ON(&i915->drm, >> + range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), >> + i915_gem_stolen_node_offset(&fbc->compressed_fb), >> + U32_MAX)); >> + drm_WARN_ON(&i915->drm, >> + range_overflows_end_t(u64, i915_gem_stolen_area_address(i915), >> + i915_gem_stolen_node_offset(&fbc->compressed_llb), >> + U32_MAX)); >> intel_de_write(i915, FBC_CFB_BASE, >> i915_gem_stolen_node_address(i915, &fbc->compressed_fb)); >> intel_de_write(i915, FBC_LL_BASE, >> -- >> 2.39.2 >> -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] [PATCH 2/3] drm/i915/fb: replace GEM_WARN_ON() with drm_WARN_ON() 2023-09-14 9:34 [Intel-gfx] [PATCH 0/3] drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Jani Nikula 2023-09-14 9:34 ` [Intel-gfx] [PATCH 1/3] drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() Jani Nikula @ 2023-09-14 9:34 ` Jani Nikula 2023-09-14 12:41 ` Rodrigo Vivi 2023-09-14 9:34 ` [Intel-gfx] [PATCH 3/3] drm/i915/dpt: replace GEM_BUG_ON() " Jani Nikula ` (3 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Jani Nikula @ 2023-09-14 9:34 UTC (permalink / raw) To: intel-gfx; +Cc: jani.nikula Avoid using GEM_WARN_ON() in display code. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_fb_pin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/display/intel_fb_pin.c b/drivers/gpu/drm/i915/display/intel_fb_pin.c index fffd568070d4..7b42aef37d2f 100644 --- a/drivers/gpu/drm/i915/display/intel_fb_pin.c +++ b/drivers/gpu/drm/i915/display/intel_fb_pin.c @@ -35,7 +35,8 @@ intel_pin_fb_obj_dpt(struct drm_framebuffer *fb, * We are not syncing against the binding (and potential migrations) * below, so this vm must never be async. */ - GEM_WARN_ON(vm->bind_async_flags); + if (drm_WARN_ON(&dev_priv->drm, vm->bind_async_flags)) + return ERR_PTR(-EINVAL); if (WARN_ON(!i915_gem_object_is_framebuffer(obj))) return ERR_PTR(-EINVAL); -- 2.39.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] [PATCH 2/3] drm/i915/fb: replace GEM_WARN_ON() with drm_WARN_ON() 2023-09-14 9:34 ` [Intel-gfx] [PATCH 2/3] drm/i915/fb: replace GEM_WARN_ON() with drm_WARN_ON() Jani Nikula @ 2023-09-14 12:41 ` Rodrigo Vivi 0 siblings, 0 replies; 11+ messages in thread From: Rodrigo Vivi @ 2023-09-14 12:41 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Thu, Sep 14, 2023 at 12:34:58PM +0300, Jani Nikula wrote: > Avoid using GEM_WARN_ON() in display code. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > drivers/gpu/drm/i915/display/intel_fb_pin.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_fb_pin.c b/drivers/gpu/drm/i915/display/intel_fb_pin.c > index fffd568070d4..7b42aef37d2f 100644 > --- a/drivers/gpu/drm/i915/display/intel_fb_pin.c > +++ b/drivers/gpu/drm/i915/display/intel_fb_pin.c > @@ -35,7 +35,8 @@ intel_pin_fb_obj_dpt(struct drm_framebuffer *fb, > * We are not syncing against the binding (and potential migrations) > * below, so this vm must never be async. > */ > - GEM_WARN_ON(vm->bind_async_flags); > + if (drm_WARN_ON(&dev_priv->drm, vm->bind_async_flags)) > + return ERR_PTR(-EINVAL); > > if (WARN_ON(!i915_gem_object_is_framebuffer(obj))) > return ERR_PTR(-EINVAL); > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] [PATCH 3/3] drm/i915/dpt: replace GEM_BUG_ON() with drm_WARN_ON() 2023-09-14 9:34 [Intel-gfx] [PATCH 0/3] drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Jani Nikula 2023-09-14 9:34 ` [Intel-gfx] [PATCH 1/3] drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() Jani Nikula 2023-09-14 9:34 ` [Intel-gfx] [PATCH 2/3] drm/i915/fb: replace GEM_WARN_ON() with drm_WARN_ON() Jani Nikula @ 2023-09-14 9:34 ` Jani Nikula 2023-09-14 12:41 ` Rodrigo Vivi 2023-09-14 16:48 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Jani Nikula @ 2023-09-14 9:34 UTC (permalink / raw) To: intel-gfx; +Cc: jani.nikula Avoid using GEM_BUG_ON() in display code. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_dpt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c b/drivers/gpu/drm/i915/display/intel_dpt.c index fbfd8f959f17..48582b31b7f7 100644 --- a/drivers/gpu/drm/i915/display/intel_dpt.c +++ b/drivers/gpu/drm/i915/display/intel_dpt.c @@ -29,7 +29,7 @@ static inline struct i915_dpt * i915_vm_to_dpt(struct i915_address_space *vm) { BUILD_BUG_ON(offsetof(struct i915_dpt, vm)); - GEM_BUG_ON(!i915_is_dpt(vm)); + drm_WARN_ON(&vm->i915->drm, !i915_is_dpt(vm)); return container_of(vm, struct i915_dpt, vm); } -- 2.39.2 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Intel-gfx] [PATCH 3/3] drm/i915/dpt: replace GEM_BUG_ON() with drm_WARN_ON() 2023-09-14 9:34 ` [Intel-gfx] [PATCH 3/3] drm/i915/dpt: replace GEM_BUG_ON() " Jani Nikula @ 2023-09-14 12:41 ` Rodrigo Vivi 0 siblings, 0 replies; 11+ messages in thread From: Rodrigo Vivi @ 2023-09-14 12:41 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Thu, Sep 14, 2023 at 12:34:59PM +0300, Jani Nikula wrote: > Avoid using GEM_BUG_ON() in display code. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > drivers/gpu/drm/i915/display/intel_dpt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_dpt.c b/drivers/gpu/drm/i915/display/intel_dpt.c > index fbfd8f959f17..48582b31b7f7 100644 > --- a/drivers/gpu/drm/i915/display/intel_dpt.c > +++ b/drivers/gpu/drm/i915/display/intel_dpt.c > @@ -29,7 +29,7 @@ static inline struct i915_dpt * > i915_vm_to_dpt(struct i915_address_space *vm) > { > BUILD_BUG_ON(offsetof(struct i915_dpt, vm)); > - GEM_BUG_ON(!i915_is_dpt(vm)); > + drm_WARN_ON(&vm->i915->drm, !i915_is_dpt(vm)); > return container_of(vm, struct i915_dpt, vm); > } > > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON 2023-09-14 9:34 [Intel-gfx] [PATCH 0/3] drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Jani Nikula ` (2 preceding siblings ...) 2023-09-14 9:34 ` [Intel-gfx] [PATCH 3/3] drm/i915/dpt: replace GEM_BUG_ON() " Jani Nikula @ 2023-09-14 16:48 ` Patchwork 2023-09-14 17:02 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-09-14 21:44 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-14 16:48 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON URL : https://patchwork.freedesktop.org/series/123679/ 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:117:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:148: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:150:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:154:26: 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:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:156:9: warning: unreplaced symbol 'return' +./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:174:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:176:9: warning: unreplaced symbol 'oldbit' +./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: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:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:182:9: warning: unreplaced symbol 'return' +./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:186:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:188:9: warning: unreplaced symbol 'oldbit' +./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: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:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:195:9: warning: unreplaced symbol 'return' +./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:237:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:239:9: 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: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' +./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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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/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: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: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: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: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: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] 11+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON 2023-09-14 9:34 [Intel-gfx] [PATCH 0/3] drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Jani Nikula ` (3 preceding siblings ...) 2023-09-14 16:48 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Patchwork @ 2023-09-14 17:02 ` Patchwork 2023-09-14 21:44 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-14 17:02 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 9549 bytes --] == Series Details == Series: drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON URL : https://patchwork.freedesktop.org/series/123679/ State : success == Summary == CI Bug Log - changes from CI_DRM_13632 -> Patchwork_123679v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/index.html Participating hosts (39 -> 38) ------------------------------ Additional (2): fi-hsw-4770 bat-mtlp-8 Missing (3): fi-kbl-soraka fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in Patchwork_123679v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4077]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_engines: - bat-mtlp-8: NOTRUN -> [FAIL][7] ([i915#9278] / [i915#9290]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][8] ([i915#9270]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - bat-dg2-11: [PASS][9] -> [ABORT][10] ([i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/bat-dg2-11/igt@i915_selftest@live@hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-dg2-11/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@mman: - bat-rpls-1: [PASS][11] -> [TIMEOUT][12] ([i915#6794] / [i915#7392]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/bat-rpls-1/igt@i915_selftest@live@mman.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-rpls-1/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@requests: - bat-mtlp-8: NOTRUN -> [ABORT][13] ([i915#9262]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-1: [PASS][14] -> [WARN][15] ([i915#8747]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][16] ([fdo#109271]) +13 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#5190]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#4212]) +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4213]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#3840] / [i915#9159]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-8: NOTRUN -> [SKIP][21] ([fdo#109285]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#5274]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-hsw-4770: NOTRUN -> [DMESG-WARN][23] ([i915#8841]) +6 other tests dmesg-warn [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1072]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-mtlp-8: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#8809]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-8: NOTRUN -> [SKIP][26] ([i915#3708] / [i915#4077]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][27] ([i915#3708]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 Build changes ------------- * Linux: CI_DRM_13632 -> Patchwork_123679v1 CI-20190529: 20190529 CI_DRM_13632: 27e8bddd193db91eb95f2e962c2729e14f058ace @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7487: 77e606dea60110c869ad9f9cc88994a0048845c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_123679v1: 27e8bddd193db91eb95f2e962c2729e14f058ace @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 161fffd75d3e drm/i915/dpt: replace GEM_BUG_ON() with drm_WARN_ON() 258aa90d360b drm/i915/fb: replace GEM_WARN_ON() with drm_WARN_ON() 57ff2dc4fe19 drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/index.html [-- Attachment #2: Type: text/html, Size: 10965 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON 2023-09-14 9:34 [Intel-gfx] [PATCH 0/3] drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Jani Nikula ` (4 preceding siblings ...) 2023-09-14 17:02 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-09-14 21:44 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-14 21:44 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 73157 bytes --] == Series Details == Series: drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON URL : https://patchwork.freedesktop.org/series/123679/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13632_full -> Patchwork_123679v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_123679v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_123679v1_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_123679v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-apl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-apl7/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-apl1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html Known issues ------------ Here are the changes found in Patchwork_123679v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#8562]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: NOTRUN -> [ABORT][11] ([i915#9262]) +4 other tests abort [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@hang: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1099]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-snb4/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-close.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#4771]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4771]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_endless@dispatch@vcs0: - shard-tglu: [PASS][18] -> [TIMEOUT][19] ([i915#3778] / [i915#7941]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-tglu-7/igt@gem_exec_endless@dispatch@vcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-tglu-6/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_exec_fair@basic-none-vip: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#3539] / [i915#4852]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][21] -> [FAIL][22] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][23] -> [FAIL][24] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4473] / [i915#4771]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#7697]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#5107]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-dg1: NOTRUN -> [SKIP][29] ([fdo#112283]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4537] / [i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [PASS][35] -> [ABORT][36] ([i915#7392] / [i915#8668]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-priority-all.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_fence_thrash@bo-copy: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4860]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@basic@lmem0: - shard-dg1: [PASS][38] -> [DMESG-WARN][39] ([i915#4391] / [i915#4423]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-17/igt@gem_lmem_swapping@basic@lmem0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-14/igt@gem_lmem_swapping@basic@lmem0.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#4613]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-apl6/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][42] -> [TIMEOUT][43] ([i915#5493]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#284]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@gem_media_vme.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap@short-mmap: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@gem_mmap_wc@read-write.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@self: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3282]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_pread@self.html * igt@gem_pread@uncached: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@gem_pread@uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][55] ([i915#2658]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-snb5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4885]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4958]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@vma-merge: - shard-rkl: NOTRUN -> [FAIL][65] ([i915#3318]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-allocation: - shard-dg1: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@bb-large: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#2856]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][71] ([i915#7069]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_hangman@gt-error-state-capture@vecs0: - shard-mtlp: [PASS][72] -> [DMESG-WARN][73] ([i915#9262]) +2 other tests dmesg-warn [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-7/igt@i915_hangman@gt-error-state-capture@vecs0.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@i915_hangman@gt-error-state-capture@vecs0.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#6412]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@i915_module_load@resize-bar.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][75] -> [SKIP][76] ([i915#1397]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg2-3/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg1: [PASS][77] -> [SKIP][78] ([i915#1397]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-15/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#6621]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-tglu: [PASS][80] -> [INCOMPLETE][81] ([i915#8320]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-tglu-2/igt@i915_pm_rps@reset.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-tglu-7/igt@i915_pm_rps@reset.html * igt@i915_query@query-topology-unsupported: - shard-dg2: NOTRUN -> [SKIP][82] ([fdo#109302]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@i915_query@query-topology-unsupported.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#8709]) +11 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#6229]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-5/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#1769] / [i915#3555]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4538] / [i915#5286]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#5286]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][88] ([fdo#111614]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][89] ([fdo#111614]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#5190]) +7 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#6187]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4538]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][93] ([fdo#110723]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][94] ([fdo#111615]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5190]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271]) +43 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-apl6/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3689] / [i915#5354]) +11 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#5354] / [i915#6095]) +6 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3886] / [i915#6095]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6095]) +12 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5354] / [i915#6095]) +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#3689] / [i915#3886] / [i915#5354]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#5354]) +27 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#5354]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3742]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111827]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-rkl: NOTRUN -> [SKIP][109] ([fdo#111827]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#111827]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-read: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#7828]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#7828]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#7828]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#7828]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#7118]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][116] ([i915#7173]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#7118]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#3359]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3359]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3555]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#8814]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111767] / [fdo#111825]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4103] / [i915#4213]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-dg1: [PASS][124] -> [DMESG-WARN][125] ([i915#4423]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-17/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-14/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-dg1: NOTRUN -> [SKIP][126] ([fdo#111825]) +8 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3546]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][128] ([fdo#111825]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#109274] / [i915#5354]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][130] -> [FAIL][131] ([i915#2346]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#4213]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#9227]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#9226] / [i915#9261]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3804]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3555]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#8812]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#3840]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3637]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-apl: NOTRUN -> [SKIP][140] ([fdo#109271] / [fdo#111767]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-apl6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#8381]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#109274]) +5 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#8381]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#2672]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#2587] / [i915#2672]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#2672]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#2672] / [i915#3555]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][148] -> [FAIL][149] ([i915#6880]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][150] ([fdo#111825] / [i915#1825]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#1825]) +18 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#5460]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#8708]) +12 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#3458]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-snb: NOTRUN -> [SKIP][155] ([fdo#109271]) +187 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3023]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8708]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#8708]) +7 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3458]) +14 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8228]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8228]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#6301]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3582]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8806]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][165] ([i915#8292]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#5176]) +11 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#5176]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#5176]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#5176]) +15 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#5235]) +15 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#5235]) +7 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#5235]) +11 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#5235]) +7 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][174] ([fdo#111068] / [i915#658]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#658]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@dpms: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#1072]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_psr@dpms.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#1072]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#1072]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_psr@psr2_dpms.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#4235]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_plane: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8661]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_selftest@drm_plane.html - shard-snb: NOTRUN -> [SKIP][181] ([fdo#109271] / [i915#8661]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-snb5/igt@kms_selftest@drm_plane.html - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8661]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@kms_selftest@drm_plane.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][183] ([IGT#2]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-rkl: [PASS][184] -> [FAIL][185] ([i915#9196]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html - shard-apl: [PASS][186] -> [FAIL][187] ([i915#9196]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-apl4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-apl2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-dg2: NOTRUN -> [FAIL][188] ([i915#9196]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html - shard-snb: NOTRUN -> [FAIL][189] ([i915#9196]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-snb5/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html - shard-mtlp: [PASS][190] -> [FAIL][191] ([i915#9196]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][192] ([i915#8841]) +3 other tests dmesg-warn [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-snb5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html - shard-apl: [PASS][193] -> [INCOMPLETE][194] ([i915#180]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-dg2: [PASS][195] -> [FAIL][196] ([fdo#103375]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg2-7/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-wait-forked-hang: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#4070] / [i915#533] / [i915#6768]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_vblank@pipe-d-wait-forked-hang.html * igt@kms_writeback@writeback-check-output: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2437]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@kms_writeback@writeback-check-output.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][199] -> [FAIL][200] ([i915#7484]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: NOTRUN -> [FAIL][201] ([i915#4521]) +2 other tests fail [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@most-busy-idle-check-all@vcs1: - shard-mtlp: NOTRUN -> [FAIL][202] ([i915#5234]) +5 other tests fail [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@vcs1.html * igt@prime_busy@hang-wait@ccs0: - shard-mtlp: [PASS][203] -> [ABORT][204] ([i915#9262]) +1 other test abort [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-1/igt@prime_busy@hang-wait@ccs0.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-5/igt@prime_busy@hang-wait@ccs0.html * igt@prime_udl: - shard-dg1: NOTRUN -> [SKIP][205] ([fdo#109291]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@prime_udl.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][206] ([fdo#109295] / [i915#3291] / [i915#3708]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3291] / [i915#3708]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3708]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3708] / [i915#4077]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@prime_vgem@coherency-gtt.html * igt@v3d/v3d_create_bo@create-bo-4096: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#2575]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@v3d/v3d_create_bo@create-bo-4096.html * igt@v3d/v3d_get_param@base-params: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#2575]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_submit_cl@bad-multisync-in-sync: - shard-rkl: NOTRUN -> [SKIP][212] ([fdo#109315]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#2575]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#7711]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-3/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_perfmon@get-values-invalid-perfmon: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#7711]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#7711]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-6/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#7711]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * igt@gem_eio@in-flight-suspend: - shard-dg2: [FAIL][218] ([fdo#103375]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg2-11/igt@gem_eio@in-flight-suspend.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-2/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg1: [FAIL][220] ([i915#5784]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-18/igt@gem_eio@kms.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [FAIL][222] ([i915#2842]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-tglu-8/igt@gem_exec_fair@basic-flow@rcs0.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-tglu-7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][224] ([i915#2842]) -> [PASS][225] +3 other tests pass [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html - shard-glk: [FAIL][226] ([i915#2842]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-glk7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_schedule@preempt-hang@vcs0: - shard-mtlp: [ABORT][228] ([i915#9262]) -> [PASS][229] +5 other tests pass [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-4/igt@gem_exec_schedule@preempt-hang@vcs0.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-6/igt@gem_exec_schedule@preempt-hang@vcs0.html * igt@gem_exec_schedule@semaphore-noskip: - shard-mtlp: [ABORT][230] ([i915#4537] / [i915#9262]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-7/igt@gem_exec_schedule@semaphore-noskip.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-1/igt@gem_exec_schedule@semaphore-noskip.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][232] ([i915#7975] / [i915#8213]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-17/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][234] ([i915#4936] / [i915#5493]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_spin_batch@user-each: - shard-mtlp: [DMESG-FAIL][236] ([i915#8962] / [i915#9121]) -> [PASS][237] +1 other test pass [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-4/igt@gem_spin_batch@user-each.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-2/igt@gem_spin_batch@user-each.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [INCOMPLETE][238] -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-glk6/igt@gen9_exec_parse@allowed-single.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-glk4/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][240] -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][242] ([i915#1397]) -> [PASS][243] +3 other tests pass [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg1: [SKIP][244] ([i915#1397]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-13/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][246] ([i915#3743]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled: - shard-mtlp: [FAIL][248] -> [PASS][249] +1 other test pass [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-5/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-5/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html * igt@kms_flip_event_leak@basic@pipe-a-hdmi-a-1: - shard-dg1: [DMESG-WARN][250] ([i915#1982]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-19/igt@kms_flip_event_leak@basic@pipe-a-hdmi-a-1.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-19/igt@kms_flip_event_leak@basic@pipe-a-hdmi-a-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [INCOMPLETE][252] ([i915#180]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * {igt@kms_pm_dc@dc9-dpms}: - shard-tglu: [SKIP][254] ([i915#4281]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [INCOMPLETE][256] ([i915#8875]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-snb: [FAIL][258] ([i915#9196]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-snb5/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-snb2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][260] ([i915#4983]) -> [ABORT][261] ([i915#4983] / [i915#7461]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@gem_exec_schedule@preempt-hang@vcs1: - shard-mtlp: [DMESG-WARN][262] ([i915#9262]) -> [ABORT][263] ([i915#9262]) +1 other test abort [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-mtlp-4/igt@gem_exec_schedule@preempt-hang@vcs1.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-mtlp-6/igt@gem_exec_schedule@preempt-hang@vcs1.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][264] ([i915#3955]) -> [SKIP][265] ([fdo#110189] / [i915#3955]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][266] ([i915#1072] / [i915#4078]) -> [SKIP][267] ([i915#1072]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13632/shard-dg1-12/igt@kms_psr@cursor_plane_move.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123679v1/shard-dg1-15/igt@kms_psr@cursor_plane_move.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [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#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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [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#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#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#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [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#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [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#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [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#8320]: https://gitlab.freedesktop.org/drm/intel/issues/8320 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 Build changes ------------- * Linux: CI_DRM_13632 -> Patchwork_123679v1 CI-20190529: 20190529 CI_DRM_13632: 27e8bddd193db91eb95f2e962c2729e14f058ace @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7487: 77e606dea60110c869ad9f9cc88994a0048845c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_123679v1: 27e8bddd193db91eb95f2e962c2729e14f058ace @ 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_123679v1/index.html [-- Attachment #2: Type: text/html, Size: 87678 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-09-15 15:28 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-14 9:34 [Intel-gfx] [PATCH 0/3] drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Jani Nikula 2023-09-14 9:34 ` [Intel-gfx] [PATCH 1/3] drm/i915/fbc: replace GEM_BUG_ON() to drm_WARN_ON() Jani Nikula 2023-09-14 12:40 ` Rodrigo Vivi 2023-09-15 15:28 ` Jani Nikula 2023-09-14 9:34 ` [Intel-gfx] [PATCH 2/3] drm/i915/fb: replace GEM_WARN_ON() with drm_WARN_ON() Jani Nikula 2023-09-14 12:41 ` Rodrigo Vivi 2023-09-14 9:34 ` [Intel-gfx] [PATCH 3/3] drm/i915/dpt: replace GEM_BUG_ON() " Jani Nikula 2023-09-14 12:41 ` Rodrigo Vivi 2023-09-14 16:48 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915/display: remove last uses of GEM_BUG_ON/GEM_WARN_ON Patchwork 2023-09-14 17:02 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-09-14 21:44 ` [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