* [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c
@ 2022-02-14 17:38 Jani Nikula
2022-02-14 17:38 ` [Intel-gfx] [PATCH 2/2] drm/i915/lrc: replace include with forward declarations Jani Nikula
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jani Nikula @ 2022-02-14 17:38 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
Move the static inline next to the only caller.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/gt/intel_context_sseu.c | 1 +
drivers/gpu/drm/i915/gt/intel_lrc.c | 11 +++++++++++
drivers/gpu/drm/i915/gt/intel_lrc.h | 11 -----------
drivers/gpu/drm/i915/i915_perf.c | 1 +
4 files changed, 13 insertions(+), 11 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_context_sseu.c b/drivers/gpu/drm/i915/gt/intel_context_sseu.c
index e86d8255feec..ece16c2b5b8e 100644
--- a/drivers/gpu/drm/i915/gt/intel_context_sseu.c
+++ b/drivers/gpu/drm/i915/gt/intel_context_sseu.c
@@ -9,6 +9,7 @@
#include "intel_engine_pm.h"
#include "intel_gpu_commands.h"
#include "intel_lrc.h"
+#include "intel_lrc_reg.h"
#include "intel_ring.h"
#include "intel_sseu.h"
diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c
index 8189bc8a16ec..5b107b698b65 100644
--- a/drivers/gpu/drm/i915/gt/intel_lrc.c
+++ b/drivers/gpu/drm/i915/gt/intel_lrc.c
@@ -1720,6 +1720,17 @@ static void st_update_runtime_underflow(struct intel_context *ce, s32 dt)
#endif
}
+static u32 lrc_get_runtime(const struct intel_context *ce)
+{
+ /*
+ * We can use either ppHWSP[16] which is recorded before the context
+ * switch (and so excludes the cost of context switches) or use the
+ * value from the context image itself, which is saved/restored earlier
+ * and so includes the cost of the save.
+ */
+ return READ_ONCE(ce->lrc_reg_state[CTX_TIMESTAMP]);
+}
+
void lrc_update_runtime(struct intel_context *ce)
{
u32 old;
diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.h b/drivers/gpu/drm/i915/gt/intel_lrc.h
index 7f697845c4cf..2af85a15a370 100644
--- a/drivers/gpu/drm/i915/gt/intel_lrc.h
+++ b/drivers/gpu/drm/i915/gt/intel_lrc.h
@@ -9,7 +9,6 @@
#include <linux/types.h>
#include "intel_context.h"
-#include "intel_lrc_reg.h"
struct drm_i915_gem_object;
struct intel_engine_cs;
@@ -68,15 +67,5 @@ void lrc_check_regs(const struct intel_context *ce,
const char *when);
void lrc_update_runtime(struct intel_context *ce);
-static inline u32 lrc_get_runtime(const struct intel_context *ce)
-{
- /*
- * We can use either ppHWSP[16] which is recorded before the context
- * switch (and so excludes the cost of context switches) or use the
- * value from the context image itself, which is saved/restored earlier
- * and so includes the cost of the save.
- */
- return READ_ONCE(ce->lrc_reg_state[CTX_TIMESTAMP]);
-}
#endif /* __INTEL_LRC_H__ */
diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c
index 36f1325baa7d..00fb40029f43 100644
--- a/drivers/gpu/drm/i915/i915_perf.c
+++ b/drivers/gpu/drm/i915/i915_perf.c
@@ -206,6 +206,7 @@
#include "gt/intel_gt_clock_utils.h"
#include "gt/intel_gt_regs.h"
#include "gt/intel_lrc.h"
+#include "gt/intel_lrc_reg.h"
#include "gt/intel_ring.h"
#include "i915_drv.h"
--
2.30.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* [Intel-gfx] [PATCH 2/2] drm/i915/lrc: replace include with forward declarations 2022-02-14 17:38 [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Jani Nikula @ 2022-02-14 17:38 ` Jani Nikula 2022-02-15 15:55 ` Tvrtko Ursulin 2022-02-15 15:54 ` [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Tvrtko Ursulin ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Jani Nikula @ 2022-02-14 17:38 UTC (permalink / raw) To: intel-gfx; +Cc: jani.nikula Prefer forward declarations over includes if possible. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/gt/intel_lrc.c | 2 ++ drivers/gpu/drm/i915/gt/intel_lrc.h | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c index 5b107b698b65..004e1216e654 100644 --- a/drivers/gpu/drm/i915/gt/intel_lrc.c +++ b/drivers/gpu/drm/i915/gt/intel_lrc.c @@ -8,6 +8,8 @@ #include "gen8_engine_cs.h" #include "i915_drv.h" #include "i915_perf.h" +#include "i915_reg.h" +#include "intel_context.h" #include "intel_engine.h" #include "intel_engine_regs.h" #include "intel_gpu_commands.h" diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.h b/drivers/gpu/drm/i915/gt/intel_lrc.h index 2af85a15a370..0b76f096b559 100644 --- a/drivers/gpu/drm/i915/gt/intel_lrc.h +++ b/drivers/gpu/drm/i915/gt/intel_lrc.h @@ -8,11 +8,12 @@ #include <linux/types.h> -#include "intel_context.h" - struct drm_i915_gem_object; +struct i915_gem_ww_ctx; +struct intel_context; struct intel_engine_cs; struct intel_ring; +struct kref; /* At the start of the context image is its per-process HWS page */ #define LRC_PPHWSP_PN (0) -- 2.30.2 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH 2/2] drm/i915/lrc: replace include with forward declarations 2022-02-14 17:38 ` [Intel-gfx] [PATCH 2/2] drm/i915/lrc: replace include with forward declarations Jani Nikula @ 2022-02-15 15:55 ` Tvrtko Ursulin 0 siblings, 0 replies; 7+ messages in thread From: Tvrtko Ursulin @ 2022-02-15 15:55 UTC (permalink / raw) To: Jani Nikula, intel-gfx On 14/02/2022 17:38, Jani Nikula wrote: > Prefer forward declarations over includes if possible. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Regards, Tvrtko > --- > drivers/gpu/drm/i915/gt/intel_lrc.c | 2 ++ > drivers/gpu/drm/i915/gt/intel_lrc.h | 5 +++-- > 2 files changed, 5 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c > index 5b107b698b65..004e1216e654 100644 > --- a/drivers/gpu/drm/i915/gt/intel_lrc.c > +++ b/drivers/gpu/drm/i915/gt/intel_lrc.c > @@ -8,6 +8,8 @@ > #include "gen8_engine_cs.h" > #include "i915_drv.h" > #include "i915_perf.h" > +#include "i915_reg.h" > +#include "intel_context.h" > #include "intel_engine.h" > #include "intel_engine_regs.h" > #include "intel_gpu_commands.h" > diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.h b/drivers/gpu/drm/i915/gt/intel_lrc.h > index 2af85a15a370..0b76f096b559 100644 > --- a/drivers/gpu/drm/i915/gt/intel_lrc.h > +++ b/drivers/gpu/drm/i915/gt/intel_lrc.h > @@ -8,11 +8,12 @@ > > #include <linux/types.h> > > -#include "intel_context.h" > - > struct drm_i915_gem_object; > +struct i915_gem_ww_ctx; > +struct intel_context; > struct intel_engine_cs; > struct intel_ring; > +struct kref; > > /* At the start of the context image is its per-process HWS page */ > #define LRC_PPHWSP_PN (0) ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c 2022-02-14 17:38 [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Jani Nikula 2022-02-14 17:38 ` [Intel-gfx] [PATCH 2/2] drm/i915/lrc: replace include with forward declarations Jani Nikula @ 2022-02-15 15:54 ` Tvrtko Ursulin 2022-02-16 2:38 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Tvrtko Ursulin @ 2022-02-15 15:54 UTC (permalink / raw) To: Jani Nikula, intel-gfx On 14/02/2022 17:38, Jani Nikula wrote: > Move the static inline next to the only caller. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Regards, Tvrtko > --- > drivers/gpu/drm/i915/gt/intel_context_sseu.c | 1 + > drivers/gpu/drm/i915/gt/intel_lrc.c | 11 +++++++++++ > drivers/gpu/drm/i915/gt/intel_lrc.h | 11 ----------- > drivers/gpu/drm/i915/i915_perf.c | 1 + > 4 files changed, 13 insertions(+), 11 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/intel_context_sseu.c b/drivers/gpu/drm/i915/gt/intel_context_sseu.c > index e86d8255feec..ece16c2b5b8e 100644 > --- a/drivers/gpu/drm/i915/gt/intel_context_sseu.c > +++ b/drivers/gpu/drm/i915/gt/intel_context_sseu.c > @@ -9,6 +9,7 @@ > #include "intel_engine_pm.h" > #include "intel_gpu_commands.h" > #include "intel_lrc.h" > +#include "intel_lrc_reg.h" > #include "intel_ring.h" > #include "intel_sseu.h" > > diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.c b/drivers/gpu/drm/i915/gt/intel_lrc.c > index 8189bc8a16ec..5b107b698b65 100644 > --- a/drivers/gpu/drm/i915/gt/intel_lrc.c > +++ b/drivers/gpu/drm/i915/gt/intel_lrc.c > @@ -1720,6 +1720,17 @@ static void st_update_runtime_underflow(struct intel_context *ce, s32 dt) > #endif > } > > +static u32 lrc_get_runtime(const struct intel_context *ce) > +{ > + /* > + * We can use either ppHWSP[16] which is recorded before the context > + * switch (and so excludes the cost of context switches) or use the > + * value from the context image itself, which is saved/restored earlier > + * and so includes the cost of the save. > + */ > + return READ_ONCE(ce->lrc_reg_state[CTX_TIMESTAMP]); > +} > + > void lrc_update_runtime(struct intel_context *ce) > { > u32 old; > diff --git a/drivers/gpu/drm/i915/gt/intel_lrc.h b/drivers/gpu/drm/i915/gt/intel_lrc.h > index 7f697845c4cf..2af85a15a370 100644 > --- a/drivers/gpu/drm/i915/gt/intel_lrc.h > +++ b/drivers/gpu/drm/i915/gt/intel_lrc.h > @@ -9,7 +9,6 @@ > #include <linux/types.h> > > #include "intel_context.h" > -#include "intel_lrc_reg.h" > > struct drm_i915_gem_object; > struct intel_engine_cs; > @@ -68,15 +67,5 @@ void lrc_check_regs(const struct intel_context *ce, > const char *when); > > void lrc_update_runtime(struct intel_context *ce); > -static inline u32 lrc_get_runtime(const struct intel_context *ce) > -{ > - /* > - * We can use either ppHWSP[16] which is recorded before the context > - * switch (and so excludes the cost of context switches) or use the > - * value from the context image itself, which is saved/restored earlier > - * and so includes the cost of the save. > - */ > - return READ_ONCE(ce->lrc_reg_state[CTX_TIMESTAMP]); > -} > > #endif /* __INTEL_LRC_H__ */ > diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c > index 36f1325baa7d..00fb40029f43 100644 > --- a/drivers/gpu/drm/i915/i915_perf.c > +++ b/drivers/gpu/drm/i915/i915_perf.c > @@ -206,6 +206,7 @@ > #include "gt/intel_gt_clock_utils.h" > #include "gt/intel_gt_regs.h" > #include "gt/intel_lrc.h" > +#include "gt/intel_lrc_reg.h" > #include "gt/intel_ring.h" > > #include "i915_drv.h" ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c 2022-02-14 17:38 [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Jani Nikula 2022-02-14 17:38 ` [Intel-gfx] [PATCH 2/2] drm/i915/lrc: replace include with forward declarations Jani Nikula 2022-02-15 15:54 ` [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Tvrtko Ursulin @ 2022-02-16 2:38 ` Patchwork 2022-02-17 3:57 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c (rev2) Patchwork 2022-02-17 12:14 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-02-16 2:38 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 6899 bytes --] == Series Details == Series: series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c URL : https://patchwork.freedesktop.org/series/100118/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11230 -> Patchwork_22271 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_22271 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_22271, please notify your bug team 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_22271/index.html Participating hosts (49 -> 45) ------------------------------ Missing (4): fi-bsw-cyan shard-rkl bat-jsl-2 shard-tglu Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_22271: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@workarounds: - fi-rkl-guc: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11230/fi-rkl-guc/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-rkl-guc/igt@i915_selftest@live@workarounds.html Known issues ------------ Here are the changes found in Patchwork_22271 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - fi-bdw-5557u: [PASS][3] -> [INCOMPLETE][4] ([i915#146]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11230/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - fi-skl-6600u: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-skl-6600u/igt@gem_lmem_swapping@verify-random.html * igt@kms_chamelium@vga-edid-read: - fi-skl-6600u: NOTRUN -> [SKIP][7] ([fdo#109271] / [fdo#111827]) +8 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-skl-6600u: NOTRUN -> [SKIP][8] ([fdo#109271]) +21 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-skl-6600u/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-skl-6600u: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#533]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - bat-dg1-5: [PASS][10] -> [FAIL][11] ([fdo#103375]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11230/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3@smem: - fi-skl-6600u: [INCOMPLETE][12] ([i915#4547]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11230/fi-skl-6600u/igt@gem_exec_suspend@basic-s3@smem.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-skl-6600u/igt@gem_exec_suspend@basic-s3@smem.html - {fi-rkl-11600}: [INCOMPLETE][14] -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11230/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html #### Warnings #### * igt@i915_selftest@live@hangcheck: - bat-dg1-6: [DMESG-FAIL][16] ([i915#4957]) -> [DMESG-FAIL][17] ([i915#4494] / [i915#4957]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11230/bat-dg1-6/igt@i915_selftest@live@hangcheck.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/bat-dg1-6/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4897]: https://gitlab.freedesktop.org/drm/intel/issues/4897 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_11230 -> Patchwork_22271 CI-20190529: 20190529 CI_DRM_11230: e3741d576f60e3d0df5b385ba96a08ada3c760af @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6345: ee18c0497ec2c74007e299c3fdd26f1613b9f514 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_22271: f03c50851ac684ccf7cda1a503365ad65876acc5 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == f03c50851ac6 drm/i915/lrc: replace include with forward declarations e11531ddebc3 drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22271/index.html [-- Attachment #2: Type: text/html, Size: 7300 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c (rev2) 2022-02-14 17:38 [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Jani Nikula ` (2 preceding siblings ...) 2022-02-16 2:38 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] " Patchwork @ 2022-02-17 3:57 ` Patchwork 2022-02-17 12:14 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-02-17 3:57 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 7785 bytes --] == Series Details == Series: series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c (rev2) URL : https://patchwork.freedesktop.org/series/100118/ State : success == Summary == CI Bug Log - changes from CI_DRM_11238 -> Patchwork_22294 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/index.html Participating hosts (46 -> 42) ------------------------------ Missing (4): fi-bsw-cyan fi-bxt-dsi shard-tglu fi-kbl-8809g Known issues ------------ Here are the changes found in Patchwork_22294 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_prime@amd-to-i915: - fi-ivb-3770: NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-ivb-3770/igt@amdgpu/amd_prime@amd-to-i915.html * igt@gem_huc_copy@huc-copy: - fi-skl-6600u: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-skl-6600u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - fi-skl-6600u: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-skl-6600u/igt@gem_lmem_swapping@verify-random.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [PASS][4] -> [INCOMPLETE][5] ([i915#4785]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - fi-blb-e6850: [PASS][6] -> [DMESG-FAIL][7] ([i915#5026]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-blb-e6850/igt@i915_selftest@live@requests.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-blb-e6850/igt@i915_selftest@live@requests.html * igt@kms_chamelium@vga-edid-read: - fi-skl-6600u: NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +8 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-skl-6600u/igt@kms_chamelium@vga-edid-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-skl-6600u: NOTRUN -> [SKIP][9] ([fdo#109271]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-skl-6600u/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_frontbuffer_tracking@basic: - fi-cml-u2: [PASS][10] -> [DMESG-WARN][11] ([i915#4269]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-skl-6600u: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#533]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_psr@primary_page_flip: - fi-skl-6600u: NOTRUN -> [INCOMPLETE][13] ([i915#4547] / [i915#4838]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-skl-6600u/igt@kms_psr@primary_page_flip.html * igt@runner@aborted: - fi-hsw-4770: NOTRUN -> [FAIL][14] ([fdo#109271] / [i915#1436] / [i915#4312]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-hsw-4770/igt@runner@aborted.html - fi-blb-e6850: NOTRUN -> [FAIL][15] ([fdo#109271] / [i915#2403] / [i915#2426] / [i915#4312]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-blb-e6850/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@gem_contexts: - {fi-tgl-dsi}: [DMESG-WARN][16] ([i915#2867]) -> [PASS][17] +16 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-tgl-dsi/igt@i915_selftest@live@gem_contexts.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-tgl-dsi/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@hangcheck: - fi-ivb-3770: [INCOMPLETE][18] ([i915#3303]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html - bat-dg1-5: [DMESG-FAIL][20] ([i915#4494] / [i915#4957]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/bat-dg1-5/igt@i915_selftest@live@hangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/bat-dg1-5/igt@i915_selftest@live@hangcheck.html #### Warnings #### * igt@i915_selftest@live@hangcheck: - bat-dg1-6: [DMESG-FAIL][22] ([i915#4957]) -> [DMESG-FAIL][23] ([i915#4494] / [i915#4957]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/bat-dg1-6/igt@i915_selftest@live@hangcheck.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/bat-dg1-6/igt@i915_selftest@live@hangcheck.html * igt@runner@aborted: - fi-skl-6600u: [FAIL][24] ([i915#4312]) -> [FAIL][25] ([i915#2722] / [i915#4312]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/fi-skl-6600u/igt@runner@aborted.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/fi-skl-6600u/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303 [i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4838]: https://gitlab.freedesktop.org/drm/intel/issues/4838 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5026]: https://gitlab.freedesktop.org/drm/intel/issues/5026 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_11238 -> Patchwork_22294 CI-20190529: 20190529 CI_DRM_11238: e141e36b2871c529379f7ec7d5d6ebae3137a51b @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6347: 37ea4c86f97c0e05fcb6b04cff72ec927930536e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_22294: 9be214c10c92ae1bef3c736935d10507338bdf28 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 9be214c10c92 drm/i915/lrc: replace include with forward declarations c1e509ed3cca drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/index.html [-- Attachment #2: Type: text/html, Size: 9658 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c (rev2) 2022-02-14 17:38 [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Jani Nikula ` (3 preceding siblings ...) 2022-02-17 3:57 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c (rev2) Patchwork @ 2022-02-17 12:14 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-02-17 12:14 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30309 bytes --] == Series Details == Series: series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c (rev2) URL : https://patchwork.freedesktop.org/series/100118/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11238_full -> Patchwork_22294_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_22294_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_22294_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-dg1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_22294_full: ### IGT changes ### #### Possible regressions #### * igt@gem_linear_blits@normal: - shard-tglb: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglb5/igt@gem_linear_blits@normal.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-tglb7/igt@gem_linear_blits@normal.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-glk: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk4/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_vblank@pipe-a-ts-continuation-modeset-hang: - shard-glk: [PASS][5] -> [TIMEOUT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk9/igt@kms_vblank@pipe-a-ts-continuation-modeset-hang.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk3/igt@kms_vblank@pipe-a-ts-continuation-modeset-hang.html Known issues ------------ Here are the changes found in Patchwork_22294_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_balancer@parallel-balancer: - shard-iclb: [PASS][7] -> [SKIP][8] ([i915#4525]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb4/igt@gem_exec_balancer@parallel-balancer.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb3/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@pi@bcs0: - shard-skl: NOTRUN -> [INCOMPLETE][9] ([i915#4547]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl4/igt@gem_exec_capture@pi@bcs0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-kbl: [PASS][10] -> [FAIL][11] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-kbl7/igt@gem_exec_fair@basic-none-rrul@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-kbl6/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][14] -> [FAIL][15] ([i915#2849]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][16] ([fdo#112283]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb5/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-glk: [PASS][17] -> [DMESG-WARN][18] ([i915#118]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk4/igt@gem_exec_whisper@basic-queues-forked-all.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk8/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_lmem_swapping@heavy-multi: - shard-skl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl1/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-kbl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-kbl4/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-iclb: NOTRUN -> [SKIP][21] ([i915#4613]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random-engines: - shard-apl: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4613]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl6/igt@gem_lmem_swapping@random-engines.html * igt@gem_pwrite@basic-exhaustion: - shard-skl: NOTRUN -> [WARN][23] ([i915#2658]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-iclb: NOTRUN -> [SKIP][24] ([i915#768]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_userptr_blits@dmabuf-sync: - shard-iclb: NOTRUN -> [SKIP][25] ([i915#3323]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@unsync-overlap: - shard-iclb: NOTRUN -> [SKIP][26] ([i915#3297]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@gem_userptr_blits@unsync-overlap.html * igt@gen7_exec_parse@bitmasks: - shard-iclb: NOTRUN -> [SKIP][27] ([fdo#109289]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@basic-rejected: - shard-iclb: NOTRUN -> [SKIP][28] ([i915#2856]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@gen9_exec_parse@basic-rejected.html * igt@i915_pm_dc@dc6-dpms: - shard-skl: NOTRUN -> [FAIL][29] ([i915#454]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl9/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: NOTRUN -> [FAIL][30] ([i915#454]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#110892]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-skl: [PASS][32] -> [FAIL][33] ([i915#2521]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl7/igt@kms_async_flips@alternate-sync-async-flip.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl4/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#110725] / [fdo#111614]) +4 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3777]) +2 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][36] ([i915#3743]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][37] ([fdo#111615]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-tglb2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#110723]) +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-skl: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3777]) +5 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-iclb: NOTRUN -> [SKIP][40] ([i915#2705]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl6/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#3886]) +6 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk1/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278] / [i915#3886]) +6 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium@dp-crc-multiple: - shard-skl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +15 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl1/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_chamelium@hdmi-cmp-planar-formats: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-kbl4/igt@kms_chamelium@hdmi-cmp-planar-formats.html * igt@kms_chamelium@hdmi-crc-fast: - shard-iclb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +6 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_color@pipe-d-ctm-0-5: - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109278] / [i915#1149]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_color@pipe-d-ctm-0-5.html * igt@kms_color_chamelium@pipe-a-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl6/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html * igt@kms_content_protection@legacy: - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109300] / [fdo#111066]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@pipe-c-cursor-32x10-onscreen: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#3359]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-32x10-onscreen.html * igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109278] / [fdo#109279]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_cursor_crc@pipe-c-cursor-512x512-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109278]) +23 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#109278]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb3/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium: - shard-iclb: NOTRUN -> [SKIP][55] ([i915#3528]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_dsc@basic-dsc-enable: - shard-iclb: NOTRUN -> [SKIP][56] ([i915#3840]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@kms_dsc@basic-dsc-enable.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-skl: [PASS][57] -> [FAIL][58] ([i915#79]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl9/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: [PASS][59] -> [DMESG-WARN][60] ([i915#180]) +5 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-kbl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-apl: [PASS][61] -> [DMESG-WARN][62] ([i915#180]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_flip@plain-flip-fb-recreate@b-edp1: - shard-skl: [PASS][63] -> [FAIL][64] ([i915#2122]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl1/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl2/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-glk: [PASS][65] -> [FAIL][66] ([i915#4911]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-iclb: [PASS][67] -> [SKIP][68] ([i915#3701]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-skl: NOTRUN -> [INCOMPLETE][69] ([i915#3701]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109280]) +19 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109280] / [fdo#111825]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-kbl: NOTRUN -> [SKIP][72] ([fdo#109271]) +21 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-kbl4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_hdr@static-toggle: - shard-iclb: NOTRUN -> [SKIP][73] ([i915#1187]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-iclb: NOTRUN -> [SKIP][74] ([i915#1839]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence: - shard-skl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#533]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl7/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-kbl: NOTRUN -> [FAIL][76] ([fdo#108145] / [i915#265]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-kbl4/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][77] ([fdo#108145] / [i915#265]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl6/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc: - shard-skl: NOTRUN -> [FAIL][78] ([fdo#108145] / [i915#265]) +1 similar issue [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl7/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html * igt@kms_plane_lowres@pipe-b-tiling-x: - shard-iclb: NOTRUN -> [SKIP][79] ([i915#3536]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@kms_plane_lowres@pipe-b-tiling-x.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109274]) +5 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-skl: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#658]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl1/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-kbl: NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#658]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-kbl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: NOTRUN -> [SKIP][83] ([fdo#109441]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][84] -> [SKIP][85] ([fdo#109441]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb1/igt@kms_psr@psr2_cursor_render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-glk: NOTRUN -> [SKIP][86] ([fdo#109271]) +2 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a: - shard-skl: NOTRUN -> [SKIP][87] ([fdo#109271]) +227 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl3/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html * igt@nouveau_crc@ctx-flip-threshold-reset-after-capture: - shard-iclb: NOTRUN -> [SKIP][88] ([i915#2530]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@nouveau_crc@ctx-flip-threshold-reset-after-capture.html * igt@nouveau_crc@pipe-d-ctx-flip-skip-current-frame: - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109278] / [i915#2530]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb5/igt@nouveau_crc@pipe-d-ctx-flip-skip-current-frame.html * igt@perf@blocking: - shard-skl: [PASS][90] -> [FAIL][91] ([i915#1542]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl10/igt@perf@blocking.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl10/igt@perf@blocking.html * igt@perf@polling-small-buf: - shard-skl: NOTRUN -> [FAIL][92] ([i915#1722]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl7/igt@perf@polling-small-buf.html * igt@perf_pmu@module-unload: - shard-iclb: NOTRUN -> [FAIL][93] ([i915#5136]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@perf_pmu@module-unload.html * igt@prime_nv_pcopy@test3_5: - shard-apl: NOTRUN -> [SKIP][94] ([fdo#109271]) +38 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl6/igt@prime_nv_pcopy@test3_5.html * igt@prime_nv_test@i915_import_cpu_mmap: - shard-iclb: NOTRUN -> [SKIP][95] ([fdo#109291]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb8/igt@prime_nv_test@i915_import_cpu_mmap.html * igt@sysfs_clients@fair-3: - shard-apl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#2994]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl6/igt@sysfs_clients@fair-3.html * igt@sysfs_clients@recycle: - shard-iclb: NOTRUN -> [SKIP][97] ([i915#2994]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb6/igt@sysfs_clients@recycle.html * igt@sysfs_clients@sema-10: - shard-skl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2994]) +2 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl7/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-apl: [DMESG-WARN][99] ([i915#180]) -> [PASS][100] +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-apl2/igt@gem_ctx_isolation@preservation-s3@bcs0.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-apl8/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_eio@unwedge-stress: - shard-iclb: [TIMEOUT][101] ([i915#2481] / [i915#3070]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb4/igt@gem_eio@unwedge-stress.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb3/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - {shard-tglu}: [FAIL][103] ([i915#2842]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglu-1/igt@gem_exec_fair@basic-none-share@rcs0.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][105] ([i915#2842]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_whisper@basic-normal: - shard-glk: [DMESG-WARN][107] ([i915#118]) -> [PASS][108] +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk7/igt@gem_exec_whisper@basic-normal.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk7/igt@gem_exec_whisper@basic-normal.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [SKIP][109] ([i915#2190]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglb7/igt@gem_huc_copy@huc-copy.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-tglb8/igt@gem_huc_copy@huc-copy.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [DMESG-WARN][111] ([i915#1436] / [i915#716]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk5/igt@gen9_exec_parse@allowed-all.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk1/igt@gen9_exec_parse@allowed-all.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-skl: [FAIL][113] ([i915#2346]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-glk: [FAIL][115] ([i915#79]) -> [PASS][116] +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-kbl: [DMESG-WARN][117] ([i915#180]) -> [PASS][118] +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-kbl1/igt@kms_flip@flip-vs-suspend@c-dp1.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-kbl1/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip@plain-flip-ts-check@c-edp1: - shard-skl: [FAIL][119] ([i915#2122]) -> [PASS][120] +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl7/igt@kms_flip@plain-flip-ts-check@c-edp1.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl3/igt@kms_flip@plain-flip-ts-check@c-edp1.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-skl: [INCOMPLETE][121] ([i915#123]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl4/igt@kms_frontbuffer_tracking@psr-suspend.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl4/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch-dpms: - shard-skl: [FAIL][123] ([i915#1188]) -> [PASS][124] +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-skl9/igt@kms_hdr@bpc-switch-dpms.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-skl9/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_psr@psr2_dpms: - shard-iclb: [SKIP][125] ([fdo#109441]) -> [PASS][126] +2 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb8/igt@kms_psr@psr2_dpms.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb2/igt@kms_psr@psr2_dpms.html * igt@kms_setmode@basic: - shard-glk: [FAIL][127] ([i915#31]) -> [PASS][128] [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-glk4/igt@kms_setmode@basic.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-glk8/igt@kms_setmode@basic.html #### Warnings #### * igt@gem_eio@unwedge-stress: - shard-tglb: [FAIL][129] ([i915#232]) -> [TIMEOUT][130] ([i915#3063] / [i915#3648]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-tglb3/igt@gem_eio@unwedge-stress.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-tglb6/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [SKIP][131] ([i915#4525]) -> [DMESG-WARN][132] ([i915#5076]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb6/igt@gem_exec_balancer@parallel-bb-first.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb2/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [SKIP][133] ([i915#4525]) -> [DMESG-FAIL][134] ([i915#5076]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11238/shard-iclb8/igt@gem_exec_balancer@parallel-ordering.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/shard-iclb1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [DMESG-WARN][135] ([i915#5076]) -> [SKIP][136] ([i915#452 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_22294/index.html [-- Attachment #2: Type: text/html, Size: 33679 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-02-17 12:14 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-02-14 17:38 [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Jani Nikula 2022-02-14 17:38 ` [Intel-gfx] [PATCH 2/2] drm/i915/lrc: replace include with forward declarations Jani Nikula 2022-02-15 15:55 ` Tvrtko Ursulin 2022-02-15 15:54 ` [Intel-gfx] [PATCH 1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c Tvrtko Ursulin 2022-02-16 2:38 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] " Patchwork 2022-02-17 3:57 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915/lrc: move lrc_get_runtime() to intel_lrc.c (rev2) Patchwork 2022-02-17 12:14 ` [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