* [PATCH] drm/i195: Fix format string truncation warning
@ 2025-11-07 16:42 Ard Biesheuvel
2025-11-07 20:48 ` Tvrtko Ursulin
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: Ard Biesheuvel @ 2025-11-07 16:42 UTC (permalink / raw)
To: linux-kernel
Cc: Ard Biesheuvel, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin, David Airlie, Simona Vetter, intel-gfx, dri-devel
From: Ard Biesheuvel <ardb@kernel.org>
GCC notices that the 16-byte uabi_name field could theoretically be too
small for the formatted string if the instance number exceeds 100.
Given that there are apparently ABI concerns here, this is the minimal
fix that shuts up the compiler without changing the output or the
maximum length for existing values < 100.
drivers/gpu/drm/i915/intel_memory_region.c: In function ‘intel_memory_region_create’:
drivers/gpu/drm/i915/intel_memory_region.c:273:61: error: ‘%u’ directive output may be truncated writing between 1 and 5 bytes into a region of size between 3 and 11 [-Werror=format-truncation=]
273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u",
| ^~
drivers/gpu/drm/i915/intel_memory_region.c:273:58: note: directive argument in the range [0, 65535]
273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u",
| ^~~~~~
drivers/gpu/drm/i915/intel_memory_region.c:273:9: note: ‘snprintf’ output between 7 and 19 bytes into a destination of size 16
273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u",
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
274 | intel_memory_type_str(type), instance);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
---
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Tvrtko Ursulin <tursulin@ursulin.net>
Cc: David Airlie <airlied@gmail.com>
Cc: Simona Vetter <simona@ffwll.ch>
Cc: intel-gfx@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org
This is unlikely to be the right fix, but sending a wrong patch is
usually a better way to elicit a response than just sending a bug
report.
drivers/gpu/drm/i915/intel_memory_region.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/intel_memory_region.c b/drivers/gpu/drm/i915/intel_memory_region.c
index 59bd603e6deb..ad4afcf0c58a 100644
--- a/drivers/gpu/drm/i915/intel_memory_region.c
+++ b/drivers/gpu/drm/i915/intel_memory_region.c
@@ -271,7 +271,7 @@ intel_memory_region_create(struct drm_i915_private *i915,
mem->instance = instance;
snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u",
- intel_memory_type_str(type), instance);
+ intel_memory_type_str(type), instance % 100);
mutex_init(&mem->objects.lock);
INIT_LIST_HEAD(&mem->objects.list);
--
2.51.2.1041.gc1ab5b90ca-goog
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH] drm/i195: Fix format string truncation warning 2025-11-07 16:42 [PATCH] drm/i195: Fix format string truncation warning Ard Biesheuvel @ 2025-11-07 20:48 ` Tvrtko Ursulin 2025-11-09 18:00 ` Ard Biesheuvel 2025-11-10 15:34 ` ✓ i915.CI.BAT: success for " Patchwork 2025-11-10 19:32 ` ✓ i915.CI.Full: " Patchwork 2 siblings, 1 reply; 11+ messages in thread From: Tvrtko Ursulin @ 2025-11-07 20:48 UTC (permalink / raw) To: Ard Biesheuvel, linux-kernel Cc: Ard Biesheuvel, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Simona Vetter, intel-gfx, dri-devel On 07/11/2025 16:42, Ard Biesheuvel wrote: > From: Ard Biesheuvel <ardb@kernel.org> > > GCC notices that the 16-byte uabi_name field could theoretically be too > small for the formatted string if the instance number exceeds 100. > > Given that there are apparently ABI concerns here, this is the minimal > fix that shuts up the compiler without changing the output or the > maximum length for existing values < 100. What would be those ABI concerns? I don't immediately see any. > drivers/gpu/drm/i915/intel_memory_region.c: In function ‘intel_memory_region_create’: > drivers/gpu/drm/i915/intel_memory_region.c:273:61: error: ‘%u’ directive output may be truncated writing between 1 and 5 bytes into a region of size between 3 and 11 [-Werror=format-truncation=] > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > | ^~ > drivers/gpu/drm/i915/intel_memory_region.c:273:58: note: directive argument in the range [0, 65535] > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > | ^~~~~~ > drivers/gpu/drm/i915/intel_memory_region.c:273:9: note: ‘snprintf’ output between 7 and 19 bytes into a destination of size 16 > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > 274 | intel_memory_type_str(type), instance); > | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > Signed-off-by: Ard Biesheuvel <ardb@kernel.org> > --- > Cc: Jani Nikula <jani.nikula@linux.intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Cc: Tvrtko Ursulin <tursulin@ursulin.net> > Cc: David Airlie <airlied@gmail.com> > Cc: Simona Vetter <simona@ffwll.ch> > Cc: intel-gfx@lists.freedesktop.org > Cc: dri-devel@lists.freedesktop.org > > This is unlikely to be the right fix, but sending a wrong patch is > usually a better way to elicit a response than just sending a bug > report. > > drivers/gpu/drm/i915/intel_memory_region.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/intel_memory_region.c b/drivers/gpu/drm/i915/intel_memory_region.c > index 59bd603e6deb..ad4afcf0c58a 100644 > --- a/drivers/gpu/drm/i915/intel_memory_region.c > +++ b/drivers/gpu/drm/i915/intel_memory_region.c > @@ -271,7 +271,7 @@ intel_memory_region_create(struct drm_i915_private *i915, > mem->instance = instance; > > snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > - intel_memory_type_str(type), instance); > + intel_memory_type_str(type), instance % 100); It's a theoretical issue only since there is no hardware with a double digit number of instances. But I guess much prettier fix would be to simply grow the buffer. Also, hm, how come gcc does not find the mem->name vsnprintf from intel_memory_region_set_name? Regards, Tvrtko > > mutex_init(&mem->objects.lock); > INIT_LIST_HEAD(&mem->objects.list); ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i195: Fix format string truncation warning 2025-11-07 20:48 ` Tvrtko Ursulin @ 2025-11-09 18:00 ` Ard Biesheuvel 2025-12-05 10:48 ` Ard Biesheuvel 0 siblings, 1 reply; 11+ messages in thread From: Ard Biesheuvel @ 2025-11-09 18:00 UTC (permalink / raw) To: Tvrtko Ursulin Cc: Ard Biesheuvel, linux-kernel, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Simona Vetter, intel-gfx, dri-devel On Sat, 8 Nov 2025 at 01:27, Tvrtko Ursulin <tursulin@ursulin.net> wrote: > > > On 07/11/2025 16:42, Ard Biesheuvel wrote: > > From: Ard Biesheuvel <ardb@kernel.org> > > > > GCC notices that the 16-byte uabi_name field could theoretically be too > > small for the formatted string if the instance number exceeds 100. > > > > Given that there are apparently ABI concerns here, this is the minimal > > fix that shuts up the compiler without changing the output or the > > maximum length for existing values < 100. > > What would be those ABI concerns? I don't immediately see any. > > drivers/gpu/drm/i915/intel_memory_region.c: In function ‘intel_memory_region_create’: > > drivers/gpu/drm/i915/intel_memory_region.c:273:61: error: ‘%u’ directive output may be truncated writing between 1 and 5 bytes into a region of size between 3 and 11 [-Werror=format-truncation=] > > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > > | ^~ > > drivers/gpu/drm/i915/intel_memory_region.c:273:58: note: directive argument in the range [0, 65535] > > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > > | ^~~~~~ > > drivers/gpu/drm/i915/intel_memory_region.c:273:9: note: ‘snprintf’ output between 7 and 19 bytes into a destination of size 16 > > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > 274 | intel_memory_type_str(type), instance); > > | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > > > Signed-off-by: Ard Biesheuvel <ardb@kernel.org> > > --- > > Cc: Jani Nikula <jani.nikula@linux.intel.com> > > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > > Cc: Tvrtko Ursulin <tursulin@ursulin.net> > > Cc: David Airlie <airlied@gmail.com> > > Cc: Simona Vetter <simona@ffwll.ch> > > Cc: intel-gfx@lists.freedesktop.org > > Cc: dri-devel@lists.freedesktop.org > > > > This is unlikely to be the right fix, but sending a wrong patch is > > usually a better way to elicit a response than just sending a bug > > report. > > > > drivers/gpu/drm/i915/intel_memory_region.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/intel_memory_region.c b/drivers/gpu/drm/i915/intel_memory_region.c > > index 59bd603e6deb..ad4afcf0c58a 100644 > > --- a/drivers/gpu/drm/i915/intel_memory_region.c > > +++ b/drivers/gpu/drm/i915/intel_memory_region.c > > @@ -271,7 +271,7 @@ intel_memory_region_create(struct drm_i915_private *i915, > > mem->instance = instance; > > > > snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > > - intel_memory_type_str(type), instance); > > + intel_memory_type_str(type), instance % 100); > It's a theoretical issue only since there is no hardware with a double > digit number of instances. > > But I guess much prettier fix would be to simply grow the buffer. > Whatever works for you - I don't really understand this code anyway. > Also, hm, how come gcc does not find the mem->name vsnprintf from > intel_memory_region_set_name? > The optimizer works in mysterious ways, I guess. I cannot explain why I am the only one seeing this in the first place, but the warning seems legit to me. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i195: Fix format string truncation warning 2025-11-09 18:00 ` Ard Biesheuvel @ 2025-12-05 10:48 ` Ard Biesheuvel 2025-12-05 11:13 ` Tvrtko Ursulin 2025-12-05 18:28 ` David Laight 0 siblings, 2 replies; 11+ messages in thread From: Ard Biesheuvel @ 2025-12-05 10:48 UTC (permalink / raw) To: Tvrtko Ursulin Cc: Ard Biesheuvel, linux-kernel, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Simona Vetter, intel-gfx, dri-devel On Sun, 9 Nov 2025 at 19:00, Ard Biesheuvel <ardb@kernel.org> wrote: > > On Sat, 8 Nov 2025 at 01:27, Tvrtko Ursulin <tursulin@ursulin.net> wrote: > > > > > > On 07/11/2025 16:42, Ard Biesheuvel wrote: > > > From: Ard Biesheuvel <ardb@kernel.org> > > > > > > GCC notices that the 16-byte uabi_name field could theoretically be too > > > small for the formatted string if the instance number exceeds 100. > > > > > > Given that there are apparently ABI concerns here, this is the minimal > > > fix that shuts up the compiler without changing the output or the > > > maximum length for existing values < 100. > > > > What would be those ABI concerns? I don't immediately see any. > > > drivers/gpu/drm/i915/intel_memory_region.c: In function ‘intel_memory_region_create’: > > > drivers/gpu/drm/i915/intel_memory_region.c:273:61: error: ‘%u’ directive output may be truncated writing between 1 and 5 bytes into a region of size between 3 and 11 [-Werror=format-truncation=] > > > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > > > | ^~ > > > drivers/gpu/drm/i915/intel_memory_region.c:273:58: note: directive argument in the range [0, 65535] > > > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > > > | ^~~~~~ > > > drivers/gpu/drm/i915/intel_memory_region.c:273:9: note: ‘snprintf’ output between 7 and 19 bytes into a destination of size 16 > > > 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > > > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > > 274 | intel_memory_type_str(type), instance); > > > | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > > > > > Signed-off-by: Ard Biesheuvel <ardb@kernel.org> > > > --- > > > Cc: Jani Nikula <jani.nikula@linux.intel.com> > > > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > > > Cc: Tvrtko Ursulin <tursulin@ursulin.net> > > > Cc: David Airlie <airlied@gmail.com> > > > Cc: Simona Vetter <simona@ffwll.ch> > > > Cc: intel-gfx@lists.freedesktop.org > > > Cc: dri-devel@lists.freedesktop.org > > > > > > This is unlikely to be the right fix, but sending a wrong patch is > > > usually a better way to elicit a response than just sending a bug > > > report. > > > > > > drivers/gpu/drm/i915/intel_memory_region.c | 2 +- > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > diff --git a/drivers/gpu/drm/i915/intel_memory_region.c b/drivers/gpu/drm/i915/intel_memory_region.c > > > index 59bd603e6deb..ad4afcf0c58a 100644 > > > --- a/drivers/gpu/drm/i915/intel_memory_region.c > > > +++ b/drivers/gpu/drm/i915/intel_memory_region.c > > > @@ -271,7 +271,7 @@ intel_memory_region_create(struct drm_i915_private *i915, > > > mem->instance = instance; > > > > > > snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", > > > - intel_memory_type_str(type), instance); > > > + intel_memory_type_str(type), instance % 100); > > It's a theoretical issue only since there is no hardware with a double > > digit number of instances. > > > > But I guess much prettier fix would be to simply grow the buffer. > > > OK, so something like --- a/drivers/gpu/drm/i915/intel_memory_region.h +++ b/drivers/gpu/drm/i915/intel_memory_region.h @@ -72,7 +72,7 @@ struct intel_memory_region { u16 instance; enum intel_region_id id; char name[16]; - char uabi_name[16]; + char uabi_name[20]; bool private; /* not for userspace */ struct { > > Also, hm, how come gcc does not find the mem->name vsnprintf from > > intel_memory_region_set_name? > > > AFAICT, intel_memory_region_set_name() is never called with a format string that could produce more than 15/16 bytes of output. ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i195: Fix format string truncation warning 2025-12-05 10:48 ` Ard Biesheuvel @ 2025-12-05 11:13 ` Tvrtko Ursulin 2025-12-05 11:18 ` Jani Nikula 2025-12-05 18:28 ` David Laight 1 sibling, 1 reply; 11+ messages in thread From: Tvrtko Ursulin @ 2025-12-05 11:13 UTC (permalink / raw) To: Ard Biesheuvel Cc: Ard Biesheuvel, linux-kernel, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Simona Vetter, intel-gfx, dri-devel On 05/12/2025 10:48, Ard Biesheuvel wrote: > On Sun, 9 Nov 2025 at 19:00, Ard Biesheuvel <ardb@kernel.org> wrote: >> >> On Sat, 8 Nov 2025 at 01:27, Tvrtko Ursulin <tursulin@ursulin.net> wrote: >>> >>> >>> On 07/11/2025 16:42, Ard Biesheuvel wrote: >>>> From: Ard Biesheuvel <ardb@kernel.org> >>>> >>>> GCC notices that the 16-byte uabi_name field could theoretically be too >>>> small for the formatted string if the instance number exceeds 100. >>>> >>>> Given that there are apparently ABI concerns here, this is the minimal >>>> fix that shuts up the compiler without changing the output or the >>>> maximum length for existing values < 100. >>> >>> What would be those ABI concerns? I don't immediately see any. >>>> drivers/gpu/drm/i915/intel_memory_region.c: In function ‘intel_memory_region_create’: >>>> drivers/gpu/drm/i915/intel_memory_region.c:273:61: error: ‘%u’ directive output may be truncated writing between 1 and 5 bytes into a region of size between 3 and 11 [-Werror=format-truncation=] >>>> 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", >>>> | ^~ >>>> drivers/gpu/drm/i915/intel_memory_region.c:273:58: note: directive argument in the range [0, 65535] >>>> 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", >>>> | ^~~~~~ >>>> drivers/gpu/drm/i915/intel_memory_region.c:273:9: note: ‘snprintf’ output between 7 and 19 bytes into a destination of size 16 >>>> 273 | snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", >>>> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >>>> 274 | intel_memory_type_str(type), instance); >>>> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ >>>> >>>> Signed-off-by: Ard Biesheuvel <ardb@kernel.org> >>>> --- >>>> Cc: Jani Nikula <jani.nikula@linux.intel.com> >>>> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> >>>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> >>>> Cc: Tvrtko Ursulin <tursulin@ursulin.net> >>>> Cc: David Airlie <airlied@gmail.com> >>>> Cc: Simona Vetter <simona@ffwll.ch> >>>> Cc: intel-gfx@lists.freedesktop.org >>>> Cc: dri-devel@lists.freedesktop.org >>>> >>>> This is unlikely to be the right fix, but sending a wrong patch is >>>> usually a better way to elicit a response than just sending a bug >>>> report. >>>> >>>> drivers/gpu/drm/i915/intel_memory_region.c | 2 +- >>>> 1 file changed, 1 insertion(+), 1 deletion(-) >>>> >>>> diff --git a/drivers/gpu/drm/i915/intel_memory_region.c b/drivers/gpu/drm/i915/intel_memory_region.c >>>> index 59bd603e6deb..ad4afcf0c58a 100644 >>>> --- a/drivers/gpu/drm/i915/intel_memory_region.c >>>> +++ b/drivers/gpu/drm/i915/intel_memory_region.c >>>> @@ -271,7 +271,7 @@ intel_memory_region_create(struct drm_i915_private *i915, >>>> mem->instance = instance; >>>> >>>> snprintf(mem->uabi_name, sizeof(mem->uabi_name), "%s%u", >>>> - intel_memory_type_str(type), instance); >>>> + intel_memory_type_str(type), instance % 100); >>> It's a theoretical issue only since there is no hardware with a double >>> digit number of instances. >>> >>> But I guess much prettier fix would be to simply grow the buffer. >>> >> > > OK, so something like > > --- a/drivers/gpu/drm/i915/intel_memory_region.h > +++ b/drivers/gpu/drm/i915/intel_memory_region.h > @@ -72,7 +72,7 @@ struct intel_memory_region { > u16 instance; > enum intel_region_id id; > char name[16]; > - char uabi_name[16]; > + char uabi_name[20]; > bool private; /* not for userspace */ > > struct { Yes please. There is only two of those objects at majority of systems, and 3-4 on a few discrete cards supported by i915, so no big deal to grow them a tiny bit. >>> Also, hm, how come gcc does not find the mem->name vsnprintf from >>> intel_memory_region_set_name? >>> >> > > AFAICT, intel_memory_region_set_name() is never called with a format > string that could produce more than 15/16 bytes of output. Right, I reminded myself that the non-uabi visible name does not have the instance number in it. Regards, Tvrtko ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i195: Fix format string truncation warning 2025-12-05 11:13 ` Tvrtko Ursulin @ 2025-12-05 11:18 ` Jani Nikula 0 siblings, 0 replies; 11+ messages in thread From: Jani Nikula @ 2025-12-05 11:18 UTC (permalink / raw) To: Tvrtko Ursulin, Ard Biesheuvel Cc: Ard Biesheuvel, linux-kernel, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Simona Vetter, intel-gfx, dri-devel On Fri, 05 Dec 2025, Tvrtko Ursulin <tursulin@ursulin.net> wrote: > On 05/12/2025 10:48, Ard Biesheuvel wrote: >> OK, so something like >> >> --- a/drivers/gpu/drm/i915/intel_memory_region.h >> +++ b/drivers/gpu/drm/i915/intel_memory_region.h >> @@ -72,7 +72,7 @@ struct intel_memory_region { >> u16 instance; >> enum intel_region_id id; >> char name[16]; >> - char uabi_name[16]; >> + char uabi_name[20]; >> bool private; /* not for userspace */ >> >> struct { > > Yes please. There is only two of those objects at majority of systems, > and 3-4 on a few discrete cards supported by i915, so no big deal to > grow them a tiny bit. For v2, please also fix the subject prefix: drm/i915. BR, Jani. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i195: Fix format string truncation warning 2025-12-05 10:48 ` Ard Biesheuvel 2025-12-05 11:13 ` Tvrtko Ursulin @ 2025-12-05 18:28 ` David Laight 2025-12-08 7:37 ` Tvrtko Ursulin 1 sibling, 1 reply; 11+ messages in thread From: David Laight @ 2025-12-05 18:28 UTC (permalink / raw) To: Ard Biesheuvel Cc: Tvrtko Ursulin, Ard Biesheuvel, linux-kernel, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Simona Vetter, intel-gfx, dri-devel On Fri, 5 Dec 2025 11:48:08 +0100 Ard Biesheuvel <ardb@kernel.org> wrote: > On Sun, 9 Nov 2025 at 19:00, Ard Biesheuvel <ardb@kernel.org> wrote: ... > > > But I guess much prettier fix would be to simply grow the buffer. > > > > > > > OK, so something like > > --- a/drivers/gpu/drm/i915/intel_memory_region.h > +++ b/drivers/gpu/drm/i915/intel_memory_region.h > @@ -72,7 +72,7 @@ struct intel_memory_region { > u16 instance; > enum intel_region_id id; > char name[16]; > - char uabi_name[16]; > + char uabi_name[20]; The observant will notice the 7 bytes of padding following 'private', and another 7 a little later on. (I' pretty sure 'bool' is u8). So extending the buffer doesn't even grow the structure. The string is only used when printing some stats. I got lost in a list of #defines and function pointers trying to find the actual function that did the 'printf'. David > bool private; /* not for userspace */ > > struct { > > > > > > Also, hm, how come gcc does not find the mem->name vsnprintf from > > > intel_memory_region_set_name? > > > > > > > AFAICT, intel_memory_region_set_name() is never called with a format > string that could produce more than 15/16 bytes of output. > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i195: Fix format string truncation warning 2025-12-05 18:28 ` David Laight @ 2025-12-08 7:37 ` Tvrtko Ursulin 2025-12-09 13:54 ` Jani Nikula 0 siblings, 1 reply; 11+ messages in thread From: Tvrtko Ursulin @ 2025-12-08 7:37 UTC (permalink / raw) To: David Laight, Ard Biesheuvel Cc: Ard Biesheuvel, linux-kernel, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Simona Vetter, intel-gfx, dri-devel On 05/12/2025 19:28, David Laight wrote: > On Fri, 5 Dec 2025 11:48:08 +0100 > Ard Biesheuvel <ardb@kernel.org> wrote: > >> On Sun, 9 Nov 2025 at 19:00, Ard Biesheuvel <ardb@kernel.org> wrote: > ... >>>> But I guess much prettier fix would be to simply grow the buffer. >>>> >>> >> OK, so something like >> >> --- a/drivers/gpu/drm/i915/intel_memory_region.h >> +++ b/drivers/gpu/drm/i915/intel_memory_region.h >> @@ -72,7 +72,7 @@ struct intel_memory_region { >> u16 instance; >> enum intel_region_id id; >> char name[16]; >> - char uabi_name[16]; >> + char uabi_name[20]; > The observant will notice the 7 bytes of padding following 'private', > and another 7 a little later on. > (I' pretty sure 'bool' is u8). Oh well, them holes love to be added over time. Anyway, I have pushed this patch to drm-intel-gt-next so it will appear in 6.20. Only now I realised I could have suggested to add some Fixes: tag to it, so it would get automatically picked for 6.19. My colleagues who are handling drm-intel-next-fixes for 6.19 could perhaps manually pick it up. Tvrtko > > So extending the buffer doesn't even grow the structure. > The string is only used when printing some stats. > I got lost in a list of #defines and function pointers trying to find > the actual function that did the 'printf'. > > David > >> bool private; /* not for userspace */ >> >> struct { >> >> >> >>>> Also, hm, how come gcc does not find the mem->name vsnprintf from >>>> intel_memory_region_set_name? >>>> >>> >> AFAICT, intel_memory_region_set_name() is never called with a format >> string that could produce more than 15/16 bytes of output. >> ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH] drm/i195: Fix format string truncation warning 2025-12-08 7:37 ` Tvrtko Ursulin @ 2025-12-09 13:54 ` Jani Nikula 0 siblings, 0 replies; 11+ messages in thread From: Jani Nikula @ 2025-12-09 13:54 UTC (permalink / raw) To: Tvrtko Ursulin, David Laight, Ard Biesheuvel Cc: Ard Biesheuvel, linux-kernel, Joonas Lahtinen, Rodrigo Vivi, David Airlie, Simona Vetter, intel-gfx, dri-devel On Mon, 08 Dec 2025, Tvrtko Ursulin <tursulin@ursulin.net> wrote: > Anyway, I have pushed this patch to drm-intel-gt-next so it will appear > in 6.20. Only now I realised I could have suggested to add some Fixes: > tag to it, so it would get automatically picked for 6.19. > > My colleagues who are handling drm-intel-next-fixes for 6.19 could > perhaps manually pick it up. Picked up with Fixes: 3b38d3515753 ("drm/i915: Add stable memory region names") Cc: <stable@vger.kernel.org> # v6.8+ added. BR, Jani. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for drm/i195: Fix format string truncation warning 2025-11-07 16:42 [PATCH] drm/i195: Fix format string truncation warning Ard Biesheuvel 2025-11-07 20:48 ` Tvrtko Ursulin @ 2025-11-10 15:34 ` Patchwork 2025-11-10 19:32 ` ✓ i915.CI.Full: " Patchwork 2 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-11-10 15:34 UTC (permalink / raw) To: Ard Biesheuvel; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3038 bytes --] == Series Details == Series: drm/i195: Fix format string truncation warning URL : https://patchwork.freedesktop.org/series/157320/ State : success == Summary == CI Bug Log - changes from CI_DRM_17522 -> Patchwork_157320v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_157320v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-n3050: [PASS][1] -> [ABORT][2] ([i915#12904]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/bat-arlh-3/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arlh-2: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/bat-arlh-2/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/bat-arlh-2/igt@i915_selftest@live@workarounds.html - bat-mtlp-6: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/bat-arls-6/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 Build changes ------------- * Linux: CI_DRM_17522 -> Patchwork_157320v1 CI-20190529: 20190529 CI_DRM_17522: 168074b8e855f611374ca5338a7d4dca0fc62ffa @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8617: 8617 Patchwork_157320v1: 168074b8e855f611374ca5338a7d4dca0fc62ffa @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/index.html [-- Attachment #2: Type: text/html, Size: 3925 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.Full: success for drm/i195: Fix format string truncation warning 2025-11-07 16:42 [PATCH] drm/i195: Fix format string truncation warning Ard Biesheuvel 2025-11-07 20:48 ` Tvrtko Ursulin 2025-11-10 15:34 ` ✓ i915.CI.BAT: success for " Patchwork @ 2025-11-10 19:32 ` Patchwork 2 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-11-10 19:32 UTC (permalink / raw) To: Ard Biesheuvel; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 132497 bytes --] == Series Details == Series: drm/i195: Fix format string truncation warning URL : https://patchwork.freedesktop.org/series/157320/ State : success == Summary == CI Bug Log - changes from CI_DRM_17522_full -> Patchwork_157320v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-glk10 New tests --------- New tests have been introduced between CI_DRM_17522_full and Patchwork_157320v1_full: ### New IGT tests (1) ### * igt@kms_cursor_crc@cursor-onscreen-64x64@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [2.30] s Known issues ------------ Here are the changes found in Patchwork_157320v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][1] ([i915#11078]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#7697]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][3] ([i915#7697]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8555]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-hang: - shard-snb: NOTRUN -> [SKIP][5] ([i915#1099]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hang.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#280]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][7] ([i915#280]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#14544] / [i915#280]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#280]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][10] ([i915#13390]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk9/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#4525]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#4812]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_exec_balancer@sliced.html * igt@gem_exec_reloc@basic-concurrent16: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3281]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@gem_exec_reloc@basic-concurrent16.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3281]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#3281]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#14544] / [i915#3281]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#13356]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#4860]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][20] ([i915#4613]) +5 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk9/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@random: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#4613]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@gem_lmem_swapping@random.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#4613]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#14544] / [i915#4613]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_madvise@dontneed-before-pwrite: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#14544] / [i915#3282]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#284]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap@basic: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4083]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@ptrace: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4077]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@coherency: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4083]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@gem_mmap_wc@coherency.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#3282]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3282]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-self: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3282]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@gem_pwrite@basic-self.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#13398]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [TIMEOUT][33] ([i915#12917] / [i915#12964]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4270]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#5190] / [i915#8428]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#8428]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4885]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-unsync: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3297]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][39] ([i915#3323]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#3297]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3297]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_wait@wait@rcs0: - shard-rkl: [PASS][42] -> [DMESG-WARN][43] ([i915#12964]) +2 other tests dmesg-warn [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@gem_wait@wait@rcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-5/igt@gem_wait@wait@rcs0.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][44] +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][45] +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#14544] / [i915#2527]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#2527]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html - shard-tglu: NOTRUN -> [SKIP][48] ([i915#2527] / [i915#2856]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@secure-batches: - shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#2527] / [i915#2856]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#2856]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][51] -> [DMESG-WARN][52] ([i915#13029] / [i915#14545]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-8/igt@i915_module_load@reload-no-display.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-6/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#8399]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html - shard-tglu: NOTRUN -> [SKIP][54] ([i915#8399]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rps@thresholds-idle-park: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#11681]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#11681]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#14544] / [i915#4387]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][58] -> [DMESG-FAIL][59] ([i915#12061]) +1 other test dmesg-fail [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#7707]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2: - shard-glk: [PASS][61] -> [FAIL][62] ([i915#14888]) +1 other test fail [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk10: NOTRUN -> [INCOMPLETE][63] ([i915#12761]) +1 other test incomplete [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#9531]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#1769] / [i915#3555]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][66] ([i915#1769] / [i915#3555]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][67] ([i915#1769]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][68] ([i915#5956]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#5286]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][70] ([i915#5286]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#5286]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#5138]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-rkl: [PASS][74] -> [SKIP][75] ([i915#14544]) +38 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4538] / [i915#5190]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#10307] / [i915#10434] / [i915#6095]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#6095]) +19 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#6095]) +79 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#14098] / [i915#6095]) +36 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#6095]) +39 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#6095]) +40 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/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-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#10307] / [i915#6095]) +126 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [ABORT][85] ([i915#12796] / [i915#15132]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#6095]) +11 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [PASS][87] -> [INCOMPLETE][88] ([i915#12796]) +1 other test incomplete [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#6095]) +34 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#12313]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][91] +390 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3742]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#13783]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#11151] / [i915#7828]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][95] +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#11151] / [i915#7828]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#11151] / [i915#7828]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#11151] / [i915#7828]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#11151] / [i915#7828]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@degamma: - shard-rkl: [PASS][101] -> [SKIP][102] ([i915#12655] / [i915#14544]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_color@degamma.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_color@degamma.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#3116] / [i915#3299]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3299]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#3116]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][106] ([i915#3116] / [i915#3299]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#9424]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][108] ([i915#1339] / [i915#7173]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#13049]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: NOTRUN -> [FAIL][110] ([i915#13566]) +2 other tests fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: NOTRUN -> [FAIL][111] ([i915#13566]) +1 other test fail [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#13049]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#13049]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][114] -> [FAIL][115] ([i915#13566]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#13049]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][118] ([i915#12358] / [i915#14152] / [i915#7882]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [INCOMPLETE][119] ([i915#12358] / [i915#14152]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-tearing-framebuffer-change@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][120] ([i915#12964]) +3 other tests dmesg-warn [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-3/igt@kms_cursor_crc@cursor-tearing-framebuffer-change@pipe-a-hdmi-a-2.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#13046] / [i915#5354]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#4103]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-rkl: [PASS][123] -> [SKIP][124] ([i915#11190] / [i915#14544]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3804]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#1257]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#13749]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3840]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#3840]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#3555] / [i915#3840]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [PASS][131] -> [SKIP][132] ([i915#14544] / [i915#14561]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#3469]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-snb: NOTRUN -> [SKIP][134] +4 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-snb4/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#1839]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3637] / [i915#9934]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#9934]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#14544] / [i915#9934]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#3637] / [i915#9934]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#9934]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3637] / [i915#9934]) +6 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#9934]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [PASS][143] -> [SKIP][144] ([i915#14544] / [i915#3637]) +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#14544] / [i915#3637]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][146] ([i915#12745] / [i915#4839] / [i915#6113]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][147] ([i915#12745] / [i915#6113]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#2672] / [i915#3555]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][149] ([i915#2672] / [i915#3555]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-rkl: [PASS][150] -> [SKIP][151] ([i915#14544] / [i915#3555]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#2587] / [i915#2672]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#2587] / [i915#2672] / [i915#3555]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#2587] / [i915#2672] / [i915#3555]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#2672]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][156] ([i915#2587] / [i915#2672]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#2672]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#2672] / [i915#3555]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#2672] / [i915#3555] / [i915#8813]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#2672] / [i915#8813]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_flip_tiling@flip-change-tiling: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#14544] / [i915#3555]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_flip_tiling@flip-change-tiling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: [PASS][163] -> [SKIP][164] ([i915#14544] / [i915#1849] / [i915#5354]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#1825]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][166] +23 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#15102]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#15102] / [i915#3023]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#1825]) +9 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html - shard-tglu: NOTRUN -> [SKIP][170] +28 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#14544] / [i915#1849] / [i915#5354]) +15 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#15102]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#15102]) +8 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8708]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#8708]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#5354]) +9 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#15102] / [i915#3458]) +7 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#15102]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8228]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_hdr@invalid-hdr.html - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8228]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-dg2: [PASS][181] -> [SKIP][182] ([i915#3555] / [i915#8228]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-11/igt@kms_hdr@static-swap.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8228]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@uint-max-clock: - shard-rkl: [PASS][184] -> [SKIP][185] ([i915#14544] / [i915#3555] / [i915#8826]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_invalid_mode@uint-max-clock.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_invalid_mode@uint-max-clock.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#10656]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#10656]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#12339]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_lease@lease-invalid-plane: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#14544]) +30 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_lease@lease-invalid-plane.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#6301]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [INCOMPLETE][191] ([i915#13476]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane@plane-position-covered: - shard-rkl: [PASS][192] -> [SKIP][193] ([i915#14544] / [i915#8825]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_plane@plane-position-covered.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane@plane-position-covered.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-rkl: [PASS][194] -> [SKIP][195] ([i915#14544] / [i915#7294]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_plane_alpha_blend@alpha-7efc.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][196] ([i915#12178]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][197] ([i915#7862]) +1 other test fail [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8821]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#3555]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#12247]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#14544] / [i915#8152]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#12247] / [i915#14544]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#12247] / [i915#14544] / [i915#8152]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3555]) +4 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#12247]) +3 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-rkl: [PASS][207] -> [SKIP][208] ([i915#14544] / [i915#8152]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a: - shard-rkl: [PASS][209] -> [SKIP][210] ([i915#12247] / [i915#14544]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b: - shard-rkl: [PASS][211] -> [SKIP][212] ([i915#12247] / [i915#14544] / [i915#8152]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b: - shard-glk10: NOTRUN -> [SKIP][213] +53 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk10/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-rkl: [PASS][214] -> [SKIP][215] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#9812]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#9685]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3828]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#8430]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][220] -> [SKIP][221] ([i915#15073]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][222] -> [SKIP][223] ([i915#14544] / [i915#1849]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_pm_rpm@fences-dpms.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][224] -> [SKIP][225] ([i915#15073]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#15073]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][227] -> [SKIP][228] ([i915#14544] / [i915#15073]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pm-caching: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#4077]) +7 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_pm_rpm@pm-caching.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#6524]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-rkl: [PASS][231] -> [SKIP][232] ([i915#14544] / [i915#6524]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_prime@basic-crc-vgem.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html * igt@kms_properties@crtc-properties-legacy: - shard-rkl: [PASS][233] -> [SKIP][234] ([i915#11521] / [i915#14544]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_properties@crtc-properties-legacy.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#11520] / [i915#14544]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#11520]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#12316]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#9808]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][239] ([i915#11520]) +11 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#11520]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#11520]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#11520]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][243] ([i915#11520]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr-primary-blt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#9688]) +4 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_psr@fbc-psr-primary-blt@edp-1.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#1072] / [i915#9732]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#9732]) +10 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-8/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#1072] / [i915#9732]) +4 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#9732]) +10 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#9685]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#12755]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_sharpness_filter@filter-dpms: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#15232]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@kms_sharpness_filter@filter-dpms.html * igt@kms_sharpness_filter@filter-modifiers: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#15232]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@kms_sharpness_filter@filter-modifiers.html * igt@kms_sharpness_filter@invalid-filter-with-scaler: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#15232]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_sharpness_filter@invalid-filter-with-scaler.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#15232]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#12276]) +1 other test incomplete [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#9906]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-check-output: - shard-glk: NOTRUN -> [SKIP][258] ([i915#2437]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-glk1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#2437] / [i915#9412]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@panthor/panthor_gem@bo_create_round_size: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#2575]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@panthor/panthor_gem@bo_create_round_size.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#8516]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3708]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#14544] / [i915#3708]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#3708]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#9917]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9917]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][267] ([i915#12910]) +9 other tests fail [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - shard-mtlp: [SKIP][268] ([i915#15178]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-mtlp-7/igt@gem_eio@unwedge-stress.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-6/igt@gem_eio@unwedge-stress.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][270] ([i915#14809]) -> [PASS][271] +1 other test pass [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-5/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: [SKIP][272] ([i915#14544] / [i915#4270]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: [TIMEOUT][274] ([i915#12917] / [i915#12964]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@i915_module_load@reload-no-display: - shard-snb: [DMESG-WARN][276] ([i915#14545]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-snb5/igt@i915_module_load@reload-no-display.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-snb1/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rpm@gem-execbuf: - shard-dg2: [ABORT][278] ([i915#14385]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-1/igt@i915_pm_rpm@gem-execbuf.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-3/igt@i915_pm_rpm@gem-execbuf.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][280] ([i915#7984]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-mtlp-5/igt@i915_power@sanity.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-7/igt@i915_power@sanity.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [ABORT][282] ([i915#15140]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-7/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][284] ([i915#5138]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_color@ctm-0-50: - shard-rkl: [SKIP][286] ([i915#12655] / [i915#14544]) -> [PASS][287] +1 other test pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_color@ctm-0-50.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_color@ctm-0-50.html * igt@kms_color@deep-color: - shard-dg2: [SKIP][288] ([i915#12655] / [i915#3555]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-6/igt@kms_color@deep-color.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-11/igt@kms_color@deep-color.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions: - shard-rkl: [SKIP][290] ([i915#14544]) -> [PASS][291] +26 other tests pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [SKIP][292] ([i915#13707]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@basic-flip-vs-dpms: - shard-rkl: [SKIP][294] ([i915#14544] / [i915#3637]) -> [PASS][295] +1 other test pass [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_flip@basic-flip-vs-dpms.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@flip-vs-dpms-on-nop: - shard-rkl: [SKIP][296] ([i915#14544] / [i915#14553]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_flip@flip-vs-dpms-on-nop.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_flip@flip-vs-dpms-on-nop.html * igt@kms_flip@flip-vs-expired-vblank@a-vga1: - shard-snb: [INCOMPLETE][298] ([i915#12314]) -> [PASS][299] +1 other test pass [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-snb4/igt@kms_flip@flip-vs-expired-vblank@a-vga1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-snb4/igt@kms_flip@flip-vs-expired-vblank@a-vga1.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-rkl: [SKIP][300] ([i915#14544] / [i915#3555]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][302] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][303] +2 other tests pass [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-snb: [SKIP][304] -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-snb6/igt@kms_hdmi_inject@inject-audio.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-snb1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_invalid_mode@clock-too-high: - shard-rkl: [SKIP][306] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_invalid_mode@clock-too-high.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_invalid_mode@clock-too-high.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [SKIP][308] ([i915#12388]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - shard-rkl: [SKIP][310] ([i915#11190] / [i915#14544]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_plane@plane-panning-top-left: - shard-rkl: [SKIP][312] ([i915#14544] / [i915#8825]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_plane@plane-panning-top-left.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-4/igt@kms_plane@plane-panning-top-left.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-rkl: [SKIP][314] ([i915#14544] / [i915#7294]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-rkl: [SKIP][316] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-rkl: [SKIP][318] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-rkl: [SKIP][320] ([i915#12247] / [i915#14544]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-rkl: [SKIP][322] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_vrr@negative-basic: - shard-dg2: [SKIP][324] ([i915#3555] / [i915#9906]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-6/igt@kms_vrr@negative-basic.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-10/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-accuracy-98: - shard-tglu: [FAIL][326] ([i915#4349]) -> [PASS][327] +1 other test pass [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-tglu-2/igt@perf_pmu@busy-accuracy-98.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-4/igt@perf_pmu@busy-accuracy-98.html * igt@prime_mmap@test_errors@test_errors-smem: - shard-rkl: [DMESG-WARN][328] ([i915#12964]) -> [PASS][329] +5 other tests pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-2/igt@prime_mmap@test_errors@test_errors-smem.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-3/igt@prime_mmap@test_errors@test_errors-smem.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [SKIP][330] ([i915#14544] / [i915#8411]) -> [SKIP][331] ([i915#8411]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][332] ([i915#3555] / [i915#9323]) -> [SKIP][333] ([i915#14544] / [i915#3555] / [i915#9323]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@gem_ccs@block-copy-compressed.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][334] ([i915#8562]) -> [SKIP][335] ([i915#14544] / [i915#8562]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@gem_create@create-ext-set-pat.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][336] ([i915#280]) -> [SKIP][337] ([i915#14544] / [i915#280]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][338] ([i915#14544] / [i915#6334]) -> [SKIP][339] ([i915#6334]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][340] ([i915#14544] / [i915#3281]) -> [SKIP][341] ([i915#3281]) +9 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-cpu: - shard-rkl: [SKIP][342] ([i915#3281]) -> [SKIP][343] ([i915#14544] / [i915#3281]) +4 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@gem_exec_reloc@basic-write-cpu.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_lmem_swapping@massive-random: - shard-rkl: [SKIP][344] ([i915#4613]) -> [SKIP][345] ([i915#14544] / [i915#4613]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@gem_lmem_swapping@massive-random.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html * igt@gem_pwrite@basic-random: - shard-rkl: [SKIP][346] ([i915#14544] / [i915#3282]) -> [SKIP][347] ([i915#3282]) +4 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@gem_pwrite@basic-random.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-4/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [TIMEOUT][348] ([i915#12964]) -> [SKIP][349] ([i915#14544] / [i915#4270]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_pxp@create-protected-buffer.html * igt@gem_readwrite@new-obj: - shard-rkl: [SKIP][350] ([i915#3282]) -> [SKIP][351] ([i915#14544] / [i915#3282]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@gem_readwrite@new-obj.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_readwrite@new-obj.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][352] ([i915#8411]) -> [SKIP][353] ([i915#14544] / [i915#8411]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@access-control: - shard-rkl: [SKIP][354] ([i915#3297]) -> [SKIP][355] ([i915#14544] / [i915#3297]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@gem_userptr_blits@access-control.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gem_userptr_blits@access-control.html * igt@gen9_exec_parse@batch-zero-length: - shard-rkl: [SKIP][356] ([i915#14544] / [i915#2527]) -> [SKIP][357] ([i915#2527]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: [SKIP][358] ([i915#2527]) -> [SKIP][359] ([i915#14544] / [i915#2527]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@gen9_exec_parse@bb-secure.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][360] ([i915#8399]) -> [SKIP][361] ([i915#14544] / [i915#8399]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_power@sanity: - shard-rkl: [SKIP][362] ([i915#7984]) -> [SKIP][363] ([i915#14544] / [i915#7984]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@i915_power@sanity.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][364] ([i915#5723]) -> [SKIP][365] ([i915#14544] / [i915#5723]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [INCOMPLETE][366] ([i915#12761]) -> [SKIP][367] ([i915#14544]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][368] ([i915#14544]) -> [SKIP][369] ([i915#5286]) +2 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][370] ([i915#5286]) -> [SKIP][371] ([i915#14544]) +4 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][372] ([i915#14544]) -> [SKIP][373] ([i915#3638]) +2 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][374] ([i915#3638]) -> [SKIP][375] ([i915#14544]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][376] ([i915#14544]) -> [SKIP][377] ([i915#14098] / [i915#6095]) +6 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][378] ([i915#14544]) -> [SKIP][379] ([i915#12313]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [DMESG-WARN][380] ([i915#12964]) -> [SKIP][381] ([i915#14544]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [SKIP][382] ([i915#14544]) -> [ABORT][383] ([i915#15132]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][384] ([i915#12313]) -> [SKIP][385] ([i915#14544]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][386] ([i915#14098] / [i915#6095]) -> [SKIP][387] ([i915#14544]) +10 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][388] ([i915#3742]) -> [SKIP][389] ([i915#14544] / [i915#3742]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_cdclk@plane-scaling.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-rkl: [SKIP][390] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][391] ([i915#11151] / [i915#7828]) +2 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: [SKIP][392] ([i915#11151] / [i915#7828]) -> [SKIP][393] ([i915#11151] / [i915#14544] / [i915#7828]) +5 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][394] ([i915#3116]) -> [SKIP][395] ([i915#14544]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][396] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][397] ([i915#7118] / [i915#9424]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-11/igt@kms_content_protection@type1.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-8/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: [SKIP][398] ([i915#7118] / [i915#9424]) -> [FAIL][399] ([i915#1339] / [i915#7173]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-6/igt@kms_content_protection@uevent.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-11/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-rkl: [SKIP][400] ([i915#14544]) -> [FAIL][401] ([i915#13566]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][402] ([i915#13049]) -> [SKIP][403] ([i915#14544]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: [SKIP][404] ([i915#14544]) -> [SKIP][405] ([i915#13049]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][406] ([i915#13566]) -> [SKIP][407] ([i915#14544]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][408] ([i915#14544]) -> [SKIP][409] ([i915#3555]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][410] ([i915#4103]) -> [SKIP][411] ([i915#11190] / [i915#14544]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][412] ([i915#4103]) -> [SKIP][413] ([i915#14544]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: [SKIP][414] -> [SKIP][415] ([i915#14544]) +11 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: [SKIP][416] ([i915#14544]) -> [SKIP][417] ([i915#4103]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][418] ([i915#13691]) -> [SKIP][419] ([i915#14544]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][420] ([i915#14544]) -> [SKIP][421] ([i915#13749]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][422] ([i915#3840]) -> [SKIP][423] ([i915#14544]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][424] ([i915#3555] / [i915#3840]) -> [SKIP][425] ([i915#14544]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_dsc@dsc-with-bpc.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: [SKIP][426] ([i915#14544]) -> [SKIP][427] ([i915#3555] / [i915#3840]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][428] ([i915#9337]) -> [SKIP][429] ([i915#14544] / [i915#9337]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: [SKIP][430] ([i915#9934]) -> [SKIP][431] ([i915#14544] / [i915#9934]) +3 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#9934]) -> [SKIP][433] ([i915#9934]) +2 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#3555]) -> [SKIP][435] ([i915#2672] / [i915#3555]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][436] ([i915#2672] / [i915#3555]) -> [SKIP][437] ([i915#14544] / [i915#3555]) +1 other test skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][439] ([i915#1825]) +13 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][440] ([i915#15102]) -> [SKIP][441] ([i915#14544]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][442] -> [SKIP][443] ([i915#14544] / [i915#1849] / [i915#5354]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][444] ([i915#15102] / [i915#3023]) -> [SKIP][445] ([i915#14544] / [i915#1849] / [i915#5354]) +12 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][446] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][447] ([i915#15102] / [i915#3458]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][448] ([i915#14544]) -> [SKIP][449] ([i915#15102]) +3 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][450] ([i915#15102] / [i915#3458]) -> [SKIP][451] ([i915#10433] / [i915#15102] / [i915#3458]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][453] ([i915#15102] / [i915#3023]) +12 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][454] ([i915#1825]) -> [SKIP][455] ([i915#14544] / [i915#1849] / [i915#5354]) +27 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: [SKIP][456] ([i915#12713]) -> [SKIP][457] ([i915#1187] / [i915#12713]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: [SKIP][458] ([i915#12388] / [i915#14544]) -> [SKIP][459] ([i915#12388]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: [SKIP][460] ([i915#10656]) -> [SKIP][461] ([i915#10656] / [i915#14544]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: [SKIP][462] ([i915#12388]) -> [SKIP][463] ([i915#12388] / [i915#14544]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][464] ([i915#12394] / [i915#14544]) -> [SKIP][465] ([i915#12394]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][466] ([i915#13522] / [i915#14544]) -> [SKIP][467] ([i915#13522]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][468] ([i915#4816]) -> [SKIP][469] ([i915#4070] / [i915#4816]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-rkl: [SKIP][470] ([i915#14544]) -> [SKIP][471] +10 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][472] ([i915#14712]) -> [SKIP][473] ([i915#14544]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane_lowres@tiling-4: - shard-rkl: [SKIP][474] ([i915#3555]) -> [SKIP][475] ([i915#14544]) +2 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_plane_lowres@tiling-4.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: [SKIP][476] ([i915#14259]) -> [SKIP][477] ([i915#14544]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_plane_multiple@tiling-4.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][478] ([i915#14544]) -> [SKIP][479] ([i915#14259]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#6953] / [i915#8152]) -> [SKIP][481] ([i915#6953]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-rkl: [SKIP][482] ([i915#12247]) -> [SKIP][483] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a: - shard-rkl: [SKIP][484] ([i915#12247]) -> [SKIP][485] ([i915#12247] / [i915#14544]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][486] ([i915#12343]) -> [SKIP][487] ([i915#12343] / [i915#14544]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#5354]) -> [SKIP][489] ([i915#5354]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_pm_backlight@fade.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_pm_backlight@fade.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#15073]) -> [SKIP][491] ([i915#15073]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][492] ([i915#11520]) -> [SKIP][493] ([i915#11520] / [i915#14544]) +5 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][494] ([i915#11520] / [i915#14544]) -> [SKIP][495] ([i915#11520]) +3 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg1: [SKIP][496] ([i915#11520]) -> [SKIP][497] ([i915#11520] / [i915#4423]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-dg1-19/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][498] ([i915#9683]) -> [SKIP][499] ([i915#14544] / [i915#9683]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#9683]) -> [SKIP][501] ([i915#9683]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: [SKIP][502] ([i915#1072] / [i915#9732]) -> [SKIP][503] ([i915#1072] / [i915#14544] / [i915#9732]) +13 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_psr@fbc-psr2-primary-blt.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-rkl: [SKIP][504] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][505] ([i915#1072] / [i915#9732]) +8 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][506] ([i915#5289]) -> [SKIP][507] ([i915#14544]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@clone-exclusive-crtc: - shard-rkl: [SKIP][508] ([i915#3555]) -> [SKIP][509] ([i915#14544] / [i915#3555]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_setmode@clone-exclusive-crtc.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sharpness_filter@filter-basic: - shard-rkl: [SKIP][510] ([i915#15232]) -> [SKIP][511] ([i915#14544]) +1 other test skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_sharpness_filter@filter-basic.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_sharpness_filter@filter-basic.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-rkl: [SKIP][512] ([i915#14544]) -> [SKIP][513] ([i915#15232]) +1 other test skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_sharpness_filter@invalid-filter-with-plane.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][514] ([i915#15243] / [i915#3555]) -> [SKIP][515] ([i915#14544]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@kms_vrr@flip-suspend.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][516] ([i915#9906]) -> [SKIP][517] ([i915#14544]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: [SKIP][518] ([i915#14544]) -> [SKIP][519] ([i915#9906]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@panthor/panthor_gem@bo_create: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#15265]) -> [SKIP][521] ([i915#15265]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@panthor/panthor_gem@bo_create.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-2/igt@panthor/panthor_gem@bo_create.html * igt@panthor/panthor_vm@vm_bind: - shard-rkl: [SKIP][522] ([i915#15265]) -> [SKIP][523] ([i915#14544] / [i915#15265]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@panthor/panthor_vm@vm_bind.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@panthor/panthor_vm@vm_bind.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][524] ([i915#2436]) -> [SKIP][525] ([i915#14544] / [i915#2436]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][526] ([i915#2434]) -> [SKIP][527] ([i915#14544] / [i915#2434]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-8/igt@perf@mi-rpc.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-6/igt@perf@mi-rpc.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][529] ([i915#3291] / [i915#3708]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17522/shard-rkl-6/igt@prime_vgem@basic-fence-read.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_157320v1/shard-rkl-8/igt@prime_vgem@basic-fence-read.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#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#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [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#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [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#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [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#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14385]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14385 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14553 [i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [i915#15178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15178 [i915#15232]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15232 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15265]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15265 [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#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [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#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [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#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [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#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [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 ------------- * Linux: CI_DRM_17522 -> Patchwork_157320v1 CI-20190529: 20190529 CI_DRM_17522: 168074b8e855f611374ca5338a7d4dca0fc62ffa @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8617: 8617 Patchwork_157320v1: 168074b8e855f611374ca5338a7d4dca0fc62ffa @ 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_157320v1/index.html [-- Attachment #2: Type: text/html, Size: 179576 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-12-09 13:54 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-11-07 16:42 [PATCH] drm/i195: Fix format string truncation warning Ard Biesheuvel 2025-11-07 20:48 ` Tvrtko Ursulin 2025-11-09 18:00 ` Ard Biesheuvel 2025-12-05 10:48 ` Ard Biesheuvel 2025-12-05 11:13 ` Tvrtko Ursulin 2025-12-05 11:18 ` Jani Nikula 2025-12-05 18:28 ` David Laight 2025-12-08 7:37 ` Tvrtko Ursulin 2025-12-09 13:54 ` Jani Nikula 2025-11-10 15:34 ` ✓ i915.CI.BAT: success for " Patchwork 2025-11-10 19:32 ` ✓ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).