* [PATCH v2 1/2] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
@ 2025-04-11 14:43 ` Ville Syrjala
2025-05-22 6:25 ` Joonas Lahtinen
2025-04-11 14:43 ` [PATCH v2 2/2] drm/i915/pci: Remove force_probe requirement for DG1 Ville Syrjala
` (8 subsequent siblings)
9 siblings, 1 reply; 15+ messages in thread
From: Ville Syrjala @ 2025-04-11 14:43 UTC (permalink / raw)
To: intel-gfx; +Cc: stable, Matthew Auld, Thomas Hellström, Andi Shyti
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
The intel-media-driver is currently broken on DG1 because
it uses EXEC_CAPTURE with recovarable contexts. Relax the
check to allow that.
I've also submitted a fix for the intel-media-driver:
https://github.com/intel/media-driver/pull/1920
Cc: stable@vger.kernel.org
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
Testcase: igt/gem_exec_capture/capture-invisible
Fixes: 71b1669ea9bd ("drm/i915/uapi: tweak error capture on recoverable contexts")
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
index ca7e9216934a..ea9d5063ce78 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
@@ -2013,7 +2013,7 @@ static int eb_capture_stage(struct i915_execbuffer *eb)
continue;
if (i915_gem_context_is_recoverable(eb->gem_context) &&
- (IS_DGFX(eb->i915) || GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 0)))
+ GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 10))
return -EINVAL;
for_each_batch_create_order(eb, j) {
--
2.49.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v2 1/2] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1
2025-04-11 14:43 ` [PATCH v2 1/2] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1 Ville Syrjala
@ 2025-05-22 6:25 ` Joonas Lahtinen
2025-05-22 6:35 ` Andi Shyti
2025-05-22 9:35 ` Ville Syrjälä
0 siblings, 2 replies; 15+ messages in thread
From: Joonas Lahtinen @ 2025-05-22 6:25 UTC (permalink / raw)
To: Ville Syrjala, intel-gfx, Tvrtko Ursulin
Cc: stable, Matthew Auld, Thomas Hellström, Andi Shyti
(+ Tvrkto)
Quoting Ville Syrjala (2025-04-11 17:43:12)
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> The intel-media-driver is currently broken on DG1 because
> it uses EXEC_CAPTURE with recovarable contexts. Relax the
> check to allow that.
>
> I've also submitted a fix for the intel-media-driver:
> https://github.com/intel/media-driver/pull/1920
>
> Cc: stable@vger.kernel.org
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> Testcase: igt/gem_exec_capture/capture-invisible
> Fixes: 71b1669ea9bd ("drm/i915/uapi: tweak error capture on recoverable contexts")
> Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> index ca7e9216934a..ea9d5063ce78 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> @@ -2013,7 +2013,7 @@ static int eb_capture_stage(struct i915_execbuffer *eb)
> continue;
>
> if (i915_gem_context_is_recoverable(eb->gem_context) &&
> - (IS_DGFX(eb->i915) || GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 0)))
> + GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 10))
The IS_DGFX check was there because the error capture is expected to be
broken on anything with VRAM.
If we have already submitted an userspace fix to remove that flag, that
would be the right way to go.
So reverting this for now.
Regards, Joonas
> return -EINVAL;
>
> for_each_batch_create_order(eb, j) {
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [PATCH v2 1/2] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1
2025-05-22 6:25 ` Joonas Lahtinen
@ 2025-05-22 6:35 ` Andi Shyti
2025-05-22 9:35 ` Ville Syrjälä
1 sibling, 0 replies; 15+ messages in thread
From: Andi Shyti @ 2025-05-22 6:35 UTC (permalink / raw)
To: Joonas Lahtinen
Cc: Ville Syrjala, intel-gfx, Tvrtko Ursulin, stable, Matthew Auld,
Thomas Hellström, Andi Shyti
Hi Joonas,
On Thu, May 22, 2025 at 09:25:04AM +0300, Joonas Lahtinen wrote:
> (+ Tvrkto)
>
> Quoting Ville Syrjala (2025-04-11 17:43:12)
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > The intel-media-driver is currently broken on DG1 because
> > it uses EXEC_CAPTURE with recovarable contexts. Relax the
> > check to allow that.
> >
> > I've also submitted a fix for the intel-media-driver:
> > https://github.com/intel/media-driver/pull/1920
> >
> > Cc: stable@vger.kernel.org
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > Testcase: igt/gem_exec_capture/capture-invisible
> > Fixes: 71b1669ea9bd ("drm/i915/uapi: tweak error capture on recoverable contexts")
> > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > index ca7e9216934a..ea9d5063ce78 100644
> > --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > @@ -2013,7 +2013,7 @@ static int eb_capture_stage(struct i915_execbuffer *eb)
> > continue;
> >
> > if (i915_gem_context_is_recoverable(eb->gem_context) &&
> > - (IS_DGFX(eb->i915) || GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 0)))
> > + GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 10))
>
> The IS_DGFX check was there because the error capture is expected to be
> broken on anything with VRAM.
>
> If we have already submitted an userspace fix to remove that flag, that
> would be the right way to go.
Oh! We need to add a comment there, though, because in the
future I expect someone else might decide to send the same patch.
Andi
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [PATCH v2 1/2] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1
2025-05-22 6:25 ` Joonas Lahtinen
2025-05-22 6:35 ` Andi Shyti
@ 2025-05-22 9:35 ` Ville Syrjälä
2025-05-22 10:58 ` Joonas Lahtinen
1 sibling, 1 reply; 15+ messages in thread
From: Ville Syrjälä @ 2025-05-22 9:35 UTC (permalink / raw)
To: Joonas Lahtinen
Cc: intel-gfx, Tvrtko Ursulin, stable, Matthew Auld,
Thomas Hellström, Andi Shyti
On Thu, May 22, 2025 at 09:25:04AM +0300, Joonas Lahtinen wrote:
> (+ Tvrkto)
>
> Quoting Ville Syrjala (2025-04-11 17:43:12)
> > From: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > The intel-media-driver is currently broken on DG1 because
> > it uses EXEC_CAPTURE with recovarable contexts. Relax the
> > check to allow that.
> >
> > I've also submitted a fix for the intel-media-driver:
> > https://github.com/intel/media-driver/pull/1920
> >
> > Cc: stable@vger.kernel.org
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > Testcase: igt/gem_exec_capture/capture-invisible
> > Fixes: 71b1669ea9bd ("drm/i915/uapi: tweak error capture on recoverable contexts")
> > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > index ca7e9216934a..ea9d5063ce78 100644
> > --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > @@ -2013,7 +2013,7 @@ static int eb_capture_stage(struct i915_execbuffer *eb)
> > continue;
> >
> > if (i915_gem_context_is_recoverable(eb->gem_context) &&
> > - (IS_DGFX(eb->i915) || GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 0)))
> > + GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 10))
>
> The IS_DGFX check was there because the error capture is expected to be
> broken on anything with VRAM.
I don't care. It's a regression that prevents current userspace
from working.
>
> If we have already submitted an userspace fix to remove that flag, that
> would be the right way to go.
There has a been an open pull request for that for who knows how long
without any action.
>
> So reverting this for now.
*You* make sure a userspace fix actually gets released then.
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [PATCH v2 1/2] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1
2025-05-22 9:35 ` Ville Syrjälä
@ 2025-05-22 10:58 ` Joonas Lahtinen
0 siblings, 0 replies; 15+ messages in thread
From: Joonas Lahtinen @ 2025-05-22 10:58 UTC (permalink / raw)
To: Ville Syrjälä
Cc: intel-gfx, Tvrtko Ursulin, stable, Matthew Auld,
Thomas Hellström, Andi Shyti
Quoting Ville Syrjälä (2025-05-22 12:35:05)
> On Thu, May 22, 2025 at 09:25:04AM +0300, Joonas Lahtinen wrote:
> > (+ Tvrkto)
> >
> > Quoting Ville Syrjala (2025-04-11 17:43:12)
<SNIP>
> > > +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > > @@ -2013,7 +2013,7 @@ static int eb_capture_stage(struct i915_execbuffer *eb)
> > > continue;
> > >
> > > if (i915_gem_context_is_recoverable(eb->gem_context) &&
> > > - (IS_DGFX(eb->i915) || GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 0)))
> > > + GRAPHICS_VER_FULL(eb->i915) > IP_VER(12, 10))
> >
> > The IS_DGFX check was there because the error capture is expected to be
> > broken on anything with VRAM.
>
> I don't care. It's a regression that prevents current userspace
> from working.
(Spoiler: The userspace fix seems to be accepted and released.)
It's always bit murky when a platform stays under force_probe for
extended period of time, but it was never considered to be finalized from
memory management perspective at the time of adding this check.
Now you are just unblocking codepaths that are simply not expected to work,
and as it's in rather fragile part of the device resets so that's bit of
a no-go.
So if you really would prefer to drop this check for DG1, options would be to
implement the page copying for VRAM (probably bit much work) or alternatively
we could just ignore the flag for DG1 specifically.
> > If we have already submitted an userspace fix to remove that flag, that
> > would be the right way to go.
>
> There has a been an open pull request for that for who knows how long
> without any action.
>
> >
> > So reverting this for now.
>
> *You* make sure a userspace fix actually gets released then.
Per GIT history[1] it should already be part of media-driver release 25.2.3
which was released last week. Or am I looking at the wrong fix?
Regards, Joonas
[1] https://github.com/intel/media-driver/commit/93c07d9b4b96a78bab21f6acd4eb863f4313ea4a
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v2 2/2] drm/i915/pci: Remove force_probe requirement for DG1
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
2025-04-11 14:43 ` [PATCH v2 1/2] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1 Ville Syrjala
@ 2025-04-11 14:43 ` Ville Syrjala
2025-04-11 15:22 ` ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev3) Patchwork
` (7 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Ville Syrjala @ 2025-04-11 14:43 UTC (permalink / raw)
To: intel-gfx; +Cc: Andi Shyti
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Dunno why we still have .require_force_probe=1 on DG1 after
all this time. I'm not aware of any real problems with DG1,
so get rid of the force_probe requirement.
Generally the difficulty with DG1 is that it requires a
4GiB BAR for the local memory, and that's not something
that works on every system.
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/i915_pci.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c
index 21006c7f615c..b2e311f4791a 100644
--- a/drivers/gpu/drm/i915/i915_pci.c
+++ b/drivers/gpu/drm/i915/i915_pci.c
@@ -663,7 +663,6 @@ static const struct intel_device_info dg1_info = {
DGFX_FEATURES,
.__runtime.graphics.ip.rel = 10,
PLATFORM(INTEL_DG1),
- .require_force_probe = 1,
.platform_engine_mask =
BIT(RCS0) | BIT(BCS0) | BIT(VECS0) |
BIT(VCS0) | BIT(VCS2),
--
2.49.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev3)
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
2025-04-11 14:43 ` [PATCH v2 1/2] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1 Ville Syrjala
2025-04-11 14:43 ` [PATCH v2 2/2] drm/i915/pci: Remove force_probe requirement for DG1 Ville Syrjala
@ 2025-04-11 15:22 ` Patchwork
2025-04-11 15:46 ` ✗ i915.CI.BAT: failure " Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-04-11 15:22 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: DG1 fixes (rev3)
URL : https://patchwork.freedesktop.org/series/147081/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ i915.CI.BAT: failure for drm/i915: DG1 fixes (rev3)
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
` (2 preceding siblings ...)
2025-04-11 15:22 ` ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev3) Patchwork
@ 2025-04-11 15:46 ` Patchwork
2025-04-11 19:34 ` ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev4) Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-04-11 15:46 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 13420 bytes --]
== Series Details ==
Series: drm/i915: DG1 fixes (rev3)
URL : https://patchwork.freedesktop.org/series/147081/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16406 -> Patchwork_147081v3
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_147081v3 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_147081v3, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (2): fi-hsw-4770 bat-arlh-2
Missing (2): bat-adlp-11 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_147081v3:
### IGT changes ###
#### Possible regressions ####
* igt@gem_softpin@safe-alignment:
- fi-hsw-4770: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/fi-hsw-4770/igt@gem_softpin@safe-alignment.html
Known issues
------------
Here are the changes found in Patchwork_147081v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@eof:
- bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#11345] / [i915#11346]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@fbdev@eof.html
* igt@fbdev@info:
- fi-hsw-4770: NOTRUN -> [SKIP][3] ([i915#1849] / [i915#2582])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/fi-hsw-4770/igt@fbdev@info.html
- bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#11346] / [i915#1849])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@fbdev@info.html
* igt@fbdev@nullptr:
- fi-hsw-4770: NOTRUN -> [SKIP][5] ([i915#2582]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/fi-hsw-4770/igt@fbdev@nullptr.html
* igt@gem_lmem_swapping@basic:
- bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#11343] / [i915#11346])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#10197] / [i915#10211] / [i915#11346] / [i915#11725])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@allocator-basic-reserve:
- fi-hsw-4770: NOTRUN -> [SKIP][9] +15 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/fi-hsw-4770/igt@gem_softpin@allocator-basic-reserve.html
* igt@gem_tiled_blits@basic:
- bat-arlh-2: NOTRUN -> [SKIP][10] ([i915#11346] / [i915#12637]) +4 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-arlh-2: NOTRUN -> [SKIP][11] ([i915#10206] / [i915#11346] / [i915#11724])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-arlh-2: NOTRUN -> [SKIP][12] ([i915#10209] / [i915#11346] / [i915#11681])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arlh-2: NOTRUN -> [INCOMPLETE][13] ([i915#14046]) +1 other test incomplete
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][14] -> [DMESG-WARN][15] ([i915#13735]) +67 other tests dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][16] -> [DMESG-FAIL][17] ([i915#12061])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][18] -> [DMESG-FAIL][19] ([i915#12061]) +1 other test dmesg-fail
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/bat-arls-6/igt@i915_selftest@live@workarounds.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-arlh-2: NOTRUN -> [SKIP][20] ([i915#11346] / [i915#11680] / [i915#7707]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- fi-hsw-4770: NOTRUN -> [SKIP][21] ([i915#5190])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-arlh-2: NOTRUN -> [SKIP][22] ([i915#10200] / [i915#11346] / [i915#11666] / [i915#12203])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-arlh-2: NOTRUN -> [SKIP][23] ([i915#10200] / [i915#11346] / [i915#11666]) +8 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][24] -> [DMESG-WARN][25] ([i915#13735] / [i915#180]) +53 other tests dmesg-warn
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_psr@psr-primary-page-flip:
- bat-arlh-2: NOTRUN -> [SKIP][26] ([i915#11346]) +32 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- fi-hsw-4770: NOTRUN -> [SKIP][27] ([i915#1072]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/fi-hsw-4770/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: NOTRUN -> [SKIP][28] ([i915#10208] / [i915#11346] / [i915#8809])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-arlh-2: NOTRUN -> [SKIP][29] ([i915#10212] / [i915#11346] / [i915#11726])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-arlh-2: NOTRUN -> [SKIP][30] ([i915#10214] / [i915#11346] / [i915#11726])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-arlh-2: NOTRUN -> [SKIP][31] ([i915#10216] / [i915#11346] / [i915#11723])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-2/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][32] ([i915#12904]) -> [PASS][33] +1 other test pass
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/bat-apl-1/igt@dmabuf@all-tests.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][34] ([i915#12061]) -> [PASS][35] +1 other test pass
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/bat-dg2-8/igt@i915_selftest@live.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_contexts:
- bat-arlh-3: [DMESG-FAIL][36] -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/bat-arlh-3/igt@i915_selftest@live@gem_contexts.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-3/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][38] ([i915#12061]) -> [PASS][39] +1 other test pass
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/bat-arls-5/igt@i915_selftest@live@workarounds.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-dg2-11: [DMESG-FAIL][40] ([i915#12061]) -> [PASS][41] +1 other test pass
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-dg2-11/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-arlh-3: [DMESG-FAIL][42] -> [DMESG-FAIL][43] ([i915#12061])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16406/bat-arlh-3/igt@i915_selftest@live.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/bat-arlh-3/igt@i915_selftest@live.html
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11680
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723
[i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724
[i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725
[i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
Build changes
-------------
* IGT: IGT_8315 -> IGTPW_12959
* Linux: CI_DRM_16406 -> Patchwork_147081v3
CI-20190529: 20190529
CI_DRM_16406: aa93855f3cf22ec61e9bea644affac003537f887 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12959: 7389f11fe4e9068b04a9ee4d1a2dc0e3ed808e29 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8315: c85ef0df47b498f999b43dad6a5cc509228f953a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_147081v3: aa93855f3cf22ec61e9bea644affac003537f887 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v3/index.html
[-- Attachment #2: Type: text/html, Size: 16681 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev4)
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
` (3 preceding siblings ...)
2025-04-11 15:46 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-04-11 19:34 ` Patchwork
2025-04-12 3:48 ` ✓ i915.CI.BAT: success " Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-04-11 19:34 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: DG1 fixes (rev4)
URL : https://patchwork.freedesktop.org/series/147081/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
^ permalink raw reply [flat|nested] 15+ messages in thread* ✓ i915.CI.BAT: success for drm/i915: DG1 fixes (rev4)
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
` (4 preceding siblings ...)
2025-04-11 19:34 ` ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev4) Patchwork
@ 2025-04-12 3:48 ` Patchwork
2025-04-12 6:09 ` ✗ i915.CI.Full: failure " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-04-12 3:48 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5235 bytes --]
== Series Details ==
Series: drm/i915: DG1 fixes (rev4)
URL : https://patchwork.freedesktop.org/series/147081/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16407 -> Patchwork_147081v4
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/index.html
Participating hosts (41 -> 40)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_147081v4 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#13494])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/bat-mtlp-9/igt@i915_module_load@load.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/bat-arls-5/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/bat-arls-6/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/bat-arls-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/bat-mtlp-8/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arlh-2: [INCOMPLETE][9] ([i915#14046]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/bat-arlh-2/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [DMESG-WARN][11] ([i915#13735]) -> [PASS][12] +81 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- bat-arls-6: [FAIL][17] ([i915#13930]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/bat-arls-6/igt@kms_hdmi_inject@inject-audio.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/bat-arls-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [DMESG-WARN][19] ([i915#13735] / [i915#180]) -> [PASS][20] +53 other tests pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#13930]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13930
[i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
Build changes
-------------
* IGT: IGT_8315 -> IGTPW_12959
* Linux: CI_DRM_16407 -> Patchwork_147081v4
CI-20190529: 20190529
CI_DRM_16407: 95956f65403ec2f6784fca383eecbb54431ddebc @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12959: 7389f11fe4e9068b04a9ee4d1a2dc0e3ed808e29 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8315: c85ef0df47b498f999b43dad6a5cc509228f953a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_147081v4: 95956f65403ec2f6784fca383eecbb54431ddebc @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/index.html
[-- Attachment #2: Type: text/html, Size: 6395 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ i915.CI.Full: failure for drm/i915: DG1 fixes (rev4)
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
` (5 preceding siblings ...)
2025-04-12 3:48 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-04-12 6:09 ` Patchwork
2025-05-07 21:06 ` ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev5) Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-04-12 6:09 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 135517 bytes --]
== Series Details ==
Series: drm/i915: DG1 fixes (rev4)
URL : https://patchwork.freedesktop.org/series/147081/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16407_full -> Patchwork_147081v4_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_147081v4_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_147081v4_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (11 -> 11)
------------------------------
Additional (1): shard-dg2-set2
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_147081v4_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_capture@capture-recoverable:
- shard-dg1: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-18/igt@gem_exec_capture@capture-recoverable.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-19/igt@gem_exec_capture@capture-recoverable.html
* igt@i915_pm_rpm@gem-idle:
- shard-dg2: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-4/igt@i915_pm_rpm@gem-idle.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-4/igt@i915_pm_rpm@gem-idle.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-snb: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-snb6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-mtlp: NOTRUN -> [FAIL][7] +2 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-1/igt@kms_plane@plane-panning-bottom-right-suspend.html
Known issues
------------
Here are the changes found in Patchwork_147081v4_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#6230])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-2/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-dg2-9: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-dg2-9: NOTRUN -> [SKIP][12] ([i915#11527] / [i915#8414]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#13008])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-6/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#7697])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_compute@compute-square:
- shard-dg2-9: NOTRUN -> [FAIL][22] ([i915#13665])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#6335])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@rcs0:
- shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#5882]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_ctx_persistence@saturated-hostile-nopreempt@rcs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-2/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][30] ([i915#13390])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][31] ([i915#13197] / [i915#13390])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk6/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][32] -> [FAIL][33] ([i915#5784])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-5/igt@gem_eio@kms.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@gem_eio@kms.html
- shard-tglu: [PASS][34] -> [DMESG-WARN][35] ([i915#13363])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-tglu-8/igt@gem_eio@kms.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4771])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4036])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4036])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-5/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][40] ([i915#11713])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#6334]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#6344])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][43] ([i915#11965]) +4 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-13/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +12 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-noreloc:
- shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#3281]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +17 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: [PASS][55] -> [INCOMPLETE][56] ([i915#11441] / [i915#13196]) +1 other test incomplete
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-glk4/igt@gem_exec_suspend@basic-s3.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk9/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#4860])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-6/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613] / [i915#7582])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#4613])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +7 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@smem-oom:
- shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk1/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap@basic-small-bo:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap_gtt@basic-small-bo-tiledy:
- shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4077]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
* igt@gem_mmap_gtt@coherency:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-17/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@hang-user:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) +9 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@gem_mmap_gtt@hang-user.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-18/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#4083])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@write:
- shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#3282]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_partial_pwrite_pread@write.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-18/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@gem_pread@snoop.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@gem_pxp@create-protected-buffer.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-12/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [TIMEOUT][81] ([i915#12917] / [i915#12964]) +1 other test timeout
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12964]) +1 other test timeout
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#13398])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-6/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-6/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#4079])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4079])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-19/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4079]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-5/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4885])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc:
- shard-rkl: [PASS][92] -> [DMESG-WARN][93] ([i915#12964]) +29 other tests dmesg-warn
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-4/igt@gem_softpin@noreloc.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@gem_softpin@noreloc.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [PASS][94] -> [INCOMPLETE][95] ([i915#13809])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-glk1/igt@gem_softpin@noreloc-s3.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk8/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4079]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-1/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: NOTRUN -> [FAIL][97] ([i915#12941])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2-9: NOTRUN -> [SKIP][98] ([i915#3297])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#3297])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#3297]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4958])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3297])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@gem_userptr_blits@set-cache-level.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#3297])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@reset-fd:
- shard-mtlp: [PASS][107] -> [ABORT][108] ([i915#13193] / [i915#13723])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-5/igt@gem_workarounds@reset-fd.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-7/igt@gem_workarounds@reset-fd.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) +10 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-17/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2-9: NOTRUN -> [SKIP][112] ([i915#2856]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@gen9_exec_parse@unaligned-access.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#2856]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@gen9_exec_parse@unaligned-jump.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#2856]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@gen9_exec_parse@valid-registers.html
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#2527] / [i915#2856]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#8399])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#8399])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-4/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][118] ([i915#13790] / [i915#2681]) +1 other test warn
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][119] ([i915#12797])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@basic-api:
- shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#11681] / [i915#6621])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-15/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#11681])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-7/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][123] -> [SKIP][124] ([i915#7984])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-8/igt@i915_power@sanity.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-5/igt@i915_power@sanity.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][125] -> [DMESG-FAIL][126] ([i915#12061]) +1 other test dmesg-fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][127] ([i915#4817] / [i915#7443])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][128] ([i915#4817])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#4212])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#4212]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4215] / [i915#5190])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#12454] / [i915#12712])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#8709]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#8709]) +15 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@overlay-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][135] ([i915#14076])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_async_flips@overlay-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#14076])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@kms_async_flips@overlay-atomic.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#10333])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#5286]) +10 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5286]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-14/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#5286]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#5286]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: [PASS][143] -> [FAIL][144] ([i915#5138])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][145] +10 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3638])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-15/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#3638]) +9 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][148] +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5190]) +8 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#5190]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#6095]) +126 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-18/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#6095]) +29 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#12313])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
- shard-snb: NOTRUN -> [SKIP][156] +35 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb7/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#12313]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#10307] / [i915#6095]) +29 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#6095]) +141 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#6095]) +100 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#12805])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#6095]) +49 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#6095]) +9 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-dg1: [PASS][164] -> [DMESG-WARN][165] ([i915#4423]) +5 other tests dmesg-warn
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-19/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][166] ([i915#12796]) +1 other test incomplete
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#6095]) +15 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#6095]) +39 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#12313]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-dg2-9: NOTRUN -> [SKIP][171] ([i915#12313]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#13784])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#13781]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +8 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +16 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-17/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +6 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#6944] / [i915#9424])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@kms_content_protection@atomic-dpms.html
- shard-dg2-9: NOTRUN -> [SKIP][183] ([i915#7118] / [i915#9424])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3116])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3299])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#6944] / [i915#9424])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#7118] / [i915#9424])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555]) +6 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#3555]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8814]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#13049])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#13049])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-9: NOTRUN -> [SKIP][197] ([i915#13049]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][198] +246 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#13049]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [PASS][200] -> [FAIL][201] ([i915#13566])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html
- shard-tglu: [PASS][202] -> [FAIL][203] ([i915#13566]) +1 other test fail
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][204] ([i915#13566])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][205] -> [INCOMPLETE][206] ([i915#12358]) +1 other test incomplete
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-glk: NOTRUN -> [DMESG-WARN][207] ([i915#118])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#4103] / [i915#4213]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#4103]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][210] +35 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#13046] / [i915#5354]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#13046] / [i915#5354]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9809])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9833])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#9723])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [PASS][216] -> [SKIP][217] ([i915#3555]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#13749])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-9/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#13749])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-4/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#13748])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_dp_link_training@uhbr-mst.html
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#13748])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#13748])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-15/igt@kms_dp_link_training@uhbr-mst.html
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#13748])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#13707])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#13707])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#8812])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-1/igt@kms_dsc@dsc-basic.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-9: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#3840] / [i915#9053])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#9878])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-9: NOTRUN -> [SKIP][233] ([i915#3469])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#4854])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#1839]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#1839])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#1839])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-15/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#9337])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-19/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#9337])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-7/igt@kms_feature_discovery@dp-mst.html
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#9337])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-9: NOTRUN -> [SKIP][241] ([i915#658])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#4881])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3637] / [i915#9934]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][244] -> [FAIL][245] ([i915#11832] / [i915#13734]) +3 other tests fail
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb1/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#8381])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#9934]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#3637] / [i915#9934]) +4 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][249] ([i915#12745] / [i915#4839]) +1 other test incomplete
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][250] ([i915#9934]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][251] ([i915#4839])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk4/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#9934]) +8 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#3637] / [i915#9934]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#8381])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][255] ([i915#12745])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [PASS][256] -> [FAIL][257] ([i915#13734]) +5 other tests fail
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-7/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
- shard-mtlp: [PASS][258] -> [FAIL][259] ([i915#13734]) +2 other tests fail
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1:
- shard-snb: [PASS][260] -> [FAIL][261] ([i915#13734]) +3 other tests fail
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-snb6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#2672])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672] / [i915#3555])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][265] ([i915#2672]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +4 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#2587] / [i915#2672]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8813])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#8810] / [i915#8813])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#2672]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][272] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#8813]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#3555])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-dg2-9: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#2587] / [i915#2672])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#2672] / [i915#3555])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#2587] / [i915#2672])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][280] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][281] ([i915#8708]) +4 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#8708]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#8708]) +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#8708]) +15 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-9: NOTRUN -> [SKIP][285] ([i915#5354]) +13 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#5354]) +24 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-9: NOTRUN -> [SKIP][287] ([i915#10055])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#3458]) +11 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#3023]) +41 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3458]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][291] +8 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#1825]) +59 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#1825]) +9 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#5439])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#5439])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][296] ([i915#3458]) +10 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][297] +59 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [PASS][298] -> [SKIP][299] ([i915#13030])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-tglu-10/igt@kms_hdmi_inject@inject-audio.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-9: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-dg2: [PASS][301] -> [SKIP][302] ([i915#3555] / [i915#8228]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-10/igt@kms_hdr@static-swap.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8228]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_hdr@static-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#3555] / [i915#8228])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#10656])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-16/igt@kms_joiner@basic-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#10656])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-6/igt@kms_joiner@basic-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#10656])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#12388])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#12388])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#12388])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#12394])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#13522])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#13522])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-9: NOTRUN -> [SKIP][314] ([i915#4816])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#6301])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#6301])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][317] +39 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][318] +16 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][319] ([i915#12178])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][320] ([i915#7862]) +1 other test fail
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#13958]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg1: NOTRUN -> [SKIP][322] ([i915#13958])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-19/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#13958])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#8806])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#6953] / [i915#9423])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-9: NOTRUN -> [SKIP][326] ([i915#12247] / [i915#9423])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a:
- shard-dg2-9: NOTRUN -> [SKIP][327] ([i915#12247]) +3 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#12247]) +12 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#12247] / [i915#9423])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#12247]) +11 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#12247] / [i915#6953])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#12247] / [i915#3555])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12247]) +7 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][335] ([i915#12247] / [i915#3555] / [i915#6953])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#5354]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-9: NOTRUN -> [SKIP][337] ([i915#9685])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#3828])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#5978])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu-1: NOTRUN -> [FAIL][340] ([i915#9295])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#9685])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
- shard-mtlp: NOTRUN -> [FAIL][342] ([i915#12912])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#9519]) +2 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#9519])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [PASS][345] -> [SKIP][346] ([i915#9519])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#9519])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#6524] / [i915#6805]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#6524])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_prime@d3hot.html
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#6524])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-19/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][351] ([i915#11520]) +10 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#11520]) +15 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][353] ([i915#9808])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#12316]) +4 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#11520]) +4 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#11520]) +9 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][357] ([i915#11520])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#11520]) +2 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#11520]) +1 other test skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-19/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2-9: NOTRUN -> [SKIP][360] ([i915#11520]) +4 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#9683])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-9: NOTRUN -> [SKIP][362] ([i915#9683])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#9683]) +1 other test skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#9683]) +2 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#9688]) +12 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +9 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +19 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#1072] / [i915#9732]) +3 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-15/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +29 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-sprite-blt:
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#9732]) +13 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-8/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#9732]) +9 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#9685]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#12755]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#4235])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][375] ([i915#12755] / [i915#5190])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#5289])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#5289])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#12755])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#3555]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][380] ([i915#13179]) +1 other test abort
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@kms_selftest@drm_framebuffer.html
- shard-mtlp: NOTRUN -> [ABORT][381] ([i915#13179]) +1 other test abort
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@kms_selftest@drm_framebuffer.html
- shard-dg2-9: NOTRUN -> [ABORT][382] ([i915#13179]) +1 other test abort
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#8623])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#8623])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#9906]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flipline:
- shard-dg2-9: NOTRUN -> [SKIP][386] ([i915#3555]) +3 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-dg2-9: NOTRUN -> [SKIP][387] ([i915#11920])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-mtlp: NOTRUN -> [SKIP][388] ([i915#8808] / [i915#9906])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-7/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2-9: NOTRUN -> [SKIP][389] ([i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#2437])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-9/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][391] ([i915#2437])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk4/igt@kms_writeback@writeback-fb-id.html
- shard-dg2: NOTRUN -> [SKIP][392] ([i915#2437])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html
- shard-tglu-1: NOTRUN -> [SKIP][393] ([i915#2437])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-rkl: [PASS][394] -> [FAIL][395] ([i915#10538])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][396] ([i915#2436])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#2434])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][398] ([i915#2434])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-6/igt@perf@mi-rpc.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][399] ([i915#9100]) +1 other test fail
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-accuracy-50@vecs0:
- shard-rkl: NOTRUN -> [DMESG-WARN][400] ([i915#12964]) +17 other tests dmesg-warn
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@perf_pmu@busy-accuracy-50@vecs0.html
* igt@perf_pmu@busy-accuracy-98:
- shard-tglu: [PASS][401] -> [FAIL][402] ([i915#4349]) +2 other tests fail
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-tglu-9/igt@perf_pmu@busy-accuracy-98.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@frequency:
- shard-dg2: NOTRUN -> [FAIL][403] ([i915#12549] / [i915#6806]) +1 other test fail
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@perf_pmu@frequency.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [PASS][404] -> [INCOMPLETE][405] ([i915#13356])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-glk4/igt@perf_pmu@rc6-suspend.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk8/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2-9: NOTRUN -> [SKIP][406] ([i915#3708])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][407] ([i915#9917])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][408] ([i915#12910]) +10 other tests fail
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-4/igt@sriov_basic@bind-unbind-vf@vf-5.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2-9: NOTRUN -> [SKIP][409] ([i915#9917])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][410] ([i915#12910]) +8 other tests fail
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][411] ([i915#4818])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ctx_isolation@nonpriv-switch:
- shard-mtlp: [INCOMPLETE][412] -> [PASS][413] +1 other test pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-7/igt@gem_ctx_isolation@nonpriv-switch.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-3/igt@gem_ctx_isolation@nonpriv-switch.html
* igt@gem_eio@in-flight-internal-1us:
- shard-mtlp: [ABORT][414] ([i915#13193] / [i915#13723]) -> [PASS][415] +2 other tests pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-7/igt@gem_eio@in-flight-internal-1us.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-1/igt@gem_eio@in-flight-internal-1us.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][416] ([i915#12543] / [i915#5784]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-13/igt@gem_eio@reset-stress.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-17/igt@gem_eio@reset-stress.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][418] ([i915#14044] / [i915#5493]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: [TIMEOUT][420] ([i915#12917] / [i915#12964]) -> [PASS][421] +1 other test pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: [FAIL][422] ([i915#12941]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-tglu-9/igt@gem_tiled_swapping@non-threaded.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@gem_tiled_swapping@non-threaded.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][424] ([i915#3591]) -> [PASS][425] +2 other tests pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_selftest@live@sanitycheck:
- shard-snb: [ABORT][426] ([i915#11703]) -> [PASS][427] +1 other test pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-snb7/igt@i915_selftest@live@sanitycheck.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb1/igt@i915_selftest@live@sanitycheck.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk: [INCOMPLETE][428] ([i915#4817]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-glk3/igt@i915_suspend@basic-s3-without-i915.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][430] ([i915#5138]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-dg1: [DMESG-WARN][432] ([i915#4423]) -> [PASS][433] +4 other tests pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-19/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-offscreen-64x64:
- shard-rkl: [DMESG-WARN][434] ([i915#12964]) -> [PASS][435] +18 other tests pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-64x64.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-64x64.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][436] ([i915#13566]) -> [PASS][437] +3 other tests pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [FAIL][438] ([i915#13566]) -> [PASS][439] +2 other tests pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-rkl: [FAIL][440] ([i915#2346]) -> [PASS][441] +1 other test pass
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][442] ([i915#13707]) -> [PASS][443]
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [INCOMPLETE][444] ([i915#12314]) -> [PASS][445] +1 other test pass
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-snb6/igt@kms_flip@2x-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb6/igt@kms_flip@2x-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
- shard-snb: [FAIL][446] ([i915#13734]) -> [PASS][447] +4 other tests pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-snb6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb2/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-rkl: [FAIL][448] ([i915#11832] / [i915#13734]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate.html
- shard-dg1: [FAIL][450] ([i915#13734]) -> [PASS][451]
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-18/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][452] ([i915#13734]) -> [PASS][453] +1 other test pass
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1:
- shard-rkl: [FAIL][454] ([i915#13734]) -> [PASS][455] +1 other test pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-rkl: [DMESG-WARN][456] ([i915#12917] / [i915#12964]) -> [PASS][457]
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-3/igt@kms_flip_tiling@flip-change-tiling.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-snb: [SKIP][458] -> [PASS][459] +3 other tests pass
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][460] ([i915#3555] / [i915#8228]) -> [PASS][461]
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-4/igt@kms_hdr@static-toggle.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@kms_hdr@static-toggle.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][462] ([i915#9519]) -> [PASS][463]
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][464] ([i915#9519]) -> [PASS][465] +1 other test pass
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][466] ([i915#5465]) -> [PASS][467] +2 other tests pass
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][468] ([i915#4349]) -> [PASS][469] +4 other tests pass
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@busy-idle:
- shard-mtlp: [FAIL][470] ([i915#4349]) -> [PASS][471] +7 other tests pass
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-mtlp-1/igt@perf_pmu@busy-idle.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-mtlp-8/igt@perf_pmu@busy-idle.html
* igt@perf_pmu@busy-idle@vcs0:
- shard-dg1: [FAIL][472] ([i915#4349]) -> [PASS][473] +2 other tests pass
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-17/igt@perf_pmu@busy-idle@vcs0.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-14/igt@perf_pmu@busy-idle@vcs0.html
#### Warnings ####
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: [SKIP][474] ([i915#13717]) -> [TIMEOUT][475] ([i915#12917] / [i915#12964])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@i915_selftest@mock:
- shard-rkl: [DMESG-WARN][476] ([i915#12964] / [i915#9311]) -> [DMESG-WARN][477] ([i915#9311])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-5/igt@i915_selftest@mock.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-5/igt@i915_selftest@mock.html
* igt@kms_content_protection@legacy:
- shard-dg2: [FAIL][478] ([i915#7173]) -> [SKIP][479] ([i915#7118] / [i915#9424])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-11/igt@kms_content_protection@legacy.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][480] ([i915#9424]) -> [SKIP][481] ([i915#9433])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-12/igt@kms_content_protection@mei-interface.html
- shard-snb: [SKIP][482] -> [INCOMPLETE][483] ([i915#9878])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-snb5/igt@kms_content_protection@mei-interface.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-snb1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][484] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][485] ([i915#7118] / [i915#9424])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-10/igt@kms_content_protection@type1.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [FAIL][486] ([i915#13566]) -> [DMESG-WARN][487] ([i915#12964])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg1: [SKIP][488] ([i915#4423]) -> [SKIP][489] +2 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-19/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-rkl: [DMESG-WARN][490] ([i915#12964]) -> [FAIL][491] ([i915#2346])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: [SKIP][492] ([i915#8708]) -> [SKIP][493] ([i915#4423] / [i915#8708])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][494] ([i915#3458]) -> [SKIP][495] ([i915#10433] / [i915#3458])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][496] ([i915#3458]) -> [SKIP][497] ([i915#3458] / [i915#4423]) +1 other test skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][498] ([i915#10433] / [i915#3458]) -> [SKIP][499] ([i915#3458]) +4 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: [SKIP][500] ([i915#3458] / [i915#4423]) -> [SKIP][501] ([i915#3458]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg1: [SKIP][502] ([i915#10656] / [i915#4423]) -> [SKIP][503] ([i915#10656])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-19/igt@kms_joiner@invalid-modeset-big-joiner.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-17/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane_lowres@tiling-4:
- shard-dg1: [SKIP][504] ([i915#3555] / [i915#4423]) -> [SKIP][505] ([i915#3555])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-16/igt@kms_plane_lowres@tiling-4.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-16/igt@kms_plane_lowres@tiling-4.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][506] ([i915#9519]) -> [SKIP][507] ([i915#12916])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg1: [SKIP][508] ([i915#1072] / [i915#9732]) -> [SKIP][509] ([i915#1072] / [i915#4423] / [i915#9732]) +1 other test skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16407/shard-dg1-16/igt@kms_psr@pr-cursor-mmap-cpu.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_147081v4/shard-dg1-16/igt@kms_psr@pr-cursor-mmap-cpu.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12912
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13197
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14044]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14044
[i915#14076]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14076
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* IGT: IGT_8315 -> IGTPW_12959
* Linux: CI_DRM_16407 -> Patchwork_147081v4
CI-20190529: 20190529
CI_DRM_16407: 95956f65403ec2f6784fca383eecbb54431ddebc @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12959: 7389f11fe4e9068b04a9ee4d1a2dc0e3ed808e29 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8315: c85ef0df47b498f999b43dad6a5cc509228f953a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_147081v4: 95956f65403ec2f6784fca383eecbb54431ddebc @ 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_147081v4/index.html
[-- Attachment #2: Type: text/html, Size: 172040 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev5)
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
` (6 preceding siblings ...)
2025-04-12 6:09 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-05-07 21:06 ` Patchwork
2025-05-12 15:57 ` ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev6) Patchwork
2025-05-17 23:09 ` [PATCH v2 0/2] drm/i915: DG1 fixes Andi Shyti
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-05-07 21:06 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: DG1 fixes (rev5)
URL : https://patchwork.freedesktop.org/series/147081/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev6)
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
` (7 preceding siblings ...)
2025-05-07 21:06 ` ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev5) Patchwork
@ 2025-05-12 15:57 ` Patchwork
2025-05-17 23:09 ` [PATCH v2 0/2] drm/i915: DG1 fixes Andi Shyti
9 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-05-12 15:57 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: DG1 fixes (rev6)
URL : https://patchwork.freedesktop.org/series/147081/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1'
+./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings
+./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [PATCH v2 0/2] drm/i915: DG1 fixes
2025-04-11 14:43 [PATCH v2 0/2] drm/i915: DG1 fixes Ville Syrjala
` (8 preceding siblings ...)
2025-05-12 15:57 ` ✗ Fi.CI.SPARSE: warning for drm/i915: DG1 fixes (rev6) Patchwork
@ 2025-05-17 23:09 ` Andi Shyti
9 siblings, 0 replies; 15+ messages in thread
From: Andi Shyti @ 2025-05-17 23:09 UTC (permalink / raw)
To: Ville Syrjala; +Cc: intel-gfx
Hi Ville,
> Ville Syrjälä (2):
> drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1
> drm/i915/pci: Remove force_probe requirement for DG1
merged to drm-intel-gt-next.
Thank you,
Andi
^ permalink raw reply [flat|nested] 15+ messages in thread