* [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace
@ 2024-06-26 14:33 Nirmoy Das
2024-06-26 15:24 ` Rodrigo Vivi
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Nirmoy Das @ 2024-06-26 14:33 UTC (permalink / raw)
To: intel-gfx; +Cc: dri-devel, Nirmoy Das, Andi Shyti
We report object allocation failures to userspace with ENOMEM
so add __GFP_NOWARN to remove superfluous oom warnings.
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936
Cc: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
drivers/gpu/drm/i915/i915_scatterlist.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_scatterlist.c b/drivers/gpu/drm/i915/i915_scatterlist.c
index e93d2538f298..4d830740946d 100644
--- a/drivers/gpu/drm/i915/i915_scatterlist.c
+++ b/drivers/gpu/drm/i915/i915_scatterlist.c
@@ -90,7 +90,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node,
GEM_BUG_ON(!max_segment);
- rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL);
+ rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN);
if (!rsgt)
return ERR_PTR(-ENOMEM);
@@ -104,7 +104,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node,
}
if (sg_alloc_table(st, DIV_ROUND_UP_ULL(node->size, segment_pages),
- GFP_KERNEL)) {
+ GFP_KERNEL | __GFP_NOWARN)) {
i915_refct_sgt_put(rsgt);
return ERR_PTR(-ENOMEM);
}
@@ -178,7 +178,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res,
GEM_BUG_ON(list_empty(blocks));
GEM_BUG_ON(!max_segment);
- rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL);
+ rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN);
if (!rsgt)
return ERR_PTR(-ENOMEM);
@@ -190,7 +190,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res,
return ERR_PTR(-E2BIG);
}
- if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL)) {
+ if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL | __GFP_NOWARN)) {
i915_refct_sgt_put(rsgt);
return ERR_PTR(-ENOMEM);
}
--
2.42.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-26 14:33 [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace Nirmoy Das @ 2024-06-26 15:24 ` Rodrigo Vivi 2024-06-26 15:36 ` Nirmoy Das 2024-06-26 17:02 ` ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 10+ messages in thread From: Rodrigo Vivi @ 2024-06-26 15:24 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx, dri-devel, Andi Shyti On Wed, Jun 26, 2024 at 04:33:18PM +0200, Nirmoy Das wrote: > We report object allocation failures to userspace with ENOMEM > so add __GFP_NOWARN to remove superfluous oom warnings. > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 > Cc: Andi Shyti <andi.shyti@linux.intel.com> > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > --- > drivers/gpu/drm/i915/i915_scatterlist.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_scatterlist.c b/drivers/gpu/drm/i915/i915_scatterlist.c > index e93d2538f298..4d830740946d 100644 > --- a/drivers/gpu/drm/i915/i915_scatterlist.c > +++ b/drivers/gpu/drm/i915/i915_scatterlist.c > @@ -90,7 +90,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node, > > GEM_BUG_ON(!max_segment); > > - rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL); > + rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN); > if (!rsgt) > return ERR_PTR(-ENOMEM); is it really safe? I don't believe we can guarantee a good fallback plan here if allocation fails. __i915_refct_sgt_init might end up in a null dereference, no?! > > @@ -104,7 +104,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node, > } > > if (sg_alloc_table(st, DIV_ROUND_UP_ULL(node->size, segment_pages), > - GFP_KERNEL)) { > + GFP_KERNEL | __GFP_NOWARN)) { > i915_refct_sgt_put(rsgt); > return ERR_PTR(-ENOMEM); > } > @@ -178,7 +178,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res, > GEM_BUG_ON(list_empty(blocks)); > GEM_BUG_ON(!max_segment); > > - rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL); > + rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN); > if (!rsgt) > return ERR_PTR(-ENOMEM); > > @@ -190,7 +190,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res, > return ERR_PTR(-E2BIG); > } > > - if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL)) { > + if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL | __GFP_NOWARN)) { > i915_refct_sgt_put(rsgt); > return ERR_PTR(-ENOMEM); > } > -- > 2.42.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-26 15:24 ` Rodrigo Vivi @ 2024-06-26 15:36 ` Nirmoy Das 2024-06-26 15:50 ` Rodrigo Vivi 0 siblings, 1 reply; 10+ messages in thread From: Nirmoy Das @ 2024-06-26 15:36 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx, dri-devel, Andi Shyti [-- Attachment #1: Type: text/plain, Size: 2557 bytes --] Hi Rodrigo, On 6/26/2024 5:24 PM, Rodrigo Vivi wrote: > On Wed, Jun 26, 2024 at 04:33:18PM +0200, Nirmoy Das wrote: >> We report object allocation failures to userspace with ENOMEM >> so add __GFP_NOWARN to remove superfluous oom warnings. >> >> Closes:https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 >> Cc: Andi Shyti<andi.shyti@linux.intel.com> >> Signed-off-by: Nirmoy Das<nirmoy.das@intel.com> >> --- >> drivers/gpu/drm/i915/i915_scatterlist.c | 8 ++++---- >> 1 file changed, 4 insertions(+), 4 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/i915_scatterlist.c b/drivers/gpu/drm/i915/i915_scatterlist.c >> index e93d2538f298..4d830740946d 100644 >> --- a/drivers/gpu/drm/i915/i915_scatterlist.c >> +++ b/drivers/gpu/drm/i915/i915_scatterlist.c >> @@ -90,7 +90,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node, >> >> GEM_BUG_ON(!max_segment); >> >> - rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL); >> + rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN); >> if (!rsgt) >> return ERR_PTR(-ENOMEM); > is it really safe? > I don't believe we can guarantee a good fallback plan here if allocation fails. > __i915_refct_sgt_init > might end up in a null dereference, no?! Kernel is now returning ENOMEM and also throwing a oom warning stack. With __GFP_NOWARN the oom warning stack won't be there in the dmesg but userspace will still get ENOMEM as expected. Let me know if got your question correctly. Regards, Nirmoy > >> >> @@ -104,7 +104,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node, >> } >> >> if (sg_alloc_table(st, DIV_ROUND_UP_ULL(node->size, segment_pages), >> - GFP_KERNEL)) { >> + GFP_KERNEL | __GFP_NOWARN)) { >> i915_refct_sgt_put(rsgt); >> return ERR_PTR(-ENOMEM); >> } >> @@ -178,7 +178,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res, >> GEM_BUG_ON(list_empty(blocks)); >> GEM_BUG_ON(!max_segment); >> >> - rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL); >> + rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN); >> if (!rsgt) >> return ERR_PTR(-ENOMEM); >> >> @@ -190,7 +190,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res, >> return ERR_PTR(-E2BIG); >> } >> >> - if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL)) { >> + if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL | __GFP_NOWARN)) { >> i915_refct_sgt_put(rsgt); >> return ERR_PTR(-ENOMEM); >> } >> -- >> 2.42.0 >> [-- Attachment #2: Type: text/html, Size: 3836 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-26 15:36 ` Nirmoy Das @ 2024-06-26 15:50 ` Rodrigo Vivi 2024-06-26 21:07 ` Nirmoy Das 0 siblings, 1 reply; 10+ messages in thread From: Rodrigo Vivi @ 2024-06-26 15:50 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx, dri-devel, Andi Shyti On Wed, Jun 26, 2024 at 05:36:43PM +0200, Nirmoy Das wrote: > Hi Rodrigo, > > On 6/26/2024 5:24 PM, Rodrigo Vivi wrote: > > On Wed, Jun 26, 2024 at 04:33:18PM +0200, Nirmoy Das wrote: > > >We report object allocation failures to userspace with ENOMEM > >so add __GFP_NOWARN to remove superfluous oom warnings. > > >Closes: [1]https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 > >Cc: Andi Shyti [2]<andi.shyti@linux.intel.com> > >Signed-off-by: Nirmoy Das [3]<nirmoy.das@intel.com> > >--- > > drivers/gpu/drm/i915/i915_scatterlist.c | 8 ++++---- > > 1 file changed, 4 insertions(+), 4 deletions(-) > > >diff --git a/drivers/gpu/drm/i915/i915_scatterlist.c b/drivers/gpu/drm/i915/i915_scatterlist.c > >index e93d2538f298..4d830740946d 100644 > >--- a/drivers/gpu/drm/i915/i915_scatterlist.c > >+++ b/drivers/gpu/drm/i915/i915_scatterlist.c > >@@ -90,7 +90,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node, > > > > GEM_BUG_ON(!max_segment); > > > >- rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL); > >+ rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN); > > if (!rsgt) > > return ERR_PTR(-ENOMEM); > > is it really safe? > I don't believe we can guarantee a good fallback plan here if allocation fails. > __i915_refct_sgt_init > might end up in a null dereference, no?! > > Kernel is now returning ENOMEM and also throwing a oom warning stack. > With __GFP_NOWARN > > the oom warning stack won't be there in the dmesg but userspace will still > get ENOMEM as expected. doh! I had missunderstand the flag. Thanks for the confirmation. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> BTW, what email clients are you using recently? it is hard to parse your responses lately. Please check if it is really sending/replying as text-only mode. > > Let me know if got your question correctly. > > Regards, > > Nirmoy > > > > > > >@@ -104,7 +104,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node, > > } > > > > if (sg_alloc_table(st, DIV_ROUND_UP_ULL(node->size, segment_pages), > >- GFP_KERNEL)) { > >+ GFP_KERNEL | __GFP_NOWARN)) { > > i915_refct_sgt_put(rsgt); > > return ERR_PTR(-ENOMEM); > > } > >@@ -178,7 +178,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res, > > GEM_BUG_ON(list_empty(blocks)); > > GEM_BUG_ON(!max_segment); > > > >- rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL); > >+ rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN); > > if (!rsgt) > > return ERR_PTR(-ENOMEM); > > > >@@ -190,7 +190,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res, > > return ERR_PTR(-E2BIG); > > } > > > >- if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL)) { > >+ if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL | __GFP_NOWARN)) { > > i915_refct_sgt_put(rsgt); > > return ERR_PTR(-ENOMEM); > > } > >-- > >2.42.0 > > References > > Visible links > 1. https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 > 2. mailto:andi.shyti@linux.intel.com > 3. mailto:nirmoy.das@intel.com ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-26 15:50 ` Rodrigo Vivi @ 2024-06-26 21:07 ` Nirmoy Das 0 siblings, 0 replies; 10+ messages in thread From: Nirmoy Das @ 2024-06-26 21:07 UTC (permalink / raw) To: Rodrigo Vivi, Nirmoy Das; +Cc: intel-gfx, dri-devel, Andi Shyti Hi Rodrigo, On 6/26/2024 5:50 PM, Rodrigo Vivi wrote: > On Wed, Jun 26, 2024 at 05:36:43PM +0200, Nirmoy Das wrote: >> Hi Rodrigo, >> >> On 6/26/2024 5:24 PM, Rodrigo Vivi wrote: >> >> On Wed, Jun 26, 2024 at 04:33:18PM +0200, Nirmoy Das wrote: >> >> >We report object allocation failures to userspace with ENOMEM >> >so add __GFP_NOWARN to remove superfluous oom warnings. >> >> >Closes: [1]https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 >> >Cc: Andi Shyti [2]<andi.shyti@linux.intel.com> >> >Signed-off-by: Nirmoy Das [3]<nirmoy.das@intel.com> >> >--- >> > drivers/gpu/drm/i915/i915_scatterlist.c | 8 ++++---- >> > 1 file changed, 4 insertions(+), 4 deletions(-) >> >> >diff --git a/drivers/gpu/drm/i915/i915_scatterlist.c b/drivers/gpu/drm/i915/i915_scatterlist.c >> >index e93d2538f298..4d830740946d 100644 >> >--- a/drivers/gpu/drm/i915/i915_scatterlist.c >> >+++ b/drivers/gpu/drm/i915/i915_scatterlist.c >> >@@ -90,7 +90,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node, >> > >> > GEM_BUG_ON(!max_segment); >> > >> >- rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL); >> >+ rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN); >> > if (!rsgt) >> > return ERR_PTR(-ENOMEM); >> >> is it really safe? >> I don't believe we can guarantee a good fallback plan here if allocation fails. >> __i915_refct_sgt_init >> might end up in a null dereference, no?! >> >> Kernel is now returning ENOMEM and also throwing a oom warning stack. >> With __GFP_NOWARN >> >> the oom warning stack won't be there in the dmesg but userspace will still >> get ENOMEM as expected. > doh! I had missunderstand the flag. Thanks for the confirmation. > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > BTW, what email clients are you using recently? Using the same client, Thunderbird. > it is hard to parse your responses lately. Please check if it is really > sending/replying as text-only mode. Thanks for notifying me. May be recent update changed some settings. I will check. Nirmoy > >> >> Let me know if got your question correctly. >> >> Regards, >> >> Nirmoy >> >> >> >> > >> >@@ -104,7 +104,7 @@ struct i915_refct_sgt *i915_rsgt_from_mm_node(const struct drm_mm_node *node, >> > } >> > >> > if (sg_alloc_table(st, DIV_ROUND_UP_ULL(node->size, segment_pages), >> >- GFP_KERNEL)) { >> >+ GFP_KERNEL | __GFP_NOWARN)) { >> > i915_refct_sgt_put(rsgt); >> > return ERR_PTR(-ENOMEM); >> > } >> >@@ -178,7 +178,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res, >> > GEM_BUG_ON(list_empty(blocks)); >> > GEM_BUG_ON(!max_segment); >> > >> >- rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL); >> >+ rsgt = kmalloc(sizeof(*rsgt), GFP_KERNEL | __GFP_NOWARN); >> > if (!rsgt) >> > return ERR_PTR(-ENOMEM); >> > >> >@@ -190,7 +190,7 @@ struct i915_refct_sgt *i915_rsgt_from_buddy_resource(struct ttm_resource *res, >> > return ERR_PTR(-E2BIG); >> > } >> > >> >- if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL)) { >> >+ if (sg_alloc_table(st, PFN_UP(res->size), GFP_KERNEL | __GFP_NOWARN)) { >> > i915_refct_sgt_put(rsgt); >> > return ERR_PTR(-ENOMEM); >> > } >> >-- >> >2.42.0 >> >> References >> >> Visible links >> 1. https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 >> 2. mailto:andi.shyti@linux.intel.com >> 3. mailto:nirmoy.das@intel.com ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-26 14:33 [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace Nirmoy Das 2024-06-26 15:24 ` Rodrigo Vivi @ 2024-06-26 17:02 ` Patchwork 2024-06-27 2:09 ` ✓ Fi.CI.IGT: " Patchwork 2024-06-27 10:04 ` [PATCH] " Andi Shyti 3 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-06-26 17:02 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 6698 bytes --] == Series Details == Series: drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace URL : https://patchwork.freedesktop.org/series/135436/ State : success == Summary == CI Bug Log - changes from CI_DRM_15006 -> Patchwork_135436v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/index.html Participating hosts (40 -> 35) ------------------------------ Additional (1): bat-arlh-2 Missing (6): bat-dg1-7 bat-kbl-2 fi-snb-2520m fi-glk-j4005 fi-kbl-8809g bat-jsl-3 Known issues ------------ Here are the changes found in Patchwork_135436v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-arlh-2: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@debugfs_test@basic-hwmon.html * igt@fbdev@eof: - bat-arlh-2: NOTRUN -> [SKIP][2] ([i915#11345]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@fbdev@eof.html * igt@fbdev@info: - bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@fbdev@info.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-arlh-2: NOTRUN -> [SKIP][4] ([i915#10213]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-arlh-2: NOTRUN -> [SKIP][5] ([i915#11343]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][6] ([i915#10197]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-arlh-2: NOTRUN -> [SKIP][7] ([i915#10196]) +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arlh-2: NOTRUN -> [SKIP][8] ([i915#10206]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arlh-2: NOTRUN -> [SKIP][9] ([i915#10209]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [PASS][10] -> [ABORT][11] ([i915#10594]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-arlh-2: NOTRUN -> [SKIP][12] ([i915#10200]) +9 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_pm_backlight@basic-brightness: - bat-arlh-2: NOTRUN -> [SKIP][13] ([i915#11346]) +32 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arlh-2: NOTRUN -> [SKIP][14] ([i915#10208] / [i915#8809]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arlh-2: NOTRUN -> [SKIP][15] ([i915#10212]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-arlh-2: NOTRUN -> [SKIP][16] ([i915#10214]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arlh-2: NOTRUN -> [SKIP][17] ([i915#10216]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arlh-2/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-arls-2: [DMESG-WARN][18] ([i915#7507]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/bat-arls-2/igt@kms_frontbuffer_tracking@basic.html [i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200 [i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206 [i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11345]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11345 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#7507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7507 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 Build changes ------------- * Linux: CI_DRM_15006 -> Patchwork_135436v1 CI-20190529: 20190529 CI_DRM_15006: 030da316e4baf1a7c55bba54fdec3aa7f8427f85 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7903: 5993e109620867e80f6f4f0428db26260ae5d16d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_135436v1: 030da316e4baf1a7c55bba54fdec3aa7f8427f85 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/index.html [-- Attachment #2: Type: text/html, Size: 7708 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.IGT: success for drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-26 14:33 [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace Nirmoy Das 2024-06-26 15:24 ` Rodrigo Vivi 2024-06-26 17:02 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-06-27 2:09 ` Patchwork 2024-06-27 10:04 ` [PATCH] " Andi Shyti 3 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-06-27 2:09 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 79676 bytes --] == Series Details == Series: drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace URL : https://patchwork.freedesktop.org/series/135436/ State : success == Summary == CI Bug Log - changes from CI_DRM_15006_full -> Patchwork_135436v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between CI_DRM_15006_full and Patchwork_135436v1_full: ### New IGT tests (2) ### * igt@kms_cursor_crc@cursor-alpha-opaque@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.37] s * igt@kms_cursor_crc@cursor-dpms@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.82] s Known issues ------------ Here are the changes found in Patchwork_135436v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][2] ([i915#11078]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +6 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +10 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@virtual-busy-idle: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#7697]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gem_basic@multigpu-create-close.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7697]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#9323]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html * igt@gem_compute@compute-square: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9310]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@gem_compute@compute-square.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8555]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#5882]) +5 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#6334]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][23] ([i915#2846]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4473] / [i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][25] ([i915#2842]) +2 other tests fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk5/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_exec_fair@basic-pace-solo.html - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_exec_reloc@basic-wc-active.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +8 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +13 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4860]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4860]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#2190]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: NOTRUN -> [FAIL][40] ([i915#10378]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: [PASS][42] -> [FAIL][43] ([i915#10378]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@massive: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4565]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#284]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4083]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) +10 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_wc@write: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3282]) +9 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3282]) +8 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3282]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4270]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3282]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#5190] / [i915#8428]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#8411]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4885]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4079]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_tiled_pread_pwrite.html * igt@gem_tiling_max_stride: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +8 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282] / [i915#3297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_userptr_blits@forbidden-operations.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282] / [i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#4880]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3297] / [i915#4958]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3297]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#2856]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@gen9_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#2527]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +5 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@gen9_exec_parse@bb-oversize.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][77] -> [ABORT][78] ([i915#10131] / [i915#9820]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#7178]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#8399]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][81] -> [FAIL][82] ([i915#3591]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#6245]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#5723]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html * igt@intel_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#7707]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4212]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#4215]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3826]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4212]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#8709]) +7 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#1769] / [i915#3555]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#5286]) +5 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4538] / [i915#5286]) +7 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3638]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3638]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][96] +12 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5190]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538]) +9 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@basic: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#10656]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#10656]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@kms_big_joiner@invalid-modeset.html - shard-dg2: NOTRUN -> [SKIP][101] ([i915#10656]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#6095]) +99 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#10307] / [i915#6095]) +148 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6095]) +27 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#6095]) +69 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][107] +150 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#7213]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-a-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#3742]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4087]) +3 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4087]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#7828]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#7828]) +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#7828]) +11 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#7828]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#9424]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#9424]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#9424]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#7116] / [i915#9424]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3555] / [i915#6944] / [i915#9424]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#8814]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3359]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3359]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#3555]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8814]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3555]) +10 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#3359]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3359]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1: - shard-glk: [PASS][129] -> [DMESG-FAIL][130] ([i915#118]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk8/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy: - shard-dg1: NOTRUN -> [INCOMPLETE][131] ([i915#2295]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_cursor_legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#4103]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#9809]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][134] -> [FAIL][135] ([i915#2346]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4103] / [i915#4213]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4103] / [i915#4213]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-bo@pipe-b: - shard-glk: [PASS][138] -> [DMESG-WARN][139] ([i915#10166] / [i915#1982]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-glk7/igt@kms_cursor_legacy@torture-bo@pipe-b.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk9/igt@kms_cursor_legacy@torture-bo@pipe-b.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#8588]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3804]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3840]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#3840]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#3840]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3955]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3469]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#1839]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#1839]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#658]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#658]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4881]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3637]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][154] +6 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#8381]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#9934]) +7 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][157] +24 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check@b-hdmi-a1: - shard-snb: [PASS][158] -> [FAIL][159] ([i915#2122]) +1 other test fail [158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-snb6/igt@kms_flip@plain-flip-ts-check@b-hdmi-a1.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#2587] / [i915#2672]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#2672]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8810]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#2672] / [i915#3555]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#8708]) +9 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][167] +58 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3458]) +8 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3023]) +22 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#8708]) +24 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#1825]) +33 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#5354]) +9 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8708]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#5439]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#1825]) +21 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3458]) +25 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8228]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8228]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8228]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#6301]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8821]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8821]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#5176]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#9423]) +11 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#9423]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#9423]) +11 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#5235] / [i915#9423]) +15 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#5235]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#5235]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#5235]) +7 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#5235]) +7 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#5354]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#9685]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5978]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3361]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][196] -> [FAIL][197] ([i915#9295]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9340]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9519]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9519]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#9519]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg2: [PASS][202] -> [SKIP][203] ([i915#9519]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#4077]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_pm_rpm@pm-tiling.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#9808]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#11520]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#11520]) +4 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#11520]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9683]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#9683]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-cursor-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#1072] / [i915#9732]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#1072] / [i915#9732]) +32 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9688]) +10 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#1072] / [i915#9732]) +17 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#4077] / [i915#9688]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_rotation_crc@exhaust-fences: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#4235]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-6/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#5289]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#5289]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#5289]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#3555]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8809]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#9906]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#9906]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#9906]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#2437]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_writeback@writeback-check-output.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#2437]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][227] ([i915#2437]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#2436]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-check-all@rcs0: - shard-mtlp: NOTRUN -> [FAIL][229] ([i915#4349]) +2 other tests fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-3/igt@perf_pmu@busy-check-all@rcs0.html * igt@perf_pmu@busy-check-all@vcs1: - shard-dg1: NOTRUN -> [FAIL][230] ([i915#4349]) +3 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-17/igt@perf_pmu@busy-check-all@vcs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][231] ([i915#6806]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@perf_pmu@frequency@gt0.html - shard-dg1: NOTRUN -> [FAIL][232] ([i915#6806]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#3708] / [i915#4077]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3291] / [i915#3708]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#10216] / [i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3708]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3708]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#9917]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#9917]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-18/igt@sriov_basic@bind-unbind-vf.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][240] ([i915#9781]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][241] ([i915#9781]) +1 other test fail [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-15/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#4818]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][243] ([i915#4818]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [FAIL][244] ([i915#2842]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg2: [FAIL][246] ([i915#10378]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-11/igt@gem_lmem_swapping@heavy-multi@lmem0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-6/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [ABORT][248] -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-glk8/igt@i915_module_load@reload-with-fault-injection.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-glk5/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-dg2: [ABORT][250] -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][252] ([i915#3743]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [DMESG-WARN][254] ([i915#4423]) -> [PASS][255] +1 other test pass [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][256] ([IGT#2]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-6/igt@kms_sysfs_edid_timing.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-11/igt@kms_sysfs_edid_timing.html #### Warnings #### * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][258] ([i915#2842]) -> [FAIL][259] ([i915#2876]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-tglu-10/igt@gem_exec_fair@basic-pace@rcs0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: [FAIL][260] ([i915#10378] / [i915#4423]) -> [FAIL][261] ([i915#10378]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][262] ([i915#9697]) -> [ABORT][263] ([i915#10887] / [i915#9820]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: [SKIP][264] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][265] ([i915#4538] / [i915#5286]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-dg1: [SKIP][266] ([i915#4423] / [i915#8708]) -> [SKIP][267] ([i915#8708]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][268] ([i915#3458]) -> [SKIP][269] ([i915#10433] / [i915#3458]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][270] ([i915#4816]) -> [SKIP][271] ([i915#4070] / [i915#4816]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][272] ([i915#9295]) -> [SKIP][273] ([i915#3361]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr@fbc-pr-sprite-mmap-gtt: - shard-dg1: [SKIP][274] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][275] ([i915#1072] / [i915#9732]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: [SKIP][276] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][277] ([i915#1072] / [i915#9732]) +7 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-11/igt@kms_psr@fbc-psr-primary-blt.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-1/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: [SKIP][278] ([i915#1072] / [i915#9732]) -> [SKIP][279] ([i915#1072] / [i915#9673] / [i915#9732]) +14 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-11/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][280] ([i915#7484]) -> [FAIL][281] ([i915#9100]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15006/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_135436v1/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295 [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#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [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#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9310]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9310 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [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#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [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#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [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 Build changes ------------- * Linux: CI_DRM_15006 -> Patchwork_135436v1 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15006: 030da316e4baf1a7c55bba54fdec3aa7f8427f85 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7903: 5993e109620867e80f6f4f0428db26260ae5d16d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_135436v1: 030da316e4baf1a7c55bba54fdec3aa7f8427f85 @ 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_135436v1/index.html [-- Attachment #2: Type: text/html, Size: 99265 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-26 14:33 [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace Nirmoy Das ` (2 preceding siblings ...) 2024-06-27 2:09 ` ✓ Fi.CI.IGT: " Patchwork @ 2024-06-27 10:04 ` Andi Shyti 2024-06-27 16:56 ` Nirmoy Das 3 siblings, 1 reply; 10+ messages in thread From: Andi Shyti @ 2024-06-27 10:04 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx, dri-devel, Andi Shyti Hi Nirmoy, On Wed, Jun 26, 2024 at 04:33:18PM +0200, Nirmoy Das wrote: > We report object allocation failures to userspace with ENOMEM > so add __GFP_NOWARN to remove superfluous oom warnings. I think this should be the default behavior. ENOMEM doesn't necessarily mean that there is a kernel failure. Most of the time we just run out of memory, deal with it :-) Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> Thanks, Andi ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-27 10:04 ` [PATCH] " Andi Shyti @ 2024-06-27 16:56 ` Nirmoy Das 2024-06-27 22:36 ` Andi Shyti 0 siblings, 1 reply; 10+ messages in thread From: Nirmoy Das @ 2024-06-27 16:56 UTC (permalink / raw) To: Andi Shyti, Nirmoy Das; +Cc: intel-gfx, dri-devel Hi Andi, On 6/27/2024 12:04 PM, Andi Shyti wrote: > Hi Nirmoy, > > On Wed, Jun 26, 2024 at 04:33:18PM +0200, Nirmoy Das wrote: >> We report object allocation failures to userspace with ENOMEM >> so add __GFP_NOWARN to remove superfluous oom warnings. > I think this should be the default behavior. Yes, when drivers handle ENOMEM situation which is the case for i915/gem code > ENOMEM doesn't > necessarily mean that there is a kernel failure. Most of the time > we just run out of memory, deal with it :-) > > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> Thanks! > > Thanks, > Andi ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace 2024-06-27 16:56 ` Nirmoy Das @ 2024-06-27 22:36 ` Andi Shyti 0 siblings, 0 replies; 10+ messages in thread From: Andi Shyti @ 2024-06-27 22:36 UTC (permalink / raw) To: Nirmoy Das; +Cc: Andi Shyti, Nirmoy Das, intel-gfx, dri-devel Hi Nirmoy, On Thu, Jun 27, 2024 at 06:56:53PM +0200, Nirmoy Das wrote: > On 6/27/2024 12:04 PM, Andi Shyti wrote: > > On Wed, Jun 26, 2024 at 04:33:18PM +0200, Nirmoy Das wrote: > > > We report object allocation failures to userspace with ENOMEM > > > so add __GFP_NOWARN to remove superfluous oom warnings. > > I think this should be the default behavior. > Yes, when drivers handle ENOMEM situation which is the case for i915/gem > code > > ENOMEM doesn't > > necessarily mean that there is a kernel failure. Most of the time > > we just run out of memory, deal with it :-) > > > > Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> > > Thanks! while at it... merged in drm-intel-gt-next Andi ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-06-27 22:36 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-26 14:33 [PATCH] drm/i915/gem: Suppress oom warning in favour of ENOMEM to userspace Nirmoy Das 2024-06-26 15:24 ` Rodrigo Vivi 2024-06-26 15:36 ` Nirmoy Das 2024-06-26 15:50 ` Rodrigo Vivi 2024-06-26 21:07 ` Nirmoy Das 2024-06-26 17:02 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-06-27 2:09 ` ✓ Fi.CI.IGT: " Patchwork 2024-06-27 10:04 ` [PATCH] " Andi Shyti 2024-06-27 16:56 ` Nirmoy Das 2024-06-27 22:36 ` Andi Shyti
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.