* [PATCH] prandom: remove next_pseudo_random32
@ 2025-02-10 13:35 Markus Theil
2025-02-10 13:39 ` Jason A. Donenfeld
` (3 more replies)
0 siblings, 4 replies; 19+ messages in thread
From: Markus Theil @ 2025-02-10 13:35 UTC (permalink / raw)
To: linux-kernel; +Cc: intel-gfx, netdev, Jason, tytso, Markus Theil
next_pseudo_random32 implements a LCG with known bad
statistical properties and is only used in two pieces
of testing code. Remove and convert users to the remaining
single PRNG interface in prandom/random32.
This removes another option of using an insecure PRNG.
This is a preliminary patch for further prandom cleanup:
- In another upcoming patch, I'd like to add more warnings,
that prandom must not be used for cryptographic purposes.
- Replace the LFSR113 generator with Xoshiro256++, which is
known to have better statistical properties and does not
need warmup, when seeded properly.
Signed-off-by: Markus Theil <theil.markus@gmail.com>
---
drivers/gpu/drm/i915/selftests/i915_gem.c | 7 ++++---
drivers/media/test-drivers/vivid/vivid-vid-cap.c | 4 +++-
include/linux/prandom.h | 6 ------
3 files changed, 7 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/selftests/i915_gem.c b/drivers/gpu/drm/i915/selftests/i915_gem.c
index 0727492576be..14efa6edd9e6 100644
--- a/drivers/gpu/drm/i915/selftests/i915_gem.c
+++ b/drivers/gpu/drm/i915/selftests/i915_gem.c
@@ -45,13 +45,15 @@ static void trash_stolen(struct drm_i915_private *i915)
struct i915_ggtt *ggtt = to_gt(i915)->ggtt;
const u64 slot = ggtt->error_capture.start;
const resource_size_t size = resource_size(&i915->dsm.stolen);
+ struct rnd_state prng;
unsigned long page;
- u32 prng = 0x12345678;
/* XXX: fsck. needs some more thought... */
if (!i915_ggtt_has_aperture(ggtt))
return;
+ prandom_seed_state(&prng, 0x12345678);
+
for (page = 0; page < size; page += PAGE_SIZE) {
const dma_addr_t dma = i915->dsm.stolen.start + page;
u32 __iomem *s;
@@ -64,8 +66,7 @@ static void trash_stolen(struct drm_i915_private *i915)
s = io_mapping_map_atomic_wc(&ggtt->iomap, slot);
for (x = 0; x < PAGE_SIZE / sizeof(u32); x++) {
- prng = next_pseudo_random32(prng);
- iowrite32(prng, &s[x]);
+ iowrite32(prandom_u32_state(&prng), &s[x]);
}
io_mapping_unmap_atomic(s);
}
diff --git a/drivers/media/test-drivers/vivid/vivid-vid-cap.c b/drivers/media/test-drivers/vivid/vivid-vid-cap.c
index b166d90177c6..166372d5f927 100644
--- a/drivers/media/test-drivers/vivid/vivid-vid-cap.c
+++ b/drivers/media/test-drivers/vivid/vivid-vid-cap.c
@@ -300,8 +300,10 @@ void vivid_update_quality(struct vivid_dev *dev)
*/
freq_modulus = (dev->tv_freq - 676 /* (43.25-1) * 16 */) % (6 * 16);
if (freq_modulus > 2 * 16) {
+ struct rnd_state prng;
+ prandom_seed_state(&prng, dev->tv_freq ^ 0x55);
tpg_s_quality(&dev->tpg, TPG_QUAL_NOISE,
- next_pseudo_random32(dev->tv_freq ^ 0x55) & 0x3f);
+ prandom_u32_state(&prng) & 0x3f);
return;
}
if (freq_modulus < 12 /*0.75 * 16*/ || freq_modulus > 20 /*1.25 * 16*/)
diff --git a/include/linux/prandom.h b/include/linux/prandom.h
index f2ed5b72b3d6..ff7dcc3fa105 100644
--- a/include/linux/prandom.h
+++ b/include/linux/prandom.h
@@ -47,10 +47,4 @@ static inline void prandom_seed_state(struct rnd_state *state, u64 seed)
state->s4 = __seed(i, 128U);
}
-/* Pseudo random number generator from numerical recipes. */
-static inline u32 next_pseudo_random32(u32 seed)
-{
- return seed * 1664525 + 1013904223;
-}
-
#endif
--
2.47.2
^ permalink raw reply related [flat|nested] 19+ messages in thread* Re: [PATCH] prandom: remove next_pseudo_random32 2025-02-10 13:35 [PATCH] prandom: remove next_pseudo_random32 Markus Theil @ 2025-02-10 13:39 ` Jason A. Donenfeld 2025-02-10 23:07 ` Andi Shyti ` (4 more replies) 2025-02-10 18:16 ` ✗ Fi.CI.CHECKPATCH: warning for prandom: remove next_pseudo_random32 Patchwork ` (2 subsequent siblings) 3 siblings, 5 replies; 19+ messages in thread From: Jason A. Donenfeld @ 2025-02-10 13:39 UTC (permalink / raw) To: Markus Theil; +Cc: linux-kernel, intel-gfx, netdev, tytso Hey Markus, Thanks for this. I hadn't realized that next_pseudo_random32() only had two users left. Excellent. I'll queue this up in the random tree (unless there are objections from the maintainers of that test code). Jason ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] prandom: remove next_pseudo_random32 2025-02-10 13:39 ` Jason A. Donenfeld @ 2025-02-10 23:07 ` Andi Shyti 2025-02-11 6:13 ` Markus Theil 2025-02-11 6:33 ` [PATCH v2 0/3] " Markus Theil ` (3 subsequent siblings) 4 siblings, 1 reply; 19+ messages in thread From: Andi Shyti @ 2025-02-10 23:07 UTC (permalink / raw) To: Jason A. Donenfeld; +Cc: Markus Theil, linux-kernel, intel-gfx, netdev, tytso Hi, On Mon, Feb 10, 2025 at 02:39:43PM +0100, Jason A. Donenfeld wrote: > Hey Markus, > > Thanks for this. I hadn't realized that next_pseudo_random32() only > had two users left. Excellent. > > I'll queue this up in the random tree (unless there are objections > from the maintainers of that test code). actually would be better if we apply the i915 part in drm-tip rather than waiting for kernel releases to receive this change in our branch. It has been source of conflicts and headaches. May I ask Markus to split the patch in two parts and we handle the i915 side? Thanks, Andi ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH] prandom: remove next_pseudo_random32 2025-02-10 23:07 ` Andi Shyti @ 2025-02-11 6:13 ` Markus Theil 0 siblings, 0 replies; 19+ messages in thread From: Markus Theil @ 2025-02-11 6:13 UTC (permalink / raw) To: Andi Shyti, Jason A. Donenfeld; +Cc: linux-kernel, intel-gfx, netdev, tytso Hi, On 11.02.25 00:07, Andi Shyti wrote: > actually would be better if we apply the i915 part in drm-tip > rather than waiting for kernel releases to receive this change in > our branch. It has been source of conflicts and headaches. > > May I ask Markus to split the patch in two parts and we handle > the i915 side? > Sure, will do in a v2. Markus ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 0/3] prandom: remove next_pseudo_random32 2025-02-10 13:39 ` Jason A. Donenfeld 2025-02-10 23:07 ` Andi Shyti @ 2025-02-11 6:33 ` Markus Theil 2025-02-11 6:33 ` [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest Markus Theil ` (3 more replies) 2025-02-12 18:47 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest Patchwork ` (2 subsequent siblings) 4 siblings, 4 replies; 19+ messages in thread From: Markus Theil @ 2025-02-11 6:33 UTC (permalink / raw) To: linux-kernel, andi.shyti; +Cc: intel-gfx, netdev, Jason, tytso, Markus Theil next_pseudo_random32 implements a LCG with known bad statistical properties and is only used in two pieces of testing code. Remove and convert the remaining two users to the single PRNG interface in prandom.h This removes another option of using an insecure PRNG. Markus Theil (3): drm/i915/selftests: use prandom in selftest media: vivid: use prandom prandom: remove next_pseudo_random32 drivers/gpu/drm/i915/selftests/i915_gem.c | 7 ++++--- drivers/media/test-drivers/vivid/vivid-vid-cap.c | 4 +++- include/linux/prandom.h | 6 ------ 3 files changed, 7 insertions(+), 10 deletions(-) -- 2.47.2 ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest 2025-02-11 6:33 ` [PATCH v2 0/3] " Markus Theil @ 2025-02-11 6:33 ` Markus Theil 2025-02-13 17:19 ` Andi Shyti 2025-02-11 6:33 ` [PATCH v2 2/3] media: vivid: use prandom Markus Theil ` (2 subsequent siblings) 3 siblings, 1 reply; 19+ messages in thread From: Markus Theil @ 2025-02-11 6:33 UTC (permalink / raw) To: linux-kernel, andi.shyti; +Cc: intel-gfx, netdev, Jason, tytso, Markus Theil This is part of a prandom cleanup, which removes next_pseudo_random32 and replaces it with the standard PRNG. Signed-off-by: Markus Theil <theil.markus@gmail.com> --- drivers/gpu/drm/i915/selftests/i915_gem.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/selftests/i915_gem.c b/drivers/gpu/drm/i915/selftests/i915_gem.c index 0727492576be..14efa6edd9e6 100644 --- a/drivers/gpu/drm/i915/selftests/i915_gem.c +++ b/drivers/gpu/drm/i915/selftests/i915_gem.c @@ -45,13 +45,15 @@ static void trash_stolen(struct drm_i915_private *i915) struct i915_ggtt *ggtt = to_gt(i915)->ggtt; const u64 slot = ggtt->error_capture.start; const resource_size_t size = resource_size(&i915->dsm.stolen); + struct rnd_state prng; unsigned long page; - u32 prng = 0x12345678; /* XXX: fsck. needs some more thought... */ if (!i915_ggtt_has_aperture(ggtt)) return; + prandom_seed_state(&prng, 0x12345678); + for (page = 0; page < size; page += PAGE_SIZE) { const dma_addr_t dma = i915->dsm.stolen.start + page; u32 __iomem *s; @@ -64,8 +66,7 @@ static void trash_stolen(struct drm_i915_private *i915) s = io_mapping_map_atomic_wc(&ggtt->iomap, slot); for (x = 0; x < PAGE_SIZE / sizeof(u32); x++) { - prng = next_pseudo_random32(prng); - iowrite32(prng, &s[x]); + iowrite32(prandom_u32_state(&prng), &s[x]); } io_mapping_unmap_atomic(s); } -- 2.47.2 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest 2025-02-11 6:33 ` [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest Markus Theil @ 2025-02-13 17:19 ` Andi Shyti 2025-03-19 17:13 ` Jason A. Donenfeld 0 siblings, 1 reply; 19+ messages in thread From: Andi Shyti @ 2025-02-13 17:19 UTC (permalink / raw) To: Markus Theil; +Cc: linux-kernel, andi.shyti, intel-gfx, netdev, Jason, tytso Hi Markus, On Tue, Feb 11, 2025 at 07:33:30AM +0100, Markus Theil wrote: > This is part of a prandom cleanup, which removes > next_pseudo_random32 and replaces it with the standard PRNG. > > Signed-off-by: Markus Theil <theil.markus@gmail.com> I merged just this patch in drm-intel-gt-next. Thanks, Andi ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest 2025-02-13 17:19 ` Andi Shyti @ 2025-03-19 17:13 ` Jason A. Donenfeld 2025-03-21 12:37 ` Jani Nikula 0 siblings, 1 reply; 19+ messages in thread From: Jason A. Donenfeld @ 2025-03-19 17:13 UTC (permalink / raw) To: Andi Shyti; +Cc: Markus Theil, linux-kernel, intel-gfx, netdev, tytso Hi Andi, On Thu, Feb 13, 2025 at 06:19:12PM +0100, Andi Shyti wrote: > Hi Markus, > > On Tue, Feb 11, 2025 at 07:33:30AM +0100, Markus Theil wrote: > > This is part of a prandom cleanup, which removes > > next_pseudo_random32 and replaces it with the standard PRNG. > > > > Signed-off-by: Markus Theil <theil.markus@gmail.com> > > I merged just this patch in drm-intel-gt-next. This is minorly annoying for me... What am I supposed to do with patches 2 and 3? Take them through my tree for 6.16 in like half a year? Can I just take the v1 into my tree and we can get this done with straight forwardly? Or do you have a different suggestion for me? Jason ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest 2025-03-19 17:13 ` Jason A. Donenfeld @ 2025-03-21 12:37 ` Jani Nikula 2025-03-21 12:52 ` Jason A. Donenfeld 0 siblings, 1 reply; 19+ messages in thread From: Jani Nikula @ 2025-03-21 12:37 UTC (permalink / raw) To: Jason A. Donenfeld, Andi Shyti Cc: Markus Theil, linux-kernel, intel-gfx, netdev, tytso On Wed, 19 Mar 2025, "Jason A. Donenfeld" <Jason@zx2c4.com> wrote: > Hi Andi, > > On Thu, Feb 13, 2025 at 06:19:12PM +0100, Andi Shyti wrote: >> Hi Markus, >> >> On Tue, Feb 11, 2025 at 07:33:30AM +0100, Markus Theil wrote: >> > This is part of a prandom cleanup, which removes >> > next_pseudo_random32 and replaces it with the standard PRNG. >> > >> > Signed-off-by: Markus Theil <theil.markus@gmail.com> >> >> I merged just this patch in drm-intel-gt-next. > > This is minorly annoying for me... What am I supposed to do with patches > 2 and 3? Take them through my tree for 6.16 in like half a year? Can I > just take the v1 into my tree and we can get this done with straight > forwardly? Or do you have a different suggestion for me? Feel free to apply it to your tree too. It's not ideal to have two commits for the same thing, but oh well. Acked-by: Jani Nikula <jani.nikula@intel.com> -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 19+ messages in thread
* Re: [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest 2025-03-21 12:37 ` Jani Nikula @ 2025-03-21 12:52 ` Jason A. Donenfeld 0 siblings, 0 replies; 19+ messages in thread From: Jason A. Donenfeld @ 2025-03-21 12:52 UTC (permalink / raw) To: Jani Nikula Cc: Andi Shyti, Markus Theil, linux-kernel, intel-gfx, netdev, tytso On Fri, Mar 21, 2025 at 02:37:15PM +0200, Jani Nikula wrote: > On Wed, 19 Mar 2025, "Jason A. Donenfeld" <Jason@zx2c4.com> wrote: > > Hi Andi, > > > > On Thu, Feb 13, 2025 at 06:19:12PM +0100, Andi Shyti wrote: > >> Hi Markus, > >> > >> On Tue, Feb 11, 2025 at 07:33:30AM +0100, Markus Theil wrote: > >> > This is part of a prandom cleanup, which removes > >> > next_pseudo_random32 and replaces it with the standard PRNG. > >> > > >> > Signed-off-by: Markus Theil <theil.markus@gmail.com> > >> > >> I merged just this patch in drm-intel-gt-next. > > > > This is minorly annoying for me... What am I supposed to do with patches > > 2 and 3? Take them through my tree for 6.16 in like half a year? Can I > > just take the v1 into my tree and we can get this done with straight > > forwardly? Or do you have a different suggestion for me? > > Feel free to apply it to your tree too. It's not ideal to have two > commits for the same thing, but oh well. > > Acked-by: Jani Nikula <jani.nikula@intel.com> Oh that's a good idea. Thanks! Jason ^ permalink raw reply [flat|nested] 19+ messages in thread
* [PATCH v2 2/3] media: vivid: use prandom 2025-02-11 6:33 ` [PATCH v2 0/3] " Markus Theil 2025-02-11 6:33 ` [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest Markus Theil @ 2025-02-11 6:33 ` Markus Theil 2025-02-11 6:33 ` [PATCH v2 3/3] prandom: remove next_pseudo_random32 Markus Theil 2025-02-13 14:27 ` [PATCH v2 0/3] " Krzysztof Karas 3 siblings, 0 replies; 19+ messages in thread From: Markus Theil @ 2025-02-11 6:33 UTC (permalink / raw) To: linux-kernel, andi.shyti; +Cc: intel-gfx, netdev, Jason, tytso, Markus Theil This is part of a prandom cleanup, which removes next_pseudo_random32 and replaces it with the standard PRNG. Signed-off-by: Markus Theil <theil.markus@gmail.com> --- drivers/media/test-drivers/vivid/vivid-vid-cap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/media/test-drivers/vivid/vivid-vid-cap.c b/drivers/media/test-drivers/vivid/vivid-vid-cap.c index b166d90177c6..166372d5f927 100644 --- a/drivers/media/test-drivers/vivid/vivid-vid-cap.c +++ b/drivers/media/test-drivers/vivid/vivid-vid-cap.c @@ -300,8 +300,10 @@ void vivid_update_quality(struct vivid_dev *dev) */ freq_modulus = (dev->tv_freq - 676 /* (43.25-1) * 16 */) % (6 * 16); if (freq_modulus > 2 * 16) { + struct rnd_state prng; + prandom_seed_state(&prng, dev->tv_freq ^ 0x55); tpg_s_quality(&dev->tpg, TPG_QUAL_NOISE, - next_pseudo_random32(dev->tv_freq ^ 0x55) & 0x3f); + prandom_u32_state(&prng) & 0x3f); return; } if (freq_modulus < 12 /*0.75 * 16*/ || freq_modulus > 20 /*1.25 * 16*/) -- 2.47.2 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* [PATCH v2 3/3] prandom: remove next_pseudo_random32 2025-02-11 6:33 ` [PATCH v2 0/3] " Markus Theil 2025-02-11 6:33 ` [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest Markus Theil 2025-02-11 6:33 ` [PATCH v2 2/3] media: vivid: use prandom Markus Theil @ 2025-02-11 6:33 ` Markus Theil 2025-02-13 14:27 ` [PATCH v2 0/3] " Krzysztof Karas 3 siblings, 0 replies; 19+ messages in thread From: Markus Theil @ 2025-02-11 6:33 UTC (permalink / raw) To: linux-kernel, andi.shyti; +Cc: intel-gfx, netdev, Jason, tytso, Markus Theil next_pseudo_random32 implements a LCG with known bad statistical properties and was only used in two pieces of testing code. After the users are converted to prandom as part of this series, remove the LCG here. This removes another option of using an insecure PRNG. Signed-off-by: Markus Theil <theil.markus@gmail.com> --- include/linux/prandom.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/linux/prandom.h b/include/linux/prandom.h index f2ed5b72b3d6..ff7dcc3fa105 100644 --- a/include/linux/prandom.h +++ b/include/linux/prandom.h @@ -47,10 +47,4 @@ static inline void prandom_seed_state(struct rnd_state *state, u64 seed) state->s4 = __seed(i, 128U); } -/* Pseudo random number generator from numerical recipes. */ -static inline u32 next_pseudo_random32(u32 seed) -{ - return seed * 1664525 + 1013904223; -} - #endif -- 2.47.2 ^ permalink raw reply related [flat|nested] 19+ messages in thread
* Re: [PATCH v2 0/3] prandom: remove next_pseudo_random32 2025-02-11 6:33 ` [PATCH v2 0/3] " Markus Theil ` (2 preceding siblings ...) 2025-02-11 6:33 ` [PATCH v2 3/3] prandom: remove next_pseudo_random32 Markus Theil @ 2025-02-13 14:27 ` Krzysztof Karas 3 siblings, 0 replies; 19+ messages in thread From: Krzysztof Karas @ 2025-02-13 14:27 UTC (permalink / raw) To: Markus Theil; +Cc: linux-kernel, intel-gfx, netdev Hi Markus, > next_pseudo_random32 implements a LCG with known bad statistical > properties and is only used in two pieces of testing code. Remove and > convert the remaining two users to the single PRNG interface in > prandom.h > > This removes another option of using an insecure PRNG. > > Markus Theil (3): > drm/i915/selftests: use prandom in selftest > media: vivid: use prandom > prandom: remove next_pseudo_random32 > > drivers/gpu/drm/i915/selftests/i915_gem.c | 7 ++++--- > drivers/media/test-drivers/vivid/vivid-vid-cap.c | 4 +++- > include/linux/prandom.h | 6 ------ > 3 files changed, 7 insertions(+), 10 deletions(-) > The series looks good: Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> on all the patches. Best Regards, Krzysztof ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest 2025-02-10 13:39 ` Jason A. Donenfeld 2025-02-10 23:07 ` Andi Shyti 2025-02-11 6:33 ` [PATCH v2 0/3] " Markus Theil @ 2025-02-12 18:47 ` Patchwork 2025-02-12 19:07 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-13 3:29 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2025-02-12 18:47 UTC (permalink / raw) To: Markus Theil; +Cc: intel-gfx == Series Details == Series: series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest URL : https://patchwork.freedesktop.org/series/144730/ State : warning == Summary == Error: dim checkpatch failed 80e43911b42c drm/i915/selftests: use prandom in selftest bd0e312b6b02 media: vivid: use prandom -:20: WARNING:LINE_SPACING: Missing a blank line after declarations #20: FILE: drivers/media/test-drivers/vivid/vivid-vid-cap.c:304: + struct rnd_state prng; + prandom_seed_state(&prng, dev->tv_freq ^ 0x55); total: 0 errors, 1 warnings, 0 checks, 11 lines checked 9f728ec76476 prandom: remove next_pseudo_random32 ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest 2025-02-10 13:39 ` Jason A. Donenfeld ` (2 preceding siblings ...) 2025-02-12 18:47 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest Patchwork @ 2025-02-12 19:07 ` Patchwork 2025-02-13 3:29 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2025-02-12 19:07 UTC (permalink / raw) To: Markus Theil; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4391 bytes --] == Series Details == Series: series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest URL : https://patchwork.freedesktop.org/series/144730/ State : success == Summary == CI Bug Log - changes from CI_DRM_16121 -> Patchwork_144730v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_144730v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-adls-6: [PASS][1] -> [FAIL][2] ([i915#13633]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/bat-adls-6/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-adls-6/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-arlh-3: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061] / [i915#12435]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/bat-arlh-3/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-arlh-3/igt@i915_selftest@live.html - bat-twl-2: NOTRUN -> [ABORT][5] ([i915#12919] / [i915#13503]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_engines: - bat-twl-2: NOTRUN -> [ABORT][6] ([i915#12919]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-twl-2/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/bat-arlh-3/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-mtlp-6: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlp-11: [DMESG-WARN][11] ([i915#13570]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/bat-adlp-11/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-adlp-11/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_contexts: - bat-twl-1: [ABORT][13] ([i915#12919]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/bat-twl-1/igt@i915_selftest@live@gt_contexts.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-twl-1/igt@i915_selftest@live@gt_contexts.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/bat-arls-5/igt@i915_selftest@live@workarounds.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 [i915#13570]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13570 [i915#13633]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13633 Build changes ------------- * Linux: CI_DRM_16121 -> Patchwork_144730v1 CI-20190529: 20190529 CI_DRM_16121: b9696aa14a67620661572e94f4141df2a4b6b5cd @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8228: 8228 Patchwork_144730v1: b9696aa14a67620661572e94f4141df2a4b6b5cd @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/index.html [-- Attachment #2: Type: text/html, Size: 5533 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest 2025-02-10 13:39 ` Jason A. Donenfeld ` (3 preceding siblings ...) 2025-02-12 19:07 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-02-13 3:29 ` Patchwork 4 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2025-02-13 3:29 UTC (permalink / raw) To: Markus Theil; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100300 bytes --] == Series Details == Series: series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest URL : https://patchwork.freedesktop.org/series/144730/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16121_full -> Patchwork_144730v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_144730v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_144730v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_144730v1_full: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@unbind-rebind: - shard-glk: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-glk6/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk3/igt@core_hotunplug@unbind-rebind.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-dg1: [PASS][3] -> [SKIP][4] +47 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-256x256.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@perf_pmu@module-unload: - shard-dg2: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-3/igt@perf_pmu@module-unload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-6/igt@perf_pmu@module-unload.html #### Warnings #### * igt@kms_atomic_interruptible@universal-setplane-cursor: - shard-dg1: [DMESG-WARN][7] ([i915#4423]) -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_atomic_interruptible@universal-setplane-cursor.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_atomic_interruptible@universal-setplane-cursor.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg1: [SKIP][9] ([i915#4538] / [i915#5286]) -> [SKIP][10] +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg1: [SKIP][11] ([i915#4538]) -> [SKIP][12] +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: [SKIP][13] ([i915#12313]) -> [SKIP][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg1: [SKIP][15] ([i915#6095]) -> [SKIP][16] +10 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_content_protection@srm: - shard-dg1: [SKIP][17] ([i915#7116]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_content_protection@srm.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg1: [SKIP][19] ([i915#7116] / [i915#9424]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_content_protection@uevent.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_content_protection@uevent.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: [SKIP][21] ([i915#4103] / [i915#4213]) -> [SKIP][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: [SKIP][23] ([i915#9723]) -> [SKIP][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: [SKIP][25] ([i915#3840]) -> [SKIP][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: [SKIP][27] ([i915#4884]) -> [SKIP][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: [SKIP][29] ([i915#5289]) -> [SKIP][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: [SKIP][31] ([i915#3555]) -> [SKIP][32] +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_scaling_modes@scaling-mode-center.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: [SKIP][33] ([i915#8623]) -> [SKIP][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg1: [SKIP][35] ([i915#9906]) -> [SKIP][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-virtual.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-virtual.html New tests --------- New tests have been introduced between CI_DRM_16121_full and Patchwork_144730v1_full: ### New IGT tests (48) ### * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [3.47] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [3.33, 3.62] s * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.12] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [3.48] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [3.46] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [3.34, 3.64] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [3.34] s * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.10] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [3.48] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.68] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.33] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.13] s * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-a-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [3.31, 3.68] s * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.34] s * igt@kms_cursor_edge_walk@128x128-top-edge@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.21] s * igt@kms_cursor_edge_walk@256x256-left-edge@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.33] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [3.41] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.68] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.33] s * igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.12] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [3.42] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.71] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [3.44] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.09] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [3.46] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [3.35, 3.62] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.11] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [3.46] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [3.42] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [3.33, 3.61] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [3.33] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.10] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [3.34, 3.61] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.10] s * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.34] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [3.45] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.68] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.33] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [3.10] s * igt@kms_draw_crc@draw-method-mmap-cpu@rgb565-4tiled: - Statuses : 2 pass(s) - Exec time: [0.12, 0.18] s * igt@kms_draw_crc@draw-method-mmap-cpu@xrgb2101010-4tiled: - Statuses : 2 pass(s) - Exec time: [0.12, 0.15] s * igt@kms_draw_crc@draw-method-mmap-cpu@xrgb8888-4tiled: - Statuses : 2 pass(s) - Exec time: [0.14, 0.17] s * igt@kms_draw_crc@draw-method-pwrite@rgb565-4tiled: - Statuses : 2 pass(s) - Exec time: [0.33, 0.82] s * igt@kms_draw_crc@draw-method-pwrite@xrgb2101010-4tiled: - Statuses : 2 pass(s) - Exec time: [0.41, 1.55] s * igt@kms_draw_crc@draw-method-pwrite@xrgb8888-4tiled: - Statuses : 2 pass(s) - Exec time: [0.43, 1.59] s * igt@kms_draw_crc@draw-method-render@rgb565-4tiled: - Statuses : 2 pass(s) - Exec time: [0.11, 0.18] s * igt@kms_draw_crc@draw-method-render@xrgb2101010-4tiled: - Statuses : 2 pass(s) - Exec time: [0.11, 0.15] s * igt@kms_draw_crc@draw-method-render@xrgb8888-4tiled: - Statuses : 2 pass(s) - Exec time: [0.12, 0.18] s Known issues ------------ Here are the changes found in Patchwork_144730v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#8411]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#8411]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#11078]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8414]) +15 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@fbdev@unaligned-write: - shard-dg1: [PASS][41] -> [SKIP][42] ([i915#2582]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@fbdev@unaligned-write.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@fbdev@unaligned-write.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#7697]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3555] / [i915#9323]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#9323]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][46] -> [INCOMPLETE][47] ([i915#13356]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-8/igt@gem_ccs@suspend-resume.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-3/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][48] -> [INCOMPLETE][49] ([i915#12392] / [i915#13356]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@basic-process: - shard-rkl: [PASS][50] -> [DMESG-WARN][51] ([i915#12964]) +9 other tests dmesg-warn [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-7/igt@gem_close_race@basic-process.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@gem_close_race@basic-process.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#8562]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@gem_create@create-ext-set-pat.html - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#8562]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#8555]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#280]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#280]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@reset-stress: - shard-mtlp: [PASS][57] -> [ABORT][58] ([i915#13193]) +3 other tests abort [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-mtlp-8/igt@gem_eio@reset-stress.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-7/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4812]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2-9: NOTRUN -> [SKIP][60] ([i915#4771]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#4525]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4525]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#6334]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4812]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3539] / [i915#4852]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3539]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3539] / [i915#4852]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#5107]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-read-active: - shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#3281]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3281]) +9 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3281]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3281]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#4537] / [i915#4812]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4537] / [i915#4812]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4860]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#2190]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@gem_huc_copy@huc-copy.html - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2190]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#4613]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4613]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][80] ([i915#4613]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk7/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4083]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@basic-write: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4077]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_mmap_gtt@basic-write.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4077]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#4077]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#4083]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2-9: NOTRUN -> [SKIP][87] ([i915#3282]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-uncached.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3282]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_pread@snoop.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][90] ([i915#12964]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@display-protected-crc: - shard-rkl: [PASS][91] -> [TIMEOUT][92] ([i915#12917] / [i915#12964]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-8/igt@gem_pxp@display-protected-crc.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-4/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [PASS][93] -> [TIMEOUT][94] ([i915#12964]) +1 other test timeout [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [TIMEOUT][95] ([i915#12917] / [i915#12964]) +3 other tests timeout [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#4270]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4270]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#5190] / [i915#8428]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8428]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2-9: NOTRUN -> [SKIP][100] ([i915#5190] / [i915#8428]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4077]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_tiled_pread_pwrite: - shard-dg2-9: NOTRUN -> [SKIP][102] ([i915#4079]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][103] ([i915#12941]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@gem_tiled_swapping@non-threaded.html - shard-tglu: [PASS][104] -> [FAIL][105] ([i915#12941]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-tglu-4/igt@gem_tiled_swapping@non-threaded.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-9/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#3297]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2-9: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#3297] / [i915#3323]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#3282] / [i915#3297]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html - shard-dg2-9: NOTRUN -> [SKIP][110] ([i915#3282] / [i915#3297]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3297]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#3281] / [i915#3297]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gem_userptr_blits@relocations.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][113] +8 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-7/igt@gen7_exec_parse@bitmasks.html - shard-dg1: NOTRUN -> [SKIP][114] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#2527]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-large: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#2856]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2-9: NOTRUN -> [SKIP][118] ([i915#2856]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#2527] / [i915#2856]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][120] -> [ABORT][121] ([i915#9820]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][122] ([i915#10131] / [i915#10887] / [i915#9820]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [ABORT][123] ([i915#9820]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#6412]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][125] ([i915#7178]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][126] -> [INCOMPLETE][127] ([i915#12455]) +1 other test incomplete [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [PASS][128] -> [FAIL][129] ([i915#12942]) +1 other test fail [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html - shard-rkl: [PASS][130] -> [FAIL][131] ([i915#12942]) +1 other test fail [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][132] ([i915#12797]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk6/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@thresholds: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#11681]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@i915_pm_rps@thresholds.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2-9: NOTRUN -> [SKIP][134] ([i915#11681]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#4387]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][136] ([i915#9311]) +1 other test dmesg-warn [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][137] ([i915#4817]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk7/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#7707]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#5190]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#12454] / [i915#12712]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#8709]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#8709]) +15 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#8709]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12967] / [i915#6228]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2-9: NOTRUN -> [FAIL][145] ([i915#5956]) +1 other test fail [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#1769] / [i915#3555]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#5286]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#5286]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5286]) +6 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#5286]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][151] +41 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3638]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-9: NOTRUN -> [SKIP][153] ([i915#4538] / [i915#5190]) +5 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5190]) +5 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#6095]) +169 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#12313]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6095]) +39 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#6095]) +100 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2-9: NOTRUN -> [SKIP][159] ([i915#12313]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6095]) +9 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#6095]) +96 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#12805]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-glk: NOTRUN -> [SKIP][163] +118 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#6095]) +16 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-b-dp-4.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [PASS][165] -> [INCOMPLETE][166] ([i915#12796]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-glk7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#12313]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#12313]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#10307] / [i915#6095]) +19 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#6095]) +19 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#12313]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#11616] / [i915#7213]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4087]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-c-dp-3.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-dg2-9: NOTRUN -> [SKIP][175] +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][176] +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +11 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-dg2: [PASS][184] -> [SKIP][185] ([i915#3555]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-11/igt@kms_color@deep-color.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-5/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3116]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3299]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#7118] / [i915#9424]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2-9: NOTRUN -> [SKIP][190] ([i915#7118]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#7118] / [i915#9424]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#3555]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555]) +7 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#13049]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8814]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#3555]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-dg2-9: NOTRUN -> [SKIP][197] ([i915#13046] / [i915#5354]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#4103] / [i915#4213]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#4103]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9809]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#13046] / [i915#5354]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#4103] / [i915#4213]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#9723]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#8588]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3804]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2-9: NOTRUN -> [SKIP][208] ([i915#3840]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#3840]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3840] / [i915#9053]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2-9: NOTRUN -> [SKIP][213] ([i915#3469]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#4854]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_feature_discovery@chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#2065] / [i915#4854]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#1839]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#9337]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3637]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3637]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#3637]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][221] ([i915#9934]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#9934]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-panning@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][223] -> [DMESG-WARN][224] ([i915#118]) +1 other test dmesg-warn [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-glk4/igt@kms_flip@2x-flip-vs-panning@bc-hdmi-a1-hdmi-a2.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk1/igt@kms_flip@2x-flip-vs-panning@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#9934]) +13 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@basic-flip-vs-dpms: - shard-dg1: [PASS][226] -> [SKIP][227] ([i915#3637]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_flip@basic-flip-vs-dpms.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [PASS][228] -> [FAIL][229] ([i915#11989]) +1 other test fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1: - shard-dg2: [PASS][230] -> [FAIL][231] ([i915#11989]) +2 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-8/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-dg1: [PASS][233] -> [FAIL][234] ([i915#11989]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check-interruptible.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][235] ([i915#11989]) +1 other test fail [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a4.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1: - shard-snb: [PASS][236] -> [FAIL][237] ([i915#11989]) +4 other tests fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-snb5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-snb4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#2672]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][244] ([i915#2672]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg1: [PASS][245] -> [SKIP][246] ([i915#3555]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#2587] / [i915#2672]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555] / [i915#8813]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#8813]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2672] / [i915#3555] / [i915#5190]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][253] -> [FAIL][254] ([i915#6880]) +1 other test fail [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-dg1: [PASS][255] -> [SKIP][256] ([i915#4342]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][257] ([i915#8708]) +15 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-snb: [PASS][258] -> [SKIP][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#5354]) +14 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8708]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg1: [PASS][262] -> [DMESG-WARN][263] ([i915#4423]) +1 other test dmesg-warn [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#3023]) +30 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#8708]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen: - shard-dg2-9: NOTRUN -> [SKIP][266] ([i915#3458]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][267] +22 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8708]) +9 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#1825]) +12 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#5354]) +14 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#9766]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#3458]) +7 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#1825]) +43 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][274] +43 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#12713]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-tglu: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][278] -> [SKIP][279] ([i915#3555] / [i915#8228]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#12388]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#12388]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#12394]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#4816]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [PASS][286] -> [INCOMPLETE][287] ([i915#12756]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][288] ([i915#12178]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][289] ([i915#7862]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][290] ([i915#10647] / [i915#12169]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk7/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][291] ([i915#10647]) +1 other test fail [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk7/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-dg1: [PASS][292] -> [SKIP][293] ([i915#7294]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_plane_alpha_blend@constant-alpha-max.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8821]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-9: NOTRUN -> [SKIP][295] ([i915#12247] / [i915#9423]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2-9: NOTRUN -> [SKIP][296] ([i915#12247]) +3 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a: - shard-dg1: [PASS][297] -> [SKIP][298] ([i915#12247]) +11 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - shard-dg1: [PASS][299] -> [SKIP][300] ([i915#8152]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#12247]) +13 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#12247]) +4 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#12247] / [i915#6953]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#12247]) +3 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling: - shard-dg1: [PASS][305] -> [SKIP][306] ([i915#12247] / [i915#3558] / [i915#8152]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d: - shard-dg1: [PASS][307] -> [SKIP][308] ([i915#12247] / [i915#8152]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#12247] / [i915#6953]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#12247] / [i915#6953]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c: - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#12247]) +8 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: NOTRUN -> [DMESG-WARN][312] ([i915#12964]) +19 other tests dmesg-warn [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#3828]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#3828]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#8430]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][316] -> [SKIP][317] ([i915#9519]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][318] -> [SKIP][319] ([i915#9519]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-5/igt@kms_pm_rpm@dpms-non-lpsp.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#9519]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#9519]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#6524]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#11520]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#11520]) +5 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#11520]) +2 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#12316]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][327] ([i915#11520]) +2 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#11520]) +7 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-9: NOTRUN -> [SKIP][329] ([i915#11520]) +3 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +9 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#9688]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_psr@fbc-psr-primary-mmap-gtt@edp-1.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +27 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9732]) +10 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-17/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +10 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-render: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +9 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_psr@psr2-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#4077] / [i915#9688]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#9685]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2-9: NOTRUN -> [SKIP][339] ([i915#4235]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#12755]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#12755]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#5190]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#5289]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#5289]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#3555]) +1 other test skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#3555] / [i915#8809]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-9: NOTRUN -> [SKIP][347] ([i915#8623]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#11920]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_vrr@lobf.html - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#11920]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#9906]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#9906]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2-9: NOTRUN -> [SKIP][352] ([i915#9906]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#9906]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-glk: NOTRUN -> [SKIP][354] ([i915#2437]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-glk8/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#2437]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#2437] / [i915#9412]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@global-sseu-config-invalid: - shard-dg2-9: NOTRUN -> [SKIP][357] ([i915#7387]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#2434]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#2435]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#2433]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@event-wait: - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#8807]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@perf_pmu@event-wait.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#3555] / [i915#8807]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@invalid-init: - shard-tglu: NOTRUN -> [FAIL][363] ([i915#13663]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-10/igt@perf_pmu@invalid-init.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#8516]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@fence-read-hang: - shard-dg2-9: NOTRUN -> [SKIP][365] ([i915#3708]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-9/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][366] ([i915#12910]) +9 other tests fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-6/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#9917]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#9917]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@gem_eio@wait-immediate: - shard-mtlp: [ABORT][369] ([i915#13193]) -> [PASS][370] +1 other test pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-mtlp-7/igt@gem_eio@wait-immediate.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-3/igt@gem_eio@wait-immediate.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [TIMEOUT][371] ([i915#12964]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-2/igt@gem_pxp@create-valid-protected-context.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [TIMEOUT][373] ([i915#12917] / [i915#12964]) -> [PASS][374] +1 other test pass [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][375] ([i915#5138]) -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][377] ([i915#13566]) -> [PASS][378] +4 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][379] ([i915#13566]) -> [PASS][380] +3 other tests pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-dg1: [DMESG-WARN][381] ([i915#4423]) -> [PASS][382] +1 other test pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-17/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-14/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][383] ([i915#3555]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][385] ([i915#11989]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-snb6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-snb5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1: - shard-tglu: [FAIL][387] ([i915#11989]) -> [PASS][388] +2 other tests pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg1: [SKIP][389] ([i915#3555]) -> [PASS][390] +4 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg1: [SKIP][391] ([i915#4342]) -> [PASS][392] +7 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: [SKIP][393] -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16121/shard-snb7/igt@kms_frontbuffer_tracking@fb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144730v1/index.html [-- Attachment #2: Type: text/html, Size: 110783 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for prandom: remove next_pseudo_random32 2025-02-10 13:35 [PATCH] prandom: remove next_pseudo_random32 Markus Theil 2025-02-10 13:39 ` Jason A. Donenfeld @ 2025-02-10 18:16 ` Patchwork 2025-02-10 20:48 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-11 3:26 ` ✗ i915.CI.Full: failure " Patchwork 3 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2025-02-10 18:16 UTC (permalink / raw) To: Markus Theil; +Cc: intel-gfx == Series Details == Series: prandom: remove next_pseudo_random32 URL : https://patchwork.freedesktop.org/series/144613/ State : warning == Summary == Error: dim checkpatch failed 5d8c46c50567 prandom: remove next_pseudo_random32 -:62: WARNING:LINE_SPACING: Missing a blank line after declarations #62: FILE: drivers/media/test-drivers/vivid/vivid-vid-cap.c:304: + struct rnd_state prng; + prandom_seed_state(&prng, dev->tv_freq ^ 0x55); total: 0 errors, 1 warnings, 0 checks, 46 lines checked ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✓ i915.CI.BAT: success for prandom: remove next_pseudo_random32 2025-02-10 13:35 [PATCH] prandom: remove next_pseudo_random32 Markus Theil 2025-02-10 13:39 ` Jason A. Donenfeld 2025-02-10 18:16 ` ✗ Fi.CI.CHECKPATCH: warning for prandom: remove next_pseudo_random32 Patchwork @ 2025-02-10 20:48 ` Patchwork 2025-02-11 3:26 ` ✗ i915.CI.Full: failure " Patchwork 3 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2025-02-10 20:48 UTC (permalink / raw) To: Markus Theil; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3436 bytes --] == Series Details == Series: prandom: remove next_pseudo_random32 URL : https://patchwork.freedesktop.org/series/144613/ State : success == Summary == CI Bug Log - changes from CI_DRM_16102 -> Patchwork_144613v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_144613v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [FAIL][2] ([i915#13633]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/bat-rpls-4/igt@i915_pm_rpm@module-reload.html - fi-cfl-guc: [PASS][3] -> [FAIL][4] ([i915#13633]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][5] -> [SKIP][6] ([i915#9197]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@dmabuf@all-tests: - fi-bsw-n3050: [INCOMPLETE][7] ([i915#13652]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/fi-bsw-n3050/igt@dmabuf@all-tests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/fi-bsw-n3050/igt@dmabuf@all-tests.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/bat-arls-5/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13633]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13633 [i915#13652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13652 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * Linux: CI_DRM_16102 -> Patchwork_144613v1 CI-20190529: 20190529 CI_DRM_16102: 15fe3e3aed19590b6fa960877e9a2ee70976a938 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8227: 8227 Patchwork_144613v1: 15fe3e3aed19590b6fa960877e9a2ee70976a938 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/index.html [-- Attachment #2: Type: text/html, Size: 4279 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
* ✗ i915.CI.Full: failure for prandom: remove next_pseudo_random32 2025-02-10 13:35 [PATCH] prandom: remove next_pseudo_random32 Markus Theil ` (2 preceding siblings ...) 2025-02-10 20:48 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-02-11 3:26 ` Patchwork 3 siblings, 0 replies; 19+ messages in thread From: Patchwork @ 2025-02-11 3:26 UTC (permalink / raw) To: Markus Theil; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100263 bytes --] == Series Details == Series: prandom: remove next_pseudo_random32 URL : https://patchwork.freedesktop.org/series/144613/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16102_full -> Patchwork_144613v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_144613v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_144613v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_144613v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@forked-bo@all-pipes: - shard-snb: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-snb1/igt@kms_cursor_legacy@forked-bo@all-pipes.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-snb5/igt@kms_cursor_legacy@forked-bo@all-pipes.html * igt@perf@oa-exponents: - shard-dg2: [PASS][3] -> [ABORT][4] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-2/igt@perf@oa-exponents.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-3/igt@perf@oa-exponents.html Known issues ------------ Here are the changes found in Patchwork_144613v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2-9: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-tglu: [PASS][8] -> [ABORT][9] ([i915#12817] / [i915#5507]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-tglu-7/igt@device_reset@unbind-reset-rebind.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-7/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2-9: NOTRUN -> [SKIP][10] ([i915#8414]) +15 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@drm_fdinfo@virtual-busy-hang.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3281]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3281]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#13356]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@hang: - shard-dg2-9: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@gem_ctx_sseu@mmap-args.html - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-rkl: [PASS][28] -> [DMESG-WARN][29] ([i915#13363]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-3/igt@gem_eio@kms.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-8/igt@gem_eio@kms.html * igt@gem_eio@wait-wedge-10ms: - shard-mtlp: [PASS][30] -> [ABORT][31] ([i915#13193]) +1 other test abort [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-mtlp-8/igt@gem_eio@wait-wedge-10ms.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-mtlp-7/igt@gem_eio@wait-wedge-10ms.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#4525]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_capture@capture-invisible: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#6334]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-softpin: - shard-dg2-9: NOTRUN -> [SKIP][42] ([i915#3281]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_mmap@bad-offset: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_mmap@bad-offset.html * igt@gem_mmap@big-bo: - shard-dg2-9: NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +6 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#3282]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][56] ([i915#2658]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [PASS][57] -> [TIMEOUT][58] ([i915#12964]) +1 other test timeout [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-context-1: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][60] ([i915#12964]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-rkl: NOTRUN -> [TIMEOUT][62] ([i915#12917] / [i915#12964]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [PASS][63] -> [TIMEOUT][64] ([i915#12917] / [i915#12964]) +1 other test timeout [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-on.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-dg2-9: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2-9: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-to-vebox-x-tiled: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2-9: NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4885]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_tiled_pread_basic.html * igt@gem_tiled_pread_pwrite: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][72] ([i915#12941]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4879]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3297]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen7_exec_parse@bitmasks: - shard-dg2-9: NOTRUN -> [SKIP][78] +7 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@gen9_exec_parse@batch-without-end.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-out: - shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#2856]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][85] ([i915#13029]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][86] -> [ABORT][87] ([i915#9820]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#7091]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#8399]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [PASS][90] -> [FAIL][91] ([i915#12942]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][92] ([i915#2681]) +1 other test warn [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#11681] / [i915#6621]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#11681]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#4387]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#5723]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#7707]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2-9: NOTRUN -> [SKIP][98] ([i915#4212]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#12454] / [i915#12712]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#8709]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#8709]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#8709]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#9531]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#5286]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][111] +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2-9: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4538] / [i915#5190]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-9: NOTRUN -> [SKIP][114] ([i915#5190]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#6095]) +167 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][118] ([i915#10307] / [i915#6095]) +29 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#6095]) +98 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#6095]) +39 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][121] ([i915#6095]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#6095]) +20 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-dp-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#12313]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +34 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#12313]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#6095]) +147 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#3742]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][128] ([i915#4087]) +4 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color@deep-color: - shard-dg2: [PASS][135] -> [SKIP][136] ([i915#3555]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-11/igt@kms_color@deep-color.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-4/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2-9: NOTRUN -> [SKIP][137] ([i915#7118] / [i915#9424]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#9424]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#3116] / [i915#3299]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3299]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#7118] / [i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_content_protection@legacy.html - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7116] / [i915#9424]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][145] ([i915#9424]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#3555]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#13049]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#3555]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#13049]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#13049]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#13049]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][152] +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#13046] / [i915#5354]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2-9: NOTRUN -> [SKIP][154] ([i915#13046] / [i915#5354]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#4103]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4103] / [i915#4213]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#8588]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#8588]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][160] -> [SKIP][161] ([i915#1257]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-11/igt@kms_dp_aux_dev.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-8/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][162] ([i915#1257]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#8812]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3840]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3840]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#2065] / [i915#4854]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][171] ([i915#4854]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2-9: NOTRUN -> [SKIP][172] ([i915#1839]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#1839]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#4881]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9934]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#9934]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3637]) +6 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#8381]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#9934]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3637]) +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#9934]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-snb: [PASS][182] -> [FAIL][183] ([i915#10826]) +1 other test fail [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-snb1/igt@kms_flip@basic-flip-vs-wf_vblank.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-snb5/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@basic-plain-flip@b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][184] ([i915#12964]) +18 other tests dmesg-warn [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-2/igt@kms_flip@basic-plain-flip@b-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-dg2: [PASS][185] -> [FAIL][186] ([i915#11989]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-11/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1: - shard-dg2: NOTRUN -> [FAIL][187] ([i915#11989]) +2 other tests fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#2672] / [i915#3555]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/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-rkl: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-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-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#2587] / [i915#2672]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#2587] / [i915#2672]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555] / [i915#5190]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][199] ([i915#2672]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][200] ([i915#2672] / [i915#3555]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [PASS][201] -> [FAIL][202] ([i915#6880]) +1 other test fail [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8708]) +10 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][204] ([i915#5354]) +14 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#1825]) +17 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#8708]) +8 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3458]) +8 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#3458]) +9 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#8708]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5354]) +7 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][212] +60 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html - shard-dg1: NOTRUN -> [SKIP][213] +28 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][214] ([i915#3458]) +8 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][215] +38 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_hdr@bpc-switch-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_hdr@invalid-hdr.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-dg2-9: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#10656]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#10656]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-9: NOTRUN -> [SKIP][224] ([i915#10656]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#12394]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#12339]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#1839]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#6301]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [PASS][229] -> [INCOMPLETE][230] ([i915#12756]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-9: NOTRUN -> [SKIP][231] ([i915#6953] / [i915#9423]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#12247]) +4 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#12247]) +13 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#12247]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#3555]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-9: NOTRUN -> [SKIP][236] ([i915#12247] / [i915#9423]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-dg2-9: NOTRUN -> [SKIP][237] ([i915#12247]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#12247] / [i915#6953]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#12247]) +11 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#12247] / [i915#6953]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#12247] / [i915#6953]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-9: NOTRUN -> [SKIP][242] ([i915#12343]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#5354]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_pm_backlight@fade.html - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#9812]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_pm_backlight@fade.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5354]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#9685]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: [PASS][247] -> [DMESG-WARN][248] ([i915#12964]) +9 other tests dmesg-warn [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-8/igt@kms_pm_dc@dc5-dpms-negative.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3828]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3828]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#4281]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#8430]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#9519]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#9519]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#9519]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][256] -> [SKIP][257] ([i915#9519]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-tiling: - shard-dg2-9: NOTRUN -> [SKIP][258] ([i915#4077]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#6524] / [i915#6805]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#6524]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#11520]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#11520]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#11520]) +6 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#11520]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#11520]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#11520]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][267] ([i915#11520]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-snb6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-9: NOTRUN -> [SKIP][268] ([i915#9683]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#1072] / [i915#9732]) +8 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +11 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#1072] / [i915#9732]) +13 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-cursor-render: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9732]) +9 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_psr@psr2-cursor-render.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +9 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#9732]) +14 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#9685]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#4884]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#5289]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#5190]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-9: NOTRUN -> [SKIP][279] ([i915#12755]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#12755]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@basic: - shard-tglu: [PASS][281] -> [FAIL][282] ([i915#5465]) +2 other tests fail [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-tglu-8/igt@kms_setmode@basic.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-5/igt@kms_setmode@basic.html - shard-rkl: [PASS][283] -> [FAIL][284] ([i915#5465]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-4/igt@kms_setmode@basic.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][285] ([i915#5465]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][286] -> [FAIL][287] ([i915#5465]) +2 other tests fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-mtlp-8/igt@kms_setmode@basic@pipe-b-edp-1.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2-9: NOTRUN -> [SKIP][288] ([i915#3555]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][290] ([IGT#160]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#8623]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][292] -> [SKIP][293] ([i915#3555] / [i915#9906]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-11/igt@kms_vrr@negative-basic.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-4/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#2437]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#2437] / [i915#9412]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-tglu: NOTRUN -> [SKIP][296] ([i915#2437] / [i915#9412]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#2437]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2-9: NOTRUN -> [SKIP][298] ([i915#2437]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2-9: NOTRUN -> [SKIP][299] ([i915#2436]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#2434]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-5/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#2433]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_vgem@basic-read: - shard-dg2-9: NOTRUN -> [SKIP][302] ([i915#3291] / [i915#3708]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#3291] / [i915#3708]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][304] ([i915#3708]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#3708]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-1/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#9917]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2-9: NOTRUN -> [SKIP][307] ([i915#9917]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sysfs_preempt_timeout@invalid@vcs0: - shard-snb: NOTRUN -> [SKIP][308] +18 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-snb6/igt@sysfs_preempt_timeout@invalid@vcs0.html #### Possible fixes #### * igt@gem_pxp@display-protected-crc: - shard-rkl: [TIMEOUT][309] ([i915#12917] / [i915#12964]) -> [PASS][310] +1 other test pass [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-1/igt@gem_pxp@display-protected-crc.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-8/igt@gem_pxp@display-protected-crc.html * igt@gem_spin_batch@legacy: - shard-rkl: [DMESG-WARN][311] ([i915#12964]) -> [PASS][312] +3 other tests pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-3/igt@gem_spin_batch@legacy.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-8/igt@gem_spin_batch@legacy.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][313] ([i915#12941]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-tglu-5/igt@gem_tiled_swapping@non-threaded.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-6/igt@gem_tiled_swapping@non-threaded.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][315] ([i915#9820]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-8/igt@i915_module_load@reload-with-fault-injection.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][317] ([i915#9820]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-3: - shard-dg1: [FAIL][319] ([i915#13320]) -> [PASS][320] +1 other test pass [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-3.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-3.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][321] ([i915#13566]) -> [PASS][322] +6 other tests pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [FAIL][323] ([i915#13566]) -> [PASS][324] +9 other tests pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][325] ([i915#11989]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-tglu: [FAIL][327] -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-tglu-8/igt@kms_flip@basic-flip-vs-wf_vblank.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-5/igt@kms_flip@basic-flip-vs-wf_vblank.html - shard-glk: [FAIL][329] -> [PASS][330] +1 other test pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-glk1/igt@kms_flip@basic-flip-vs-wf_vblank.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-glk6/igt@kms_flip@basic-flip-vs-wf_vblank.html - shard-mtlp: [FAIL][331] -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-mtlp-4/igt@kms_flip@basic-flip-vs-wf_vblank.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-mtlp-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [FAIL][333] ([i915#11989]) -> [PASS][334] +2 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-tglu-8/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2: - shard-rkl: [FAIL][335] ([i915#11989]) -> [PASS][336] +2 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][337] ([i915#9340]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][339] ([i915#9519]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][341] ([i915#9519]) -> [PASS][342] +3 other tests pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][343] ([i915#4349]) -> [PASS][344] +4 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@gem_eio@in-flight-suspend: - shard-glk: [INCOMPLETE][345] ([i915#13390]) -> [INCOMPLETE][346] ([i915#13197] / [i915#13390]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-glk3/igt@gem_eio@in-flight-suspend.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-glk7/igt@gem_eio@in-flight-suspend.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][347] ([i915#5493]) -> [TIMEOUT][348] ([i915#5493]) +1 other test timeout [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][349] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][350] ([i915#10131] / [i915#9820]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][351] ([i915#10887] / [i915#9820]) -> [ABORT][352] ([i915#9820]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@mock: - shard-glk: [DMESG-WARN][353] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][354] ([i915#9311]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-glk8/igt@i915_selftest@mock.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-glk8/igt@i915_selftest@mock.html * igt@kms_content_protection@lic-type-1: - shard-snb: [INCOMPLETE][355] ([i915#8816]) -> [SKIP][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-snb6/igt@kms_content_protection@lic-type-1.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-snb7/igt@kms_content_protection@lic-type-1.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][357] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][358] ([i915#12745] / [i915#1982] / [i915#4839]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][359] ([i915#4839]) -> [INCOMPLETE][360] ([i915#1982] / [i915#4839]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-glk4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [INCOMPLETE][361] -> [FAIL][362] ([i915#11989]) +1 other test fail [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg1: [SKIP][363] ([i915#3458] / [i915#4423]) -> [SKIP][364] ([i915#3458]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: [SKIP][365] ([i915#4423]) -> [SKIP][366] +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg1: [SKIP][367] -> [SKIP][368] ([i915#4423]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][369] ([i915#3458]) -> [SKIP][370] ([i915#3458] / [i915#4423]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][371] ([i915#12713]) -> [SKIP][372] ([i915#1187] / [i915#12713]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: [SKIP][373] ([i915#12713]) -> [SKIP][374] ([i915#1187] / [i915#12713]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][375] ([i915#9519]) -> [SKIP][376] ([i915#12916]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16102/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [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#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [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#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [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#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13197 [i915#13320]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13320 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [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#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [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#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [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#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: htt == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_144613v1/index.html [-- Attachment #2: Type: text/html, Size: 124924 bytes --] ^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2025-03-21 12:52 UTC | newest] Thread overview: 19+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-10 13:35 [PATCH] prandom: remove next_pseudo_random32 Markus Theil 2025-02-10 13:39 ` Jason A. Donenfeld 2025-02-10 23:07 ` Andi Shyti 2025-02-11 6:13 ` Markus Theil 2025-02-11 6:33 ` [PATCH v2 0/3] " Markus Theil 2025-02-11 6:33 ` [PATCH v2 1/3] drm/i915/selftests: use prandom in selftest Markus Theil 2025-02-13 17:19 ` Andi Shyti 2025-03-19 17:13 ` Jason A. Donenfeld 2025-03-21 12:37 ` Jani Nikula 2025-03-21 12:52 ` Jason A. Donenfeld 2025-02-11 6:33 ` [PATCH v2 2/3] media: vivid: use prandom Markus Theil 2025-02-11 6:33 ` [PATCH v2 3/3] prandom: remove next_pseudo_random32 Markus Theil 2025-02-13 14:27 ` [PATCH v2 0/3] " Krzysztof Karas 2025-02-12 18:47 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [v2,1/3] drm/i915/selftests: use prandom in selftest Patchwork 2025-02-12 19:07 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-13 3:29 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-10 18:16 ` ✗ Fi.CI.CHECKPATCH: warning for prandom: remove next_pseudo_random32 Patchwork 2025-02-10 20:48 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-11 3:26 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox