* [PATCH] drm/i915: Remove deadcode
@ 2024-12-22 17:47 linux
2024-12-27 11:40 ` Tvrtko Ursulin
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: linux @ 2024-12-22 17:47 UTC (permalink / raw)
To: jani.nikula, joonas.lahtinen, rodrigo.vivi, tursulin, intel-gfx
Cc: airlied, simona, dri-devel, linux-kernel, Dr. David Alan Gilbert
From: "Dr. David Alan Gilbert" <linux@treblig.org>
i915_active_acquire_for_context() was added in 2020 by
commit 5d9341370f57 ("drm/i915: Export a preallocate variant of
i915_active_acquire()") but has never been used.
The last use of __i915_gem_object_is_lmem() was removed in 2021 by
commit ff20afc4cee7 ("drm/i915: Update error capture code to avoid using
the current vma state")
Remove them.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
---
drivers/gpu/drm/i915/gem/i915_gem_lmem.c | 23 -----------------------
drivers/gpu/drm/i915/gem/i915_gem_lmem.h | 2 --
drivers/gpu/drm/i915/i915_active.c | 18 ------------------
drivers/gpu/drm/i915/i915_active.h | 1 -
4 files changed, 44 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c
index 3198b64ad7db..388f90784d8a 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c
@@ -52,29 +52,6 @@ bool i915_gem_object_is_lmem(struct drm_i915_gem_object *obj)
mr->type == INTEL_MEMORY_STOLEN_LOCAL);
}
-/**
- * __i915_gem_object_is_lmem - Whether the object is resident in
- * lmem while in the fence signaling critical path.
- * @obj: The object to check.
- *
- * This function is intended to be called from within the fence signaling
- * path where the fence, or a pin, keeps the object from being migrated. For
- * example during gpu reset or similar.
- *
- * Return: Whether the object is resident in lmem.
- */
-bool __i915_gem_object_is_lmem(struct drm_i915_gem_object *obj)
-{
- struct intel_memory_region *mr = READ_ONCE(obj->mm.region);
-
-#ifdef CONFIG_LOCKDEP
- GEM_WARN_ON(dma_resv_test_signaled(obj->base.resv, DMA_RESV_USAGE_BOOKKEEP) &&
- i915_gem_object_evictable(obj));
-#endif
- return mr && (mr->type == INTEL_MEMORY_LOCAL ||
- mr->type == INTEL_MEMORY_STOLEN_LOCAL);
-}
-
/**
* __i915_gem_object_create_lmem_with_ps - Create lmem object and force the
* minimum page size for the backing pages.
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
index 5a7a14e85c3f..ecd8f1a633a1 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
+++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h
@@ -19,8 +19,6 @@ i915_gem_object_lmem_io_map(struct drm_i915_gem_object *obj,
bool i915_gem_object_is_lmem(struct drm_i915_gem_object *obj);
-bool __i915_gem_object_is_lmem(struct drm_i915_gem_object *obj);
-
struct drm_i915_gem_object *
i915_gem_object_create_lmem_from_data(struct drm_i915_private *i915,
const void *data, size_t size);
diff --git a/drivers/gpu/drm/i915/i915_active.c b/drivers/gpu/drm/i915/i915_active.c
index 35319228bc51..0dbc4e289300 100644
--- a/drivers/gpu/drm/i915/i915_active.c
+++ b/drivers/gpu/drm/i915/i915_active.c
@@ -527,24 +527,6 @@ int i915_active_acquire(struct i915_active *ref)
return err;
}
-int i915_active_acquire_for_context(struct i915_active *ref, u64 idx)
-{
- struct i915_active_fence *active;
- int err;
-
- err = i915_active_acquire(ref);
- if (err)
- return err;
-
- active = active_instance(ref, idx);
- if (!active) {
- i915_active_release(ref);
- return -ENOMEM;
- }
-
- return 0; /* return with active ref */
-}
-
void i915_active_release(struct i915_active *ref)
{
debug_active_assert(ref);
diff --git a/drivers/gpu/drm/i915/i915_active.h b/drivers/gpu/drm/i915/i915_active.h
index 77c676ecc263..821f7c21ea9b 100644
--- a/drivers/gpu/drm/i915/i915_active.h
+++ b/drivers/gpu/drm/i915/i915_active.h
@@ -186,7 +186,6 @@ int i915_request_await_active(struct i915_request *rq,
#define I915_ACTIVE_AWAIT_BARRIER BIT(2)
int i915_active_acquire(struct i915_active *ref);
-int i915_active_acquire_for_context(struct i915_active *ref, u64 idx);
bool i915_active_acquire_if_busy(struct i915_active *ref);
void i915_active_release(struct i915_active *ref);
--
2.47.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH] drm/i915: Remove deadcode 2024-12-22 17:47 [PATCH] drm/i915: Remove deadcode linux @ 2024-12-27 11:40 ` Tvrtko Ursulin 2024-12-27 12:11 ` Dr. David Alan Gilbert 2024-12-30 18:55 ` Vodapalli, Ravi Kumar 2025-01-07 21:02 ` ✗ Fi.CI.SPARSE: warning for " Patchwork ` (2 subsequent siblings) 3 siblings, 2 replies; 7+ messages in thread From: Tvrtko Ursulin @ 2024-12-27 11:40 UTC (permalink / raw) To: linux, jani.nikula, joonas.lahtinen, rodrigo.vivi, intel-gfx Cc: airlied, simona, dri-devel, linux-kernel Hi, On 22/12/2024 17:47, linux@treblig.org wrote: > From: "Dr. David Alan Gilbert" <linux@treblig.org> > > i915_active_acquire_for_context() was added in 2020 by > commit 5d9341370f57 ("drm/i915: Export a preallocate variant of > i915_active_acquire()") but has never been used. > > The last use of __i915_gem_object_is_lmem() was removed in 2021 by > commit ff20afc4cee7 ("drm/i915: Update error capture code to avoid using > the current vma state") > > Remove them. I plan to apply this and your other two dead code removal patches. I needed to re-send to the mailing list first so they get picked up by the CI before I can do that (I guess you are not subscribed to intel-gfx). It should happen in a day or two. Thanks for the cleanup! Regards, Tvrtko > Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> > --- > drivers/gpu/drm/i915/gem/i915_gem_lmem.c | 23 ----------------------- > drivers/gpu/drm/i915/gem/i915_gem_lmem.h | 2 -- > drivers/gpu/drm/i915/i915_active.c | 18 ------------------ > drivers/gpu/drm/i915/i915_active.h | 1 - > 4 files changed, 44 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c > index 3198b64ad7db..388f90784d8a 100644 > --- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c > +++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c > @@ -52,29 +52,6 @@ bool i915_gem_object_is_lmem(struct drm_i915_gem_object *obj) > mr->type == INTEL_MEMORY_STOLEN_LOCAL); > } > > -/** > - * __i915_gem_object_is_lmem - Whether the object is resident in > - * lmem while in the fence signaling critical path. > - * @obj: The object to check. > - * > - * This function is intended to be called from within the fence signaling > - * path where the fence, or a pin, keeps the object from being migrated. For > - * example during gpu reset or similar. > - * > - * Return: Whether the object is resident in lmem. > - */ > -bool __i915_gem_object_is_lmem(struct drm_i915_gem_object *obj) > -{ > - struct intel_memory_region *mr = READ_ONCE(obj->mm.region); > - > -#ifdef CONFIG_LOCKDEP > - GEM_WARN_ON(dma_resv_test_signaled(obj->base.resv, DMA_RESV_USAGE_BOOKKEEP) && > - i915_gem_object_evictable(obj)); > -#endif > - return mr && (mr->type == INTEL_MEMORY_LOCAL || > - mr->type == INTEL_MEMORY_STOLEN_LOCAL); > -} > - > /** > * __i915_gem_object_create_lmem_with_ps - Create lmem object and force the > * minimum page size for the backing pages. > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h > index 5a7a14e85c3f..ecd8f1a633a1 100644 > --- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h > +++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h > @@ -19,8 +19,6 @@ i915_gem_object_lmem_io_map(struct drm_i915_gem_object *obj, > > bool i915_gem_object_is_lmem(struct drm_i915_gem_object *obj); > > -bool __i915_gem_object_is_lmem(struct drm_i915_gem_object *obj); > - > struct drm_i915_gem_object * > i915_gem_object_create_lmem_from_data(struct drm_i915_private *i915, > const void *data, size_t size); > diff --git a/drivers/gpu/drm/i915/i915_active.c b/drivers/gpu/drm/i915/i915_active.c > index 35319228bc51..0dbc4e289300 100644 > --- a/drivers/gpu/drm/i915/i915_active.c > +++ b/drivers/gpu/drm/i915/i915_active.c > @@ -527,24 +527,6 @@ int i915_active_acquire(struct i915_active *ref) > return err; > } > > -int i915_active_acquire_for_context(struct i915_active *ref, u64 idx) > -{ > - struct i915_active_fence *active; > - int err; > - > - err = i915_active_acquire(ref); > - if (err) > - return err; > - > - active = active_instance(ref, idx); > - if (!active) { > - i915_active_release(ref); > - return -ENOMEM; > - } > - > - return 0; /* return with active ref */ > -} > - > void i915_active_release(struct i915_active *ref) > { > debug_active_assert(ref); > diff --git a/drivers/gpu/drm/i915/i915_active.h b/drivers/gpu/drm/i915/i915_active.h > index 77c676ecc263..821f7c21ea9b 100644 > --- a/drivers/gpu/drm/i915/i915_active.h > +++ b/drivers/gpu/drm/i915/i915_active.h > @@ -186,7 +186,6 @@ int i915_request_await_active(struct i915_request *rq, > #define I915_ACTIVE_AWAIT_BARRIER BIT(2) > > int i915_active_acquire(struct i915_active *ref); > -int i915_active_acquire_for_context(struct i915_active *ref, u64 idx); > bool i915_active_acquire_if_busy(struct i915_active *ref); > > void i915_active_release(struct i915_active *ref); ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] drm/i915: Remove deadcode 2024-12-27 11:40 ` Tvrtko Ursulin @ 2024-12-27 12:11 ` Dr. David Alan Gilbert 2024-12-30 18:55 ` Vodapalli, Ravi Kumar 1 sibling, 0 replies; 7+ messages in thread From: Dr. David Alan Gilbert @ 2024-12-27 12:11 UTC (permalink / raw) To: Tvrtko Ursulin Cc: jani.nikula, joonas.lahtinen, rodrigo.vivi, intel-gfx, airlied, simona, dri-devel, linux-kernel * Tvrtko Ursulin (tursulin@ursulin.net) wrote: > > Hi, > > On 22/12/2024 17:47, linux@treblig.org wrote: > > From: "Dr. David Alan Gilbert" <linux@treblig.org> > > > > i915_active_acquire_for_context() was added in 2020 by > > commit 5d9341370f57 ("drm/i915: Export a preallocate variant of > > i915_active_acquire()") but has never been used. > > > > The last use of __i915_gem_object_is_lmem() was removed in 2021 by > > commit ff20afc4cee7 ("drm/i915: Update error capture code to avoid using > > the current vma state") > > > > Remove them. > > I plan to apply this and your other two dead code removal patches. Thanks! > I needed > to re-send to the mailing list first so they get picked up by the CI before > I can do that (I guess you are not subscribed to intel-gfx). Right, I'm not subscribed. > It should > happen in a day or two. Thanks for the cleanup! Thanks again, Dave > > Regards, > > Tvrtko > > Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> > > --- > > drivers/gpu/drm/i915/gem/i915_gem_lmem.c | 23 ----------------------- > > drivers/gpu/drm/i915/gem/i915_gem_lmem.h | 2 -- > > drivers/gpu/drm/i915/i915_active.c | 18 ------------------ > > drivers/gpu/drm/i915/i915_active.h | 1 - > > 4 files changed, 44 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c > > index 3198b64ad7db..388f90784d8a 100644 > > --- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c > > +++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c > > @@ -52,29 +52,6 @@ bool i915_gem_object_is_lmem(struct drm_i915_gem_object *obj) > > mr->type == INTEL_MEMORY_STOLEN_LOCAL); > > } > > -/** > > - * __i915_gem_object_is_lmem - Whether the object is resident in > > - * lmem while in the fence signaling critical path. > > - * @obj: The object to check. > > - * > > - * This function is intended to be called from within the fence signaling > > - * path where the fence, or a pin, keeps the object from being migrated. For > > - * example during gpu reset or similar. > > - * > > - * Return: Whether the object is resident in lmem. > > - */ > > -bool __i915_gem_object_is_lmem(struct drm_i915_gem_object *obj) > > -{ > > - struct intel_memory_region *mr = READ_ONCE(obj->mm.region); > > - > > -#ifdef CONFIG_LOCKDEP > > - GEM_WARN_ON(dma_resv_test_signaled(obj->base.resv, DMA_RESV_USAGE_BOOKKEEP) && > > - i915_gem_object_evictable(obj)); > > -#endif > > - return mr && (mr->type == INTEL_MEMORY_LOCAL || > > - mr->type == INTEL_MEMORY_STOLEN_LOCAL); > > -} > > - > > /** > > * __i915_gem_object_create_lmem_with_ps - Create lmem object and force the > > * minimum page size for the backing pages. > > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h > > index 5a7a14e85c3f..ecd8f1a633a1 100644 > > --- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h > > +++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h > > @@ -19,8 +19,6 @@ i915_gem_object_lmem_io_map(struct drm_i915_gem_object *obj, > > bool i915_gem_object_is_lmem(struct drm_i915_gem_object *obj); > > -bool __i915_gem_object_is_lmem(struct drm_i915_gem_object *obj); > > - > > struct drm_i915_gem_object * > > i915_gem_object_create_lmem_from_data(struct drm_i915_private *i915, > > const void *data, size_t size); > > diff --git a/drivers/gpu/drm/i915/i915_active.c b/drivers/gpu/drm/i915/i915_active.c > > index 35319228bc51..0dbc4e289300 100644 > > --- a/drivers/gpu/drm/i915/i915_active.c > > +++ b/drivers/gpu/drm/i915/i915_active.c > > @@ -527,24 +527,6 @@ int i915_active_acquire(struct i915_active *ref) > > return err; > > } > > -int i915_active_acquire_for_context(struct i915_active *ref, u64 idx) > > -{ > > - struct i915_active_fence *active; > > - int err; > > - > > - err = i915_active_acquire(ref); > > - if (err) > > - return err; > > - > > - active = active_instance(ref, idx); > > - if (!active) { > > - i915_active_release(ref); > > - return -ENOMEM; > > - } > > - > > - return 0; /* return with active ref */ > > -} > > - > > void i915_active_release(struct i915_active *ref) > > { > > debug_active_assert(ref); > > diff --git a/drivers/gpu/drm/i915/i915_active.h b/drivers/gpu/drm/i915/i915_active.h > > index 77c676ecc263..821f7c21ea9b 100644 > > --- a/drivers/gpu/drm/i915/i915_active.h > > +++ b/drivers/gpu/drm/i915/i915_active.h > > @@ -186,7 +186,6 @@ int i915_request_await_active(struct i915_request *rq, > > #define I915_ACTIVE_AWAIT_BARRIER BIT(2) > > int i915_active_acquire(struct i915_active *ref); > > -int i915_active_acquire_for_context(struct i915_active *ref, u64 idx); > > bool i915_active_acquire_if_busy(struct i915_active *ref); > > void i915_active_release(struct i915_active *ref); -- -----Open up your eyes, open up your mind, open up your code ------- / Dr. David Alan Gilbert | Running GNU/Linux | Happy \ \ dave @ treblig.org | | In Hex / \ _________________________|_____ http://www.treblig.org |_______/ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] drm/i915: Remove deadcode 2024-12-27 11:40 ` Tvrtko Ursulin 2024-12-27 12:11 ` Dr. David Alan Gilbert @ 2024-12-30 18:55 ` Vodapalli, Ravi Kumar 1 sibling, 0 replies; 7+ messages in thread From: Vodapalli, Ravi Kumar @ 2024-12-30 18:55 UTC (permalink / raw) To: intel-gfx On 12/27/2024 5:10 PM, Tvrtko Ursulin wrote: > > Hi, > > On 22/12/2024 17:47, linux@treblig.org wrote: >> From: "Dr. David Alan Gilbert" <linux@treblig.org> >> >> i915_active_acquire_for_context() was added in 2020 by >> commit 5d9341370f57 ("drm/i915: Export a preallocate variant of >> i915_active_acquire()") but has never been used. >> >> The last use of __i915_gem_object_is_lmem() was removed in 2021 by >> commit ff20afc4cee7 ("drm/i915: Update error capture code to avoid using >> the current vma state") >> >> Remove them. > > I plan to apply this and your other two dead code removal patches. I > needed to re-send to the mailing list first so they get picked up by > the CI before I can do that (I guess you are not subscribed to > intel-gfx). It should happen in a day or two. Thanks for the cleanup! > > Regards, > > Tvrtko >> Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> >> --- >> drivers/gpu/drm/i915/gem/i915_gem_lmem.c | 23 ----------------------- >> drivers/gpu/drm/i915/gem/i915_gem_lmem.h | 2 -- >> drivers/gpu/drm/i915/i915_active.c | 18 ------------------ >> drivers/gpu/drm/i915/i915_active.h | 1 - >> 4 files changed, 44 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c >> b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c >> index 3198b64ad7db..388f90784d8a 100644 >> --- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.c >> +++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.c >> @@ -52,29 +52,6 @@ bool i915_gem_object_is_lmem(struct >> drm_i915_gem_object *obj) >> mr->type == INTEL_MEMORY_STOLEN_LOCAL); >> } >> -/** >> - * __i915_gem_object_is_lmem - Whether the object is resident in >> - * lmem while in the fence signaling critical path. >> - * @obj: The object to check. >> - * >> - * This function is intended to be called from within the fence >> signaling >> - * path where the fence, or a pin, keeps the object from being >> migrated. For >> - * example during gpu reset or similar. >> - * >> - * Return: Whether the object is resident in lmem. >> - */ >> -bool __i915_gem_object_is_lmem(struct drm_i915_gem_object *obj) >> -{ >> - struct intel_memory_region *mr = READ_ONCE(obj->mm.region); >> - >> -#ifdef CONFIG_LOCKDEP >> - GEM_WARN_ON(dma_resv_test_signaled(obj->base.resv, >> DMA_RESV_USAGE_BOOKKEEP) && >> - i915_gem_object_evictable(obj)); >> -#endif >> - return mr && (mr->type == INTEL_MEMORY_LOCAL || >> - mr->type == INTEL_MEMORY_STOLEN_LOCAL); >> -} >> - >> /** >> * __i915_gem_object_create_lmem_with_ps - Create lmem object and >> force the >> * minimum page size for the backing pages. >> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h >> b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h >> index 5a7a14e85c3f..ecd8f1a633a1 100644 >> --- a/drivers/gpu/drm/i915/gem/i915_gem_lmem.h >> +++ b/drivers/gpu/drm/i915/gem/i915_gem_lmem.h >> @@ -19,8 +19,6 @@ i915_gem_object_lmem_io_map(struct >> drm_i915_gem_object *obj, >> bool i915_gem_object_is_lmem(struct drm_i915_gem_object *obj); Is i915_gem_object_is_lmem() also should be removed? Regards, Ravi Kumar V >> -bool __i915_gem_object_is_lmem(struct drm_i915_gem_object *obj); >> - >> struct drm_i915_gem_object * >> i915_gem_object_create_lmem_from_data(struct drm_i915_private *i915, >> const void *data, size_t size); >> diff --git a/drivers/gpu/drm/i915/i915_active.c >> b/drivers/gpu/drm/i915/i915_active.c >> index 35319228bc51..0dbc4e289300 100644 >> --- a/drivers/gpu/drm/i915/i915_active.c >> +++ b/drivers/gpu/drm/i915/i915_active.c >> @@ -527,24 +527,6 @@ int i915_active_acquire(struct i915_active *ref) >> return err; >> } >> -int i915_active_acquire_for_context(struct i915_active *ref, u64 idx) >> -{ >> - struct i915_active_fence *active; >> - int err; >> - >> - err = i915_active_acquire(ref); >> - if (err) >> - return err; >> - >> - active = active_instance(ref, idx); >> - if (!active) { >> - i915_active_release(ref); >> - return -ENOMEM; >> - } >> - >> - return 0; /* return with active ref */ >> -} >> - >> void i915_active_release(struct i915_active *ref) >> { >> debug_active_assert(ref); >> diff --git a/drivers/gpu/drm/i915/i915_active.h >> b/drivers/gpu/drm/i915/i915_active.h >> index 77c676ecc263..821f7c21ea9b 100644 >> --- a/drivers/gpu/drm/i915/i915_active.h >> +++ b/drivers/gpu/drm/i915/i915_active.h >> @@ -186,7 +186,6 @@ int i915_request_await_active(struct i915_request >> *rq, >> #define I915_ACTIVE_AWAIT_BARRIER BIT(2) >> int i915_active_acquire(struct i915_active *ref); >> -int i915_active_acquire_for_context(struct i915_active *ref, u64 idx); >> bool i915_active_acquire_if_busy(struct i915_active *ref); >> void i915_active_release(struct i915_active *ref); ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/i915: Remove deadcode 2024-12-22 17:47 [PATCH] drm/i915: Remove deadcode linux 2024-12-27 11:40 ` Tvrtko Ursulin @ 2025-01-07 21:02 ` Patchwork 2025-01-07 21:18 ` ✓ i915.CI.BAT: success " Patchwork 2025-01-08 2:34 ` ✗ i915.CI.Full: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-01-07 21:02 UTC (permalink / raw) To: linux; +Cc: intel-gfx == Series Details == Series: drm/i915: Remove deadcode URL : https://patchwork.freedesktop.org/series/143187/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915: Remove deadcode 2024-12-22 17:47 [PATCH] drm/i915: Remove deadcode linux 2024-12-27 11:40 ` Tvrtko Ursulin 2025-01-07 21:02 ` ✗ Fi.CI.SPARSE: warning for " Patchwork @ 2025-01-07 21:18 ` Patchwork 2025-01-08 2:34 ` ✗ i915.CI.Full: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-01-07 21:18 UTC (permalink / raw) To: linux; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 6378 bytes --] == Series Details == Series: drm/i915: Remove deadcode URL : https://patchwork.freedesktop.org/series/143187/ State : success == Summary == CI Bug Log - changes from CI_DRM_15919 -> Patchwork_143187v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/index.html Participating hosts (37 -> 37) ------------------------------ Additional (1): bat-adlp-9 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_143187v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlp-9: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@basic: - bat-adlp-9: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - bat-adlp-9: NOTRUN -> [SKIP][3] ([i915#3282]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@gem_tiled_pread_basic.html * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][4] -> [FAIL][5] ([i915#13401]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-rpls-4/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-adlp-9: NOTRUN -> [SKIP][6] ([i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][7] -> [DMESG-FAIL][8] ([i915#13393]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/bat-mtlp-8/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-mtlp-8/igt@i915_selftest@live.html - bat-mtlp-6: [PASS][9] -> [DMESG-FAIL][10] ([i915#13393]) +1 other test dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/bat-mtlp-6/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-mtlp-6/igt@i915_selftest@live.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-adlp-9: NOTRUN -> [SKIP][11] ([i915#4103]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dsc@dsc-basic: - bat-adlp-9: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#3840]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlp-9: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adlp-9: NOTRUN -> [SKIP][14] ([i915#9812]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-adlp-9: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-9: NOTRUN -> [SKIP][16] ([i915#3555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adlp-9: NOTRUN -> [SKIP][17] ([i915#3291] / [i915#3708]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-adlp-9/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_selftest@live@gt_pm: - bat-jsl-3: [DMESG-FAIL][18] ([i915#13132]) -> [PASS][19] +1 other test pass [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/bat-jsl-3/igt@i915_selftest@live@gt_pm.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/bat-jsl-3/igt@i915_selftest@live@gt_pm.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#13132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13132 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13401]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13401 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 Build changes ------------- * Linux: CI_DRM_15919 -> Patchwork_143187v1 CI-20190529: 20190529 CI_DRM_15919: dbd476153d41352ad6022088be16301051b9bce7 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_143187v1: dbd476153d41352ad6022088be16301051b9bce7 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/index.html [-- Attachment #2: Type: text/html, Size: 7481 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915: Remove deadcode 2024-12-22 17:47 [PATCH] drm/i915: Remove deadcode linux ` (2 preceding siblings ...) 2025-01-07 21:18 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-01-08 2:34 ` Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-01-08 2:34 UTC (permalink / raw) To: linux; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 98862 bytes --] == Series Details == Series: drm/i915: Remove deadcode URL : https://patchwork.freedesktop.org/series/143187/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15919_full -> Patchwork_143187v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_143187v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_143187v1_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 -> 11) ------------------------------ Additional (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_143187v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@individual: - shard-dg1: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@gem_exec_balancer@individual.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [ABORT][2] ([i915#9820]) -> [DMESG-WARN][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-snb: [FAIL][4] ([i915#11989]) -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check.html Known issues ------------ Here are the changes found in Patchwork_143187v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/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_15919/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-2/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +15 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#13008]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][14] -> [INCOMPLETE][15] ([i915#7297]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-snb7/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@hibernate: - shard-tglu: [PASS][21] -> [ABORT][22] ([i915#10030] / [i915#7975] / [i915#8213]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-2/igt@gem_eio@hibernate.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-10/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][23] ([i915#5784]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4036]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][27] ([i915#11713]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_endless@dispatch: - shard-dg2: [PASS][29] -> [TIMEOUT][30] ([i915#3778] / [i915#7016]) +1 other test timeout [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-6/igt@gem_exec_endless@dispatch.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-6/igt@gem_exec_endless@dispatch.html * igt@gem_exec_fence@parallel: - shard-rkl: [PASS][31] -> [DMESG-WARN][32] ([i915#12964]) +1 other test dmesg-warn [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-6/igt@gem_exec_fence@parallel.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-2/igt@gem_exec_fence@parallel.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#5107]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +10 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#7276]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: NOTRUN -> [ABORT][44] ([i915#7975] / [i915#8213]) +1 other test abort [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613] / [i915#7582]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#12193]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@read-write: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@write-prefaulted: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282]) +5 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][61] ([i915#2658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-snb4/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][62] ([i915#12964]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#13398]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-rkl: NOTRUN -> [TIMEOUT][66] ([i915#12917] / [i915#12964]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-linear: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-linear.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#5190] / [i915#8428]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4079]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: NOTRUN -> [ABORT][71] ([i915#13263] / [i915#13449]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-snb5/igt@gem_tiled_swapping@non-threaded.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4879]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#3323]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282] / [i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#3297]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4958]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#2527]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#6590]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#11681] / [i915#6621]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@i915_pm_rps@basic-api.html * igt@i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#4387]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][89] -> [SKIP][90] ([i915#7984]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-3/igt@i915_power@sanity.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@i915_power@sanity.html - shard-rkl: NOTRUN -> [SKIP][91] ([i915#7984]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@i915_power@sanity.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][92] ([i915#9311]) +1 other test dmesg-warn [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-read: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#7707]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4212]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#8709]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#8709]) +15 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#8709]) +11 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#12967] / [i915#6228]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#9531]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [PASS][100] -> [FAIL][101] ([i915#11808]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg1: [PASS][103] -> [FAIL][104] ([i915#5956]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#5286]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5286]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#5286]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#3638]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +8 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][112] +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#6095]) +19 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4423] / [i915#6095]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#12313]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#6095]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#12805]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#6095]) +159 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#6095]) +90 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-1/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-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#6095]) +39 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#6095]) +16 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#12313]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#6095]) +135 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#12313]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#11616] / [i915#7213]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#3742]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7213]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4087]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) +5 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-5/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#7828]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#7828]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#7828]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#3555] / [i915#9979]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#3116] / [i915#3299]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3116] / [i915#3299]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#9424]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#9424]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6944]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7118] / [i915#9424]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#3555]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#13049]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#13049]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#3555]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3555]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#3555]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#13049]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#13049]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][154] +11 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#4103]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#13046] / [i915#5354]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][157] -> [FAIL][158] ([i915#2346]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#4103] / [i915#4213]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#4103]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#9723]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#1257]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#3840]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3840] / [i915#9688]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3840] / [i915#9053]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3840] / [i915#9053]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#1839]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9337]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#658]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#658]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#9934]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9934]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][173] -> [FAIL][174] ([i915#11989]) +1 other test fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#8381]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3637]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#3637]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#9934]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3637]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@blocking-wf_vblank: - shard-dg2: [PASS][180] -> [FAIL][181] ([i915#11989]) +1 other test fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-8/igt@kms_flip@blocking-wf_vblank.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-4/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-rkl: [PASS][182] -> [FAIL][183] ([i915#11989]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: - shard-rkl: NOTRUN -> [FAIL][184] ([i915#11989]) +1 other test fail [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-2/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][185] ([i915#12964]) +6 other tests dmesg-warn [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-mtlp: [PASS][186] -> [FAIL][187] ([i915#11989]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#2672] / [i915#3555]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/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]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/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-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#2672]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8708]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][201] -> [FAIL][202] ([i915#6880]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#1825]) +18 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#5439]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#8708]) +11 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#8708]) +12 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5354]) +24 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][208] +40 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#1825]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3023]) +16 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-dg1: NOTRUN -> [SKIP][211] +32 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][212] +392 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3458]) +10 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3458]) +16 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_hdr@bpc-switch.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_143187v1/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-dpms: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_hdr@static-toggle-dpms.html * igt@kms_histogram@algo-basic: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#13389]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-5/igt@kms_histogram@algo-basic.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#13389]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_histogram@algo-basic.html * igt@kms_histogram@global-basic: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#13388]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@kms_histogram@global-basic.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#12388]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#12394]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#12339]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#12339]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#6301]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#6301]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][227] +6 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8806]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#12247]) +12 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#12247]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#12247]) +8 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#12247] / [i915#6953]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#12247] / [i915#6953] / [i915#9423]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][234] ([i915#12247] / [i915#6953]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#12247]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg1: [PASS][236] -> [DMESG-WARN][237] ([i915#4423]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#9812]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#9812]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#12343]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#5354]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#9685]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#3828]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-14/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][244] -> [FAIL][245] ([i915#9295]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#9685]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3361]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#3828]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#8430]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][250] ([i915#8430]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#9519]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][252] -> [SKIP][253] ([i915#9519]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#9519]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][255] -> [SKIP][256] ([i915#9519]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#6524]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#6524]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#11520]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#11520]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#11520]) +6 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][262] ([i915#11520]) +9 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-snb4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#11520]) +5 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#11520]) +5 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#9683]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#9732]) +10 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#1072] / [i915#9732]) +12 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@psr-basic: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#9732]) +14 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_psr@psr-basic.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#1072] / [i915#9732]) +13 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +14 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#4077] / [i915#9688]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#5289]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#5190]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#12755]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#12755]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#3555]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][277] ([i915#13179]) +1 other test abort [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-snb4/igt@kms_selftest@drm_framebuffer.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][278] ([IGT#160] / [i915#6493]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#8623]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#9906]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#9906]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#2437]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-3/igt@kms_writeback@writeback-check-output.html - shard-tglu: NOTRUN -> [SKIP][283] ([i915#2437]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#2437] / [i915#9412]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#2437]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#2437] / [i915#9412]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@blocking: - shard-mtlp: [PASS][287] -> [FAIL][288] ([i915#10538]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-8/igt@perf@blocking.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-7/igt@perf@blocking.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][289] ([i915#4349]) +3 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#8516]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#3708]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][292] +56 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-9/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][293] ([i915#12910]) +9 other tests fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#9917]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@gem_eio@hibernate: - shard-dg2: [ABORT][295] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-5/igt@gem_eio@hibernate.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-11/igt@gem_eio@hibernate.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][297] ([i915#5493]) -> [PASS][298] +1 other test pass [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][299] ([i915#10729]) -> [PASS][300] +1 other test pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][301] ([i915#9820]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][303] ([i915#13393]) -> [PASS][304] +1 other test pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1: - shard-tglu: [FAIL][305] ([i915#11989]) -> [PASS][306] +3 other tests pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-10/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate@d-edp1: - shard-mtlp: [FAIL][307] ([i915#11989]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate@d-edp1.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@d-edp1.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][309] ([i915#3555] / [i915#8228]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][311] ([i915#4281]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][313] ([i915#9519]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-11/igt@kms_pm_rpm@dpms-lpsp.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@perf_pmu@busy-idle@ccs0: - shard-dg2: [FAIL][315] ([i915#4349]) -> [PASS][316] +1 other test pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt@perf_pmu@busy-idle@ccs0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-10/igt@perf_pmu@busy-idle@ccs0.html * igt@syncobj_timeline@invalid-query-zero-handles: - shard-dg1: [DMESG-WARN][317] ([i915#4423]) -> [PASS][318] +3 other tests pass [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt@syncobj_timeline@invalid-query-zero-handles.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@syncobj_timeline@invalid-query-zero-handles.html #### Warnings #### * igt@gem_eio@in-flight-suspend: - shard-glk: [INCOMPLETE][319] ([i915#13197] / [i915#13390]) -> [INCOMPLETE][320] ([i915#13390]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-glk7/igt@gem_eio@in-flight-suspend.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-glk9/igt@gem_eio@in-flight-suspend.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][321] ([i915#5493]) -> [TIMEOUT][322] ([i915#5493]) +1 other test timeout [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][323] ([i915#10131] / [i915#10887]) -> [ABORT][324] ([i915#10131]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][325] ([i915#9820]) -> [ABORT][326] ([i915#10887] / [i915#9820]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][327] ([i915#5138]) -> [DMESG-FAIL][328] ([i915#11627] / [i915#13314]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-dg1: [SKIP][329] ([i915#4423] / [i915#6095]) -> [SKIP][330] ([i915#6095]) +1 other test skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: [SKIP][331] ([i915#3299]) -> [SKIP][332] ([i915#3299] / [i915#4423]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: [SKIP][333] ([i915#4103] / [i915#4213]) -> [SKIP][334] ([i915#4103] / [i915#4213] / [i915#4423]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: [SKIP][335] ([i915#3555]) -> [SKIP][336] ([i915#3555] / [i915#4423]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: [SKIP][337] ([i915#4423] / [i915#9934]) -> [SKIP][338] ([i915#9934]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg1: [SKIP][339] ([i915#3458]) -> [SKIP][340] ([i915#3458] / [i915#4423]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][341] ([i915#10433] / [i915#3458]) -> [SKIP][342] ([i915#3458]) +3 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][343] ([i915#3458]) -> [SKIP][344] ([i915#10433] / [i915#3458]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][345] ([i915#4070] / [i915#4816]) -> [SKIP][346] ([i915#4816]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@fbc-psr-cursor-mmap-cpu: - shard-dg1: [SKIP][347] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][348] ([i915#1072] / [i915#9732]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-18/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-18/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt: - shard-dg1: [SKIP][349] ([i915#1072] / [i915#9732]) -> [SKIP][350] ([i915#1072] / [i915#4423] / [i915#9732]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15919/shard-dg1-14/igt@kms_psr@fbc-psr-cursor-mmap-gtt.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/shard-dg1-13/igt@kms_psr@fbc-psr-cursor-mmap-gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160 [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10729 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11627]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11627 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [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#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12591 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13197 [i915#13263]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13263 [i915#13314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13314 [i915#13388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13388 [i915#13389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13389 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13449]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13449 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#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#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [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#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [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#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [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#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [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#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * Linux: CI_DRM_15919 -> Patchwork_143187v1 CI-20190529: 20190529 CI_DRM_15919: dbd476153d41352ad6022088be16301051b9bce7 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8179: 183b33f81365dd4a57fe3100a13d3fb13788d158 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_143187v1: dbd476153d41352ad6022088be16301051b9bce7 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143187v1/index.html [-- Attachment #2: Type: text/html, Size: 123828 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-01-08 2:34 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-12-22 17:47 [PATCH] drm/i915: Remove deadcode linux 2024-12-27 11:40 ` Tvrtko Ursulin 2024-12-27 12:11 ` Dr. David Alan Gilbert 2024-12-30 18:55 ` Vodapalli, Ravi Kumar 2025-01-07 21:02 ` ✗ Fi.CI.SPARSE: warning for " Patchwork 2025-01-07 21:18 ` ✓ i915.CI.BAT: success " Patchwork 2025-01-08 2:34 ` ✗ 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