* [Intel-gfx] [PATCH 1/2] drm/i915: Remove unused for_each_uabi_class_engine
@ 2023-11-02 9:32 Tvrtko Ursulin
2023-11-02 9:32 ` [Intel-gfx] [PATCH 2/2] drm/i915: Move for_each_engine* out of i915_drv.h Tvrtko Ursulin
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Tvrtko Ursulin @ 2023-11-02 9:32 UTC (permalink / raw)
To: Intel-gfx, dri-devel; +Cc: Tvrtko Ursulin
From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Unused macro after 99919be74aa3 ("drm/i915/gem: Zap the i915_gem_object_blt code")
removed some code.
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@linux.intel.com>
---
drivers/gpu/drm/i915/i915_drv.h | 5 -----
1 file changed, 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 259884b10d9a..bf6ed434bb6b 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -418,11 +418,6 @@ static inline struct intel_gt *to_gt(const struct drm_i915_private *i915)
(engine__); \
(engine__) = rb_to_uabi_engine(rb_next(&(engine__)->uabi_node)))
-#define for_each_uabi_class_engine(engine__, class__, i915__) \
- for ((engine__) = intel_engine_lookup_user((i915__), (class__), 0); \
- (engine__) && (engine__)->uabi_class == (class__); \
- (engine__) = rb_to_uabi_engine(rb_next(&(engine__)->uabi_node)))
-
#define INTEL_INFO(i915) ((i915)->__info)
#define RUNTIME_INFO(i915) (&(i915)->__runtime)
#define DRIVER_CAPS(i915) (&(i915)->caps)
--
2.39.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* [Intel-gfx] [PATCH 2/2] drm/i915: Move for_each_engine* out of i915_drv.h 2023-11-02 9:32 [Intel-gfx] [PATCH 1/2] drm/i915: Remove unused for_each_uabi_class_engine Tvrtko Ursulin @ 2023-11-02 9:32 ` Tvrtko Ursulin 2023-11-02 11:43 ` Jani Nikula 2023-11-02 21:16 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Tvrtko Ursulin @ 2023-11-02 9:32 UTC (permalink / raw) To: Intel-gfx, dri-devel; +Cc: Tvrtko Ursulin From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Iterators operate on struct intel_gt so lets move it to intel_gt.h in order to make i915_drv.h less of a dumping ground for stuff. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Suggested-by: Jani Nikula <jani.nikula@linux.intel.com> --- drivers/gpu/drm/i915/gt/intel_engine_pm.h | 1 + drivers/gpu/drm/i915/gt/intel_gt.h | 14 ++++++++++++++ drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c | 2 +- drivers/gpu/drm/i915/i915_drv.h | 14 -------------- drivers/gpu/drm/i915/selftests/intel_uncore.c | 2 ++ 5 files changed, 18 insertions(+), 15 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/intel_engine_pm.h b/drivers/gpu/drm/i915/gt/intel_engine_pm.h index d68675925b79..1d97c435a015 100644 --- a/drivers/gpu/drm/i915/gt/intel_engine_pm.h +++ b/drivers/gpu/drm/i915/gt/intel_engine_pm.h @@ -10,6 +10,7 @@ #include "i915_request.h" #include "intel_engine_types.h" #include "intel_wakeref.h" +#include "intel_gt.h" #include "intel_gt_pm.h" static inline bool diff --git a/drivers/gpu/drm/i915/gt/intel_gt.h b/drivers/gpu/drm/i915/gt/intel_gt.h index 9ffdb05e231e..b0e453e27ea8 100644 --- a/drivers/gpu/drm/i915/gt/intel_gt.h +++ b/drivers/gpu/drm/i915/gt/intel_gt.h @@ -171,6 +171,20 @@ void intel_gt_release_all(struct drm_i915_private *i915); (id__)++) \ for_each_if(((gt__) = (i915__)->gt[(id__)])) +/* Simple iterator over all initialised engines */ +#define for_each_engine(engine__, gt__, id__) \ + for ((id__) = 0; \ + (id__) < I915_NUM_ENGINES; \ + (id__)++) \ + for_each_if ((engine__) = (gt__)->engine[(id__)]) + +/* Iterator over subset of engines selected by mask */ +#define for_each_engine_masked(engine__, gt__, mask__, tmp__) \ + for ((tmp__) = (mask__) & (gt__)->info.engine_mask; \ + (tmp__) ? \ + ((engine__) = (gt__)->engine[__mask_next_bit(tmp__)]), 1 : \ + 0;) + void intel_gt_info_print(const struct intel_gt_info *info, struct drm_printer *p); diff --git a/drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c index 8f9b874fdc9c..3aa1d014c14d 100644 --- a/drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c +++ b/drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c @@ -6,8 +6,8 @@ #include <drm/drm_print.h> -#include "i915_drv.h" /* for_each_engine! */ #include "intel_engine.h" +#include "intel_gt.h" #include "intel_gt_debugfs.h" #include "intel_gt_engines_debugfs.h" diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index bf6ed434bb6b..f3be9033a93f 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -396,20 +396,6 @@ static inline struct intel_gt *to_gt(const struct drm_i915_private *i915) return i915->gt[0]; } -/* Simple iterator over all initialised engines */ -#define for_each_engine(engine__, gt__, id__) \ - for ((id__) = 0; \ - (id__) < I915_NUM_ENGINES; \ - (id__)++) \ - for_each_if ((engine__) = (gt__)->engine[(id__)]) - -/* Iterator over subset of engines selected by mask */ -#define for_each_engine_masked(engine__, gt__, mask__, tmp__) \ - for ((tmp__) = (mask__) & (gt__)->info.engine_mask; \ - (tmp__) ? \ - ((engine__) = (gt__)->engine[__mask_next_bit(tmp__)]), 1 : \ - 0;) - #define rb_to_uabi_engine(rb) \ rb_entry_safe(rb, struct intel_engine_cs, uabi_node) diff --git a/drivers/gpu/drm/i915/selftests/intel_uncore.c b/drivers/gpu/drm/i915/selftests/intel_uncore.c index 03ea75cd84dd..4f98aa8a861e 100644 --- a/drivers/gpu/drm/i915/selftests/intel_uncore.c +++ b/drivers/gpu/drm/i915/selftests/intel_uncore.c @@ -24,6 +24,8 @@ #include "../i915_selftest.h" +#include "gt/intel_gt.h" + static int intel_fw_table_check(const struct intel_forcewake_range *ranges, unsigned int num_ranges, bool is_watertight) -- 2.39.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH 2/2] drm/i915: Move for_each_engine* out of i915_drv.h 2023-11-02 9:32 ` [Intel-gfx] [PATCH 2/2] drm/i915: Move for_each_engine* out of i915_drv.h Tvrtko Ursulin @ 2023-11-02 11:43 ` Jani Nikula 0 siblings, 0 replies; 7+ messages in thread From: Jani Nikula @ 2023-11-02 11:43 UTC (permalink / raw) To: Tvrtko Ursulin, Intel-gfx, dri-devel; +Cc: Tvrtko Ursulin On Thu, 02 Nov 2023, Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> wrote: > From: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > > Iterators operate on struct intel_gt so lets move it to intel_gt.h in > order to make i915_drv.h less of a dumping ground for stuff. > > Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > Suggested-by: Jani Nikula <jani.nikula@linux.intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/gt/intel_engine_pm.h | 1 + > drivers/gpu/drm/i915/gt/intel_gt.h | 14 ++++++++++++++ > drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c | 2 +- > drivers/gpu/drm/i915/i915_drv.h | 14 -------------- > drivers/gpu/drm/i915/selftests/intel_uncore.c | 2 ++ > 5 files changed, 18 insertions(+), 15 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/intel_engine_pm.h b/drivers/gpu/drm/i915/gt/intel_engine_pm.h > index d68675925b79..1d97c435a015 100644 > --- a/drivers/gpu/drm/i915/gt/intel_engine_pm.h > +++ b/drivers/gpu/drm/i915/gt/intel_engine_pm.h > @@ -10,6 +10,7 @@ > #include "i915_request.h" > #include "intel_engine_types.h" > #include "intel_wakeref.h" > +#include "intel_gt.h" > #include "intel_gt_pm.h" > > static inline bool > diff --git a/drivers/gpu/drm/i915/gt/intel_gt.h b/drivers/gpu/drm/i915/gt/intel_gt.h > index 9ffdb05e231e..b0e453e27ea8 100644 > --- a/drivers/gpu/drm/i915/gt/intel_gt.h > +++ b/drivers/gpu/drm/i915/gt/intel_gt.h > @@ -171,6 +171,20 @@ void intel_gt_release_all(struct drm_i915_private *i915); > (id__)++) \ > for_each_if(((gt__) = (i915__)->gt[(id__)])) > > +/* Simple iterator over all initialised engines */ > +#define for_each_engine(engine__, gt__, id__) \ > + for ((id__) = 0; \ > + (id__) < I915_NUM_ENGINES; \ > + (id__)++) \ > + for_each_if ((engine__) = (gt__)->engine[(id__)]) > + > +/* Iterator over subset of engines selected by mask */ > +#define for_each_engine_masked(engine__, gt__, mask__, tmp__) \ > + for ((tmp__) = (mask__) & (gt__)->info.engine_mask; \ > + (tmp__) ? \ > + ((engine__) = (gt__)->engine[__mask_next_bit(tmp__)]), 1 : \ > + 0;) > + > void intel_gt_info_print(const struct intel_gt_info *info, > struct drm_printer *p); > > diff --git a/drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c > index 8f9b874fdc9c..3aa1d014c14d 100644 > --- a/drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c > +++ b/drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.c > @@ -6,8 +6,8 @@ > > #include <drm/drm_print.h> > > -#include "i915_drv.h" /* for_each_engine! */ > #include "intel_engine.h" > +#include "intel_gt.h" > #include "intel_gt_debugfs.h" > #include "intel_gt_engines_debugfs.h" > > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h > index bf6ed434bb6b..f3be9033a93f 100644 > --- a/drivers/gpu/drm/i915/i915_drv.h > +++ b/drivers/gpu/drm/i915/i915_drv.h > @@ -396,20 +396,6 @@ static inline struct intel_gt *to_gt(const struct drm_i915_private *i915) > return i915->gt[0]; > } > > -/* Simple iterator over all initialised engines */ > -#define for_each_engine(engine__, gt__, id__) \ > - for ((id__) = 0; \ > - (id__) < I915_NUM_ENGINES; \ > - (id__)++) \ > - for_each_if ((engine__) = (gt__)->engine[(id__)]) > - > -/* Iterator over subset of engines selected by mask */ > -#define for_each_engine_masked(engine__, gt__, mask__, tmp__) \ > - for ((tmp__) = (mask__) & (gt__)->info.engine_mask; \ > - (tmp__) ? \ > - ((engine__) = (gt__)->engine[__mask_next_bit(tmp__)]), 1 : \ > - 0;) > - > #define rb_to_uabi_engine(rb) \ > rb_entry_safe(rb, struct intel_engine_cs, uabi_node) > > diff --git a/drivers/gpu/drm/i915/selftests/intel_uncore.c b/drivers/gpu/drm/i915/selftests/intel_uncore.c > index 03ea75cd84dd..4f98aa8a861e 100644 > --- a/drivers/gpu/drm/i915/selftests/intel_uncore.c > +++ b/drivers/gpu/drm/i915/selftests/intel_uncore.c > @@ -24,6 +24,8 @@ > > #include "../i915_selftest.h" > > +#include "gt/intel_gt.h" > + > static int intel_fw_table_check(const struct intel_forcewake_range *ranges, > unsigned int num_ranges, > bool is_watertight) -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine 2023-11-02 9:32 [Intel-gfx] [PATCH 1/2] drm/i915: Remove unused for_each_uabi_class_engine Tvrtko Ursulin 2023-11-02 9:32 ` [Intel-gfx] [PATCH 2/2] drm/i915: Move for_each_engine* out of i915_drv.h Tvrtko Ursulin @ 2023-11-02 21:16 ` Patchwork 2023-11-02 21:16 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-11-02 21:16 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: intel-gfx == Series Details == Series: series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine URL : https://patchwork.freedesktop.org/series/125886/ State : warning == Summary == Error: dim checkpatch failed b3e28ced9c21 drm/i915: Remove unused for_each_uabi_class_engine -:6: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?) #6: Unused macro after 99919be74aa3 ("drm/i915/gem: Zap the i915_gem_object_blt code") -:6: ERROR:GIT_COMMIT_ID: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'commit 99919be74aa3 ("drm/i915/gem: Zap the i915_gem_object_blt code")' #6: Unused macro after 99919be74aa3 ("drm/i915/gem: Zap the i915_gem_object_blt code") total: 1 errors, 1 warnings, 0 checks, 11 lines checked d4b892a3d2b1 drm/i915: Move for_each_engine* out of i915_drv.h -:34: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #34: FILE: drivers/gpu/drm/i915/gt/intel_gt.h:175: +#define for_each_engine(engine__, gt__, id__) \ + for ((id__) = 0; \ + (id__) < I915_NUM_ENGINES; \ + (id__)++) \ + for_each_if ((engine__) = (gt__)->engine[(id__)]) -:34: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'id__' - possible side-effects? #34: FILE: drivers/gpu/drm/i915/gt/intel_gt.h:175: +#define for_each_engine(engine__, gt__, id__) \ + for ((id__) = 0; \ + (id__) < I915_NUM_ENGINES; \ + (id__)++) \ + for_each_if ((engine__) = (gt__)->engine[(id__)]) -:38: WARNING:SPACING: space prohibited between function name and open parenthesis '(' #38: FILE: drivers/gpu/drm/i915/gt/intel_gt.h:179: + for_each_if ((engine__) = (gt__)->engine[(id__)]) -:41: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'gt__' - possible side-effects? #41: FILE: drivers/gpu/drm/i915/gt/intel_gt.h:182: +#define for_each_engine_masked(engine__, gt__, mask__, tmp__) \ + for ((tmp__) = (mask__) & (gt__)->info.engine_mask; \ + (tmp__) ? \ + ((engine__) = (gt__)->engine[__mask_next_bit(tmp__)]), 1 : \ + 0;) -:41: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'tmp__' - possible side-effects? #41: FILE: drivers/gpu/drm/i915/gt/intel_gt.h:182: +#define for_each_engine_masked(engine__, gt__, mask__, tmp__) \ + for ((tmp__) = (mask__) & (gt__)->info.engine_mask; \ + (tmp__) ? \ + ((engine__) = (gt__)->engine[__mask_next_bit(tmp__)]), 1 : \ + 0;) total: 1 errors, 1 warnings, 3 checks, 64 lines checked ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine 2023-11-02 9:32 [Intel-gfx] [PATCH 1/2] drm/i915: Remove unused for_each_uabi_class_engine Tvrtko Ursulin 2023-11-02 9:32 ` [Intel-gfx] [PATCH 2/2] drm/i915: Move for_each_engine* out of i915_drv.h Tvrtko Ursulin 2023-11-02 21:16 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine Patchwork @ 2023-11-02 21:16 ` Patchwork 2023-11-02 21:30 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-11-03 17:24 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-11-02 21:16 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: intel-gfx == Series Details == Series: series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine URL : https://patchwork.freedesktop.org/series/125886/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine 2023-11-02 9:32 [Intel-gfx] [PATCH 1/2] drm/i915: Remove unused for_each_uabi_class_engine Tvrtko Ursulin ` (2 preceding siblings ...) 2023-11-02 21:16 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork @ 2023-11-02 21:30 ` Patchwork 2023-11-03 17:24 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-11-02 21:30 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 11985 bytes --] == Series Details == Series: series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine URL : https://patchwork.freedesktop.org/series/125886/ State : success == Summary == CI Bug Log - changes from CI_DRM_13831 -> Patchwork_125886v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/index.html Participating hosts (36 -> 37) ------------------------------ Additional (3): fi-hsw-4770 bat-mtlp-8 bat-dg1-5 Missing (2): bat-dg2-9 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_125886v1 that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - fi-bsw-n3050: [FAIL][1] ([i915#8293]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/fi-bsw-n3050/boot.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/fi-bsw-n3050/boot.html ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#9318]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][4] ([fdo#109271]) +18 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-dg1-5: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@gem_mmap@basic.html - bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4083]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4077]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-5: NOTRUN -> [SKIP][10] ([i915#4077]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-5: NOTRUN -> [SKIP][11] ([i915#4079]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg1-5: NOTRUN -> [SKIP][12] ([i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@i915_pm_rps@basic-api.html - bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#6621]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#6645]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#5190]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#5190]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][17] ([i915#4212]) +7 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#4212]) +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg1-5: NOTRUN -> [SKIP][19] ([i915#4215]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#4213]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-5: NOTRUN -> [SKIP][21] ([i915#4103] / [i915#4213]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#3840] / [i915#9159]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@kms_dsc@dsc-basic.html - bat-dg1-5: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#3840]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-mtlp-8: NOTRUN -> [SKIP][24] ([fdo#109285]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-5: NOTRUN -> [SKIP][25] ([fdo#109285]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][26] ([i915#5274]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-5: NOTRUN -> [SKIP][27] ([i915#433]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@kms_hdmi_inject@inject-audio.html - fi-bsw-n3050: NOTRUN -> [FAIL][28] ([IGT#3]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/fi-bsw-n3050/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1: - fi-hsw-4770: NOTRUN -> [SKIP][29] ([fdo#109271]) +8 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][30] -> [ABORT][31] ([i915#8668]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_psr@sprite_plane_onoff: - bat-dg1-5: NOTRUN -> [SKIP][32] ([i915#1072] / [i915#4078]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@kms_psr@sprite_plane_onoff.html - fi-hsw-4770: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#1072]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-5: NOTRUN -> [SKIP][34] ([i915#3555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-8: NOTRUN -> [SKIP][35] ([i915#3555] / [i915#8809]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-8: NOTRUN -> [SKIP][36] ([i915#3708] / [i915#4077]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][37] ([i915#3708]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html - bat-dg1-5: NOTRUN -> [SKIP][38] ([i915#3708]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg1-5: NOTRUN -> [SKIP][39] ([i915#3708] / [i915#4077]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/bat-dg1-5/igt@prime_vgem@basic-gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 Build changes ------------- * Linux: CI_DRM_13831 -> Patchwork_125886v1 CI-20190529: 20190529 CI_DRM_13831: 76cfd6fff7dfdf40e85e23c7deb727e633209b1f @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7570: 1cd44e96b0419e00b9a09f8ead1369eab432d4f9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_125886v1: 76cfd6fff7dfdf40e85e23c7deb727e633209b1f @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits cbcf81063755 drm/i915: Move for_each_engine* out of i915_drv.h 6b76f892345b drm/i915: Remove unused for_each_uabi_class_engine == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/index.html [-- Attachment #2: Type: text/html, Size: 14819 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine 2023-11-02 9:32 [Intel-gfx] [PATCH 1/2] drm/i915: Remove unused for_each_uabi_class_engine Tvrtko Ursulin ` (3 preceding siblings ...) 2023-11-02 21:30 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-11-03 17:24 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-11-03 17:24 UTC (permalink / raw) To: Tvrtko Ursulin; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 100304 bytes --] == Series Details == Series: series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine URL : https://patchwork.freedesktop.org/series/125886/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13831_full -> Patchwork_125886v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_125886v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_125886v1_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-mtlp0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_125886v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_lmem_swapping@heavy-multi: - shard-dg2: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_lmem_swapping@heavy-multi.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_pm_rpm@cursor-dpms}: - shard-dg2: [PASS][3] -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_pm_rpm@cursor-dpms.html * {igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4}: - shard-dg2: NOTRUN -> [INCOMPLETE][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html Known issues ------------ Here are the changes found in Patchwork_125886v1_full that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - shard-apl: ([PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [FAIL][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29]) ([i915#8293]) -> ([PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl1/boot.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl1/boot.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl1/boot.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl7/boot.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl7/boot.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl7/boot.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl7/boot.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl7/boot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl6/boot.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl6/boot.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl4/boot.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl4/boot.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl4/boot.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl3/boot.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl3/boot.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl3/boot.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl3/boot.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl2/boot.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl2/boot.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl2/boot.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl2/boot.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl2/boot.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl1/boot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl1/boot.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl1/boot.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl1/boot.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl1/boot.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl1/boot.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl2/boot.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl2/boot.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl2/boot.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl2/boot.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl3/boot.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl3/boot.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl3/boot.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl3/boot.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl1/boot.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl4/boot.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl6/boot.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl6/boot.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl6/boot.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl6/boot.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/boot.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/boot.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/boot.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/boot.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/boot.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/boot.html ### IGT changes ### #### Issues hit #### * igt@api_intel_allocator@gem-pool: - shard-dg2: NOTRUN -> [SKIP][54] ([fdo#109315]) +13 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@api_intel_allocator@gem-pool.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [PASS][55] -> [SKIP][56] ([i915#8411]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][57] ([i915#6122]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#8414]) +20 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][59] ([i915#7742]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#8414]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@drm_fdinfo@virtual-busy.html * igt@fbdev@eof: - shard-rkl: [PASS][61] -> [SKIP][62] ([i915#2582]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@fbdev@eof.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@fbdev@eof.html * igt@fbdev@info: - shard-dg2: [PASS][63] -> [SKIP][64] ([i915#1849] / [i915#2582]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@fbdev@info.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@fbdev@info.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: [PASS][65] -> [SKIP][66] ([i915#3281]) +12 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][67] -> [INCOMPLETE][68] ([i915#7297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][69] -> [FAIL][70] ([i915#6268]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@vcs1: - shard-dg2: NOTRUN -> [FAIL][71] ([fdo#103375]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3@vcs1.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#8555]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - shard-rkl: [PASS][73] -> [SKIP][74] ([i915#6252]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-7/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_eio@hibernate: - shard-tglu: [PASS][75] -> [ABORT][76] ([i915#7975] / [i915#8213] / [i915#8398]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-tglu-5/igt@gem_eio@hibernate.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-10/igt@gem_eio@hibernate.html - shard-rkl: NOTRUN -> [ABORT][77] ([i915#7975] / [i915#8213]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg2: [PASS][78] -> [FAIL][79] ([i915#5784]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-5/igt@gem_eio@kms.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4771]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@fairslice: - shard-rkl: [PASS][81] -> [SKIP][82] ([Intel XE#874]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-7/igt@gem_exec_balancer@fairslice.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_exec_balancer@fairslice.html * igt@gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4812]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@gem_exec_balancer@hog.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3539] / [i915#4852]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: NOTRUN -> [FAIL][85] ([i915#2842]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [PASS][86] -> [FAIL][87] ([i915#2842]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3539]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [PASS][89] -> [FAIL][90] ([i915#2842]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][91] -> [FAIL][92] ([i915#2842]) +2 other tests fail [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-2/igt@gem_exec_fair@basic-pace@bcs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fence@submit67: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4812]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_exec_fence@submit67.html * igt@gem_exec_fence@syncobj-timeline-invalid-wait: - shard-dg2: [PASS][94] -> [SKIP][95] ([i915#2575]) +16 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_exec_fence@syncobj-timeline-invalid-wait.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_exec_fence@syncobj-timeline-invalid-wait.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3539] / [i915#4852]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][97] ([fdo#109283] / [i915#2575]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3281]) +12 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-range: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#3281]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@gem_exec_reloc@basic-range.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#3281]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3281]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [PASS][102] -> [INCOMPLETE][103] ([i915#9275]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-6/igt@gem_exec_suspend@basic-s0@lmem0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4860]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4860]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-apl: NOTRUN -> [SKIP][106] ([fdo#109271] / [i915#4613]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-random: - shard-glk: NOTRUN -> [SKIP][107] ([fdo#109271] / [i915#4613]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk8/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#4565]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4077]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4077]) +7 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4083]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3282]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [PASS][113] -> [SKIP][114] ([i915#3282]) +4 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#3282]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#3282]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4270]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4270]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#768]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#8428]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4079]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#3297]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3297]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3297]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen7_exec_parse@basic-offset: - shard-glk: NOTRUN -> [SKIP][125] ([fdo#109271]) +88 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk8/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#109289]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-single: - shard-apl: NOTRUN -> [INCOMPLETE][127] ([i915#5566]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-out: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#2527]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#2856]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [PASS][130] -> [SKIP][131] ([i915#2527]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#6227]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][133] -> [ABORT][134] ([i915#8489] / [i915#8668]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#8399]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-rkl: [PASS][136] -> [WARN][137] ([i915#2681]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html - shard-dg1: [PASS][138] -> [FAIL][139] ([i915#3591]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@gem-pread: - shard-dg2: [PASS][140] -> [SKIP][141] ([i915#9471]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@i915_pm_rpm@gem-pread.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@i915_pm_rpm@gem-pread.html * igt@i915_pm_rpm@system-suspend-devices: - shard-mtlp: NOTRUN -> [ABORT][142] ([i915#9414]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][143] -> [INCOMPLETE][144] ([i915#7790]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-snb4/igt@i915_pm_rps@reset.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#8925]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#4212]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@crc: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#1845] / [i915#4098]) +11 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_async_flips@crc.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][148] ([fdo#109271] / [i915#1769]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][149] ([fdo#111614]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg2: [PASS][150] -> [SKIP][151] ([fdo#109315]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html - shard-rkl: NOTRUN -> [SKIP][152] ([i915#5286]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#4538] / [i915#5286]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][154] -> [FAIL][155] ([i915#5138]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111614] / [i915#3638]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-rkl: [PASS][157] -> [INCOMPLETE][158] ([i915#9538]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#111614]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#5190]) +15 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][161] -> [FAIL][162] ([i915#3743]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][163] ([fdo#111615]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#4538] / [i915#5190]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109315] / [i915#5190]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][166] ([fdo#111615]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#4538]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][168] ([fdo#110723]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4087] / [i915#7213]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#4087]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-negative: - shard-dg1: NOTRUN -> [SKIP][171] ([fdo#111827]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#7828]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#7828]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7828]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#7828]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@ctm-0-50@pipe-b: - shard-rkl: [PASS][176] -> [SKIP][177] ([i915#4098]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-1/igt@kms_color@ctm-0-50@pipe-b.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_color@ctm-0-50@pipe-b.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][178] ([i915#7173]) +3 other tests timeout [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3299]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#7118]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][181] ([i915#1339]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3359]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-128x128: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#4098]) +24 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-128x128.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3359]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8814]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3546]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#4103]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-rkl: [PASS][189] -> [SKIP][190] ([i915#1845] / [i915#4098]) +34 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274] / [fdo#111767] / [i915#5354]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][192] ([fdo#109274] / [i915#5354]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg1: NOTRUN -> [SKIP][193] ([fdo#111767] / [fdo#111825]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#4103] / [i915#4213]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#9226] / [i915#9261]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9227]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9227]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-14/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9226] / [i915#9261]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-14/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#8588]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3469]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111825]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-apl: NOTRUN -> [SKIP][203] ([fdo#109271] / [fdo#111767]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg2: NOTRUN -> [SKIP][204] ([fdo#109274] / [fdo#111767]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-snb: NOTRUN -> [SKIP][205] ([fdo#109271] / [fdo#111767]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-snb: NOTRUN -> [SKIP][206] ([fdo#109271]) +6 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-snb4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg2: NOTRUN -> [SKIP][207] ([fdo#109274]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3637] / [i915#4098]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#2672]) +5 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][212] -> [SKIP][213] ([i915#1849] / [i915#4098]) +17 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#8708]) +24 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][215] ([fdo#111825]) +6 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3458]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#5354]) +26 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109280]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3023]) +5 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][220] ([fdo#110189]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][221] ([fdo#111825] / [i915#1825]) +6 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#8708]) +7 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3458]) +19 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#433]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@bad-htotal: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#4098]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_invalid_mode@bad-htotal.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-dg1: NOTRUN -> [SKIP][228] ([fdo#109289]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: NOTRUN -> [ABORT][229] ([i915#180]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane@pixel-format-source-clamping: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#4098] / [i915#8825]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane@plane-position-hole: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#8825]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_plane@plane-position-hole.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#3555]) +11 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#8152]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#4098] / [i915#8152]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#4098] / [i915#6953] / [i915#8152]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#5235]) +27 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#5235]) +5 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#5235]) +15 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#6524] / [i915#6805]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][240] ([fdo#109271] / [i915#658]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][241] ([fdo#111068] / [i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][242] ([fdo#109271] / [i915#658]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#658]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@cursor_blt: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#1072]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#1072]) +8 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#4235] / [i915#5190]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4235]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#4098]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][249] ([IGT#2]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8808]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#3555]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][252] ([fdo#109271] / [i915#2437]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@blocking-parameterized: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5608]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@perf@blocking-parameterized.html * igt@perf@gen12-oa-tlb-invalidate: - shard-rkl: NOTRUN -> [SKIP][254] ([fdo#109289]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@perf@gen12-oa-tlb-invalidate.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#7387]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-7/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#2434]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][257] ([i915#7484]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [PASS][258] -> [FAIL][259] ([i915#4349]) +3 other tests fail [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs1.html * igt@prime_udl: - shard-dg1: NOTRUN -> [SKIP][260] ([fdo#109291]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@prime_udl.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#3291] / [i915#3708]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@prime_vgem@basic-fence-read.html - shard-rkl: [PASS][262] -> [SKIP][263] ([fdo#109295] / [i915#3291] / [i915#3708]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@prime_vgem@basic-fence-read.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@prime_vgem@basic-fence-read.html * igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled: - shard-dg2: NOTRUN -> [FAIL][264] ([i915#9583]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted-signaled.html * igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted-signaled: - shard-mtlp: NOTRUN -> [FAIL][265] ([i915#9583]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted-signaled.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#4818]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_param@base-params: - shard-rkl: NOTRUN -> [SKIP][267] ([fdo#109315]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_mmap@mmap-bad-flags: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#2575]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@v3d/v3d_mmap@mmap-bad-flags.html * igt@v3d/v3d_submit_cl@bad-multisync-extension: - shard-apl: NOTRUN -> [SKIP][269] ([fdo#109271]) +93 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/igt@v3d/v3d_submit_cl@bad-multisync-extension.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#2575]) +56 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#7711]) +8 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#7711]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#7711]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][274] ([i915#7742]) -> [PASS][275] +1 other test pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html * {igt@gem_compute@compute-square}: - shard-rkl: [SKIP][276] ([i915#9310]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@gem_compute@compute-square.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@gem_compute@compute-square.html * igt@gem_exec_await@wide-contexts: - shard-glk: [INCOMPLETE][278] -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-glk6/igt@gem_exec_await@wide-contexts.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk2/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: [TIMEOUT][280] ([i915#3778] / [i915#7016]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_exec_endless@dispatch@bcs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-5/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][282] ([i915#2846]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-glk3/igt@gem_exec_fair@basic-deadline.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: [SKIP][284] ([fdo#109313]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][286] ([i915#3281]) -> [PASS][287] +15 other tests pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][288] ([i915#7276]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-tglu: [INCOMPLETE][290] ([i915#6755] / [i915#7392]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-tglu-10/igt@gem_exec_whisper@basic-fds-forked-all.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-2/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][292] ([i915#5493]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_partial_pwrite_pread@write-display: - shard-rkl: [SKIP][294] ([i915#3282]) -> [PASS][295] +3 other tests pass [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@gem_partial_pwrite_pread@write-display.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][296] ([i915#8411]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][298] ([i915#2527]) -> [PASS][299] +5 other tests pass [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_hangman@engine-engine-error@bcs0: - shard-rkl: [SKIP][300] ([i915#9588]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@i915_hangman@engine-engine-error@bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [FAIL][302] ([i915#3591]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_power@sanity: - shard-rkl: [SKIP][304] ([i915#7984]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@i915_power@sanity.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@i915_power@sanity.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu: [FAIL][306] ([i915#3743]) -> [PASS][307] +1 other test pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_busy@extended-modeset-hang-newfb@pipe-b: - shard-rkl: [INCOMPLETE][308] -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-2/igt@kms_busy@extended-modeset-hang-newfb@pipe-b.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_busy@extended-modeset-hang-newfb@pipe-b.html * igt@kms_color@ctm-green-to-red@pipe-b: - shard-rkl: [SKIP][310] ([i915#4098]) -> [PASS][311] +12 other tests pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_color@ctm-green-to-red@pipe-b.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_color@ctm-green-to-red@pipe-b.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][312] ([i915#2346]) -> [PASS][313] +1 other test pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [DMESG-WARN][314] ([i915#2017]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-6/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_fbcon_fbt@fbc: - shard-rkl: [SKIP][316] ([i915#1849] / [i915#4098]) -> [PASS][317] +9 other tests pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_fbcon_fbt@fbc.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4: - shard-dg1: [FAIL][318] ([fdo#103375]) -> [PASS][319] +3 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html * {igt@kms_pm_rpm@i2c}: - shard-rkl: [SKIP][320] ([fdo#109308]) -> [PASS][321] +1 other test pass [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_pm_rpm@i2c.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_pm_rpm@i2c.html * {igt@kms_pm_rpm@modeset-lpsp-stress}: - shard-dg1: [SKIP][322] ([i915#9519]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_properties@plane-properties-atomic: - shard-rkl: [SKIP][324] ([i915#1849]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_properties@plane-properties-atomic.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@kms_properties@plane-properties-atomic.html * igt@kms_rotation_crc@primary-rotation-90: - shard-rkl: [SKIP][326] ([i915#1845] / [i915#4098]) -> [PASS][327] +23 other tests pass [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_rotation_crc@primary-rotation-90.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [FAIL][328] ([i915#9196]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][330] ([i915#9196]) -> [PASS][331] +1 other test pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][332] ([i915#8724]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-1/igt@perf@enable-disable@0-rcs0.html * igt@perf@gen12-group-exclusive-stream-ctx-handle: - shard-rkl: [SKIP][334] ([fdo#109289]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@perf@gen12-group-exclusive-stream-ctx-handle.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@perf@gen12-group-exclusive-stream-ctx-handle.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][336] ([i915#2434]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@perf@mi-rpc.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][338] ([i915#4349]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-4/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][340] ([i915#7957]) -> [SKIP][341] ([i915#3555]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][342] ([i915#3555]) -> [SKIP][343] ([i915#7957]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_eio@hibernate: - shard-dg2: [ABORT][344] ([i915#7975] / [i915#8213]) -> [SKIP][345] ([i915#2575]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_eio@hibernate.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_eio@hibernate.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: [SKIP][346] ([i915#3281]) -> [SKIP][347] ([i915#2575]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg2: [SKIP][348] ([i915#4860]) -> [SKIP][349] ([i915#2575]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-none.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: [SKIP][350] ([i915#3282]) -> [SKIP][351] ([i915#2575]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_partial_pwrite_pread@reads.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_partial_pwrite_pread@reads.html * igt@gem_render_copy@yf-tiled-ccs-to-linear: - shard-dg2: [SKIP][352] ([i915#5190]) -> [SKIP][353] ([i915#2575] / [i915#5190]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_render_copy@yf-tiled-ccs-to-linear.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-linear.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg2: [SKIP][354] ([i915#4077]) -> [SKIP][355] ([i915#2575]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [INCOMPLETE][356] ([i915#5566]) -> [ABORT][357] ([i915#5566]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-apl1/igt@gen9_exec_parse@allowed-all.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-apl7/igt@gen9_exec_parse@allowed-all.html * igt@kms_async_flips@crc@pipe-a-edp-1: - shard-mtlp: [FAIL][358] ([i915#8247]) -> [DMESG-FAIL][359] ([i915#8561]) +1 other test dmesg-fail [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-mtlp-7/igt@kms_async_flips@crc@pipe-a-edp-1.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@kms_async_flips@crc@pipe-a-edp-1.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: [DMESG-FAIL][360] ([i915#8561]) -> [FAIL][361] ([i915#8247]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-mtlp-7/igt@kms_async_flips@crc@pipe-d-edp-1.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][362] ([i915#4098]) -> [SKIP][363] ([i915#5286]) +6 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][364] ([i915#5286]) -> [SKIP][365] ([i915#4098]) +7 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: [SKIP][366] ([fdo#111614] / [i915#3638]) -> [SKIP][367] ([i915#1845] / [i915#4098]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-270.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: [SKIP][368] ([fdo#111614]) -> [SKIP][369] ([fdo#109315]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][370] ([i915#1845] / [i915#4098]) -> [SKIP][371] ([fdo#111614] / [i915#3638]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: [SKIP][372] ([i915#1845] / [i915#4098]) -> [SKIP][373] ([fdo#111615]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][374] ([i915#1845] / [i915#4098]) -> [SKIP][375] ([fdo#110723]) +4 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [SKIP][376] ([fdo#110723]) -> [SKIP][377] ([i915#1845] / [i915#4098]) +6 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: [SKIP][378] ([i915#4538] / [i915#5190]) -> [SKIP][379] ([fdo#109315] / [i915#5190]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2: [SKIP][380] ([i915#7828]) -> [SKIP][381] ([i915#2575]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][382] ([i915#9608]) -> [SKIP][383] ([i915#3555]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_color@deep-color.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-rkl: [SKIP][384] ([i915#1845] / [i915#4098]) -> [SKIP][385] ([i915#7118]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_content_protection@atomic.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][386] ([i915#3116]) -> [SKIP][387] ([i915#1845] / [i915#4098]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][388] ([i915#7118]) -> [SKIP][389] ([i915#1845] / [i915#4098]) +2 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_content_protection@srm.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][390] ([i915#7118] / [i915#7162]) -> [SKIP][391] ([i915#7118]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-11/igt@kms_content_protection@type1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: [SKIP][392] ([fdo#109279] / [i915#3359]) -> [SKIP][393] ([i915#4098]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][394] ([i915#4098]) -> [SKIP][395] ([i915#3359]) +2 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][396] ([i915#4098]) -> [SKIP][397] ([i915#3555]) +4 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][398] ([i915#3555]) -> [SKIP][399] ([i915#4098]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: [SKIP][400] ([i915#4103] / [i915#4213] / [i915#5608]) -> [SKIP][401] ([i915#2575] / [i915#5608]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][402] ([i915#4103]) -> [SKIP][403] ([i915#1845] / [i915#4098]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: [SKIP][404] ([i915#1845] / [i915#4098]) -> [SKIP][405] ([fdo#111825]) +2 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-rkl: [SKIP][406] ([fdo#111767] / [fdo#111825]) -> [SKIP][407] ([i915#1845] / [i915#4098]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-rkl: [SKIP][408] ([fdo#111825]) -> [SKIP][409] ([i915#1845] / [i915#4098]) +3 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: [SKIP][410] ([i915#4103] / [i915#4213]) -> [SKIP][411] ([i915#2575]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][412] ([i915#1845] / [i915#4098]) -> [SKIP][413] ([i915#4103]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: [SKIP][414] ([i915#8588]) -> [SKIP][415] ([i915#4098]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][416] ([i915#3555] / [i915#3840]) -> [SKIP][417] ([i915#4098]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_dsc@dsc-basic.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][418] ([i915#4098]) -> [SKIP][419] ([i915#3555] / [i915#3840]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][420] ([i915#3955]) -> [SKIP][421] ([fdo#110189] / [i915#3955]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_fbcon_fbt@psr.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][422] ([fdo#110189] / [i915#3955]) -> [SKIP][423] ([i915#3955]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2: [SKIP][424] ([i915#8708]) -> [SKIP][425] ([fdo#109315]) +2 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][426] ([fdo#111825] / [i915#1825]) -> [SKIP][427] ([i915#1849] / [i915#4098]) +40 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][428] ([i915#1849] / [i915#4098]) -> [SKIP][429] ([fdo#111825]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: [SKIP][430] ([i915#1849] / [i915#4098]) -> [SKIP][431] ([i915#5439]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][432] ([fdo#111825]) -> [SKIP][433] ([i915#1849] / [i915#4098]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][434] ([i915#1849] / [i915#4098]) -> [SKIP][435] ([fdo#111825] / [i915#1825]) +35 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][436] ([i915#3458]) -> [SKIP][437] ([fdo#109315]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][438] ([i915#1849] / [i915#4098]) -> [SKIP][439] ([i915#3023]) +22 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][440] ([i915#3023]) -> [SKIP][441] ([i915#1849] / [i915#4098]) +26 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2: [SKIP][442] ([i915#5354]) -> [SKIP][443] ([fdo#109315]) +4 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][444] ([i915#4098]) -> [SKIP][445] ([i915#3555] / [i915#8228]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_hdr@invalid-hdr.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: [SKIP][446] ([i915#3555] / [i915#8228]) -> [SKIP][447] ([i915#1845] / [i915#4098]) +1 other test skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][448] ([i915#4816]) -> [SKIP][449] ([i915#1839] / [i915#4070] / [i915#4816]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][450] ([i915#1845] / [i915#4098]) -> [SKIP][451] ([i915#6301]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_panel_fitting@legacy.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-1/igt@kms_panel_fitting@legacy.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-dg2: [SKIP][452] ([i915#1072]) -> [SKIP][453] ([fdo#109315]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@kms_psr@psr2_cursor_mmap_cpu.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][454] ([i915#5289]) -> [SKIP][455] ([i915#4098]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][456] ([fdo#111615] / [i915#5289]) -> [SKIP][457] ([i915#1845] / [i915#4098]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][458] ([i915#1845] / [i915#4098]) -> [SKIP][459] ([fdo#111615] / [i915#5289]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_vrr@flip-basic: - shard-rkl: [SKIP][460] ([i915#3555]) -> [SKIP][461] ([i915#1845] / [i915#4098]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-rkl-4/igt@kms_vrr@flip-basic.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-rkl-5/igt@kms_vrr@flip-basic.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][462] ([i915#5493]) -> [CRASH][463] ([i915#9351]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: [SKIP][464] ([i915#3708]) -> [SKIP][465] ([i915#2575]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13831/shard-dg2-2/igt@prime_vgem@basic-fence-flip.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [Intel XE#874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/874 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125886v1/index.html [-- Attachment #2: Type: text/html, Size: 116768 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-11-03 17:24 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-02 9:32 [Intel-gfx] [PATCH 1/2] drm/i915: Remove unused for_each_uabi_class_engine Tvrtko Ursulin 2023-11-02 9:32 ` [Intel-gfx] [PATCH 2/2] drm/i915: Move for_each_engine* out of i915_drv.h Tvrtko Ursulin 2023-11-02 11:43 ` Jani Nikula 2023-11-02 21:16 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] drm/i915: Remove unused for_each_uabi_class_engine Patchwork 2023-11-02 21:16 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork 2023-11-02 21:30 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-11-03 17:24 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox