* [igt-dev] [PATCH i-g-t 0/2] Increase timeout for GuC submission
@ 2023-03-29 5:28 pallavi.mishra
2023-03-29 5:28 ` [igt-dev] [PATCH 1/2] [PATCH i-g-t] tests/i915: " pallavi.mishra
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: pallavi.mishra @ 2023-03-29 5:28 UTC (permalink / raw)
To: igt-dev, kamil.konieczny
From: Pallavi Mishra <pallavi.mishra@intel.com>
Increase reset timeout as resets can take a bit longer with GuC
submission because an error capture is done and with a large GuC log (16
MB) these take a while.
Don't run 'off' section as with GuC submission we don't handle
dynamically changing the timeslice duration from 'off' to 'on' on a
currently running context. This is not bug in GuC submission rather an
architectural decision to not implement this as there is no user aside
from IGTs.
Pallavi Mishra (2):
[igt-dev][PATCH i-g-t] tests/i915: Increase timeout for GuC submission
[igt-dev][PATCH i-g-t] i915/sysfs_timeslice_duration: skip off subtest
for GuC submission
tests/i915/sysfs_heartbeat_interval.c | 2 +-
tests/i915/sysfs_timeslice_duration.c | 10 +++++++++-
2 files changed, 10 insertions(+), 2 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [PATCH 1/2] [PATCH i-g-t] tests/i915: Increase timeout for GuC submission 2023-03-29 5:28 [igt-dev] [PATCH i-g-t 0/2] Increase timeout for GuC submission pallavi.mishra @ 2023-03-29 5:28 ` pallavi.mishra 2023-03-29 9:40 ` Kamil Konieczny 2023-03-29 5:28 ` [igt-dev] [PATCH 2/2] [PATCH i-g-t] i915/sysfs_timeslice_duration: skip off subtest " pallavi.mishra ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: pallavi.mishra @ 2023-03-29 5:28 UTC (permalink / raw) To: igt-dev, kamil.konieczny From: Pallavi Mishra <pallavi.mishra@intel.com> Increase reset timeout as resets can take a bit longer with GuC submission because an error capture is done and with a large GuC log (16MB) these take a while. Co-authored-by: Matthew Brost <matthew.brost@intel.com> Signed-off-by: Pallavi Mishra <pallavi.mishra@intel.com> --- tests/i915/sysfs_heartbeat_interval.c | 2 +- tests/i915/sysfs_timeslice_duration.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/i915/sysfs_heartbeat_interval.c b/tests/i915/sysfs_heartbeat_interval.c index 8cebf627..8a3dd397 100644 --- a/tests/i915/sysfs_heartbeat_interval.c +++ b/tests/i915/sysfs_heartbeat_interval.c @@ -43,7 +43,7 @@ #include "sw_sync.h" #define ATTR "heartbeat_interval_ms" -#define RESET_TIMEOUT 50 /* milliseconds, at least one jiffie for kworker */ +#define RESET_TIMEOUT 1000 /* milliseconds, long enough for error capture */ static bool __enable_hangcheck(int dir, bool state) { diff --git a/tests/i915/sysfs_timeslice_duration.c b/tests/i915/sysfs_timeslice_duration.c index 80d34285..c23424c6 100644 --- a/tests/i915/sysfs_timeslice_duration.c +++ b/tests/i915/sysfs_timeslice_duration.c @@ -44,7 +44,7 @@ #include "sw_sync.h" #define ATTR "timeslice_duration_ms" -#define RESET_TIMEOUT 50 /* milliseconds, at least one jiffie for kworker */ +#define RESET_TIMEOUT 1000 /* milliseconds, long enough for error capture */ static bool __enable_hangcheck(int dir, bool state) { -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH 1/2] [PATCH i-g-t] tests/i915: Increase timeout for GuC submission 2023-03-29 5:28 ` [igt-dev] [PATCH 1/2] [PATCH i-g-t] tests/i915: " pallavi.mishra @ 2023-03-29 9:40 ` Kamil Konieczny 0 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2023-03-29 9:40 UTC (permalink / raw) To: igt-dev; +Cc: kamil.konieczny On 2023-03-29 at 10:58:47 +0530, pallavi.mishra@intel.com wrote: > From: Pallavi Mishra <pallavi.mishra@intel.com> > > Increase reset timeout as resets can take a bit longer with GuC > submission because an error capture is done and with a large GuC log > (16MB) these take a while. > > Co-authored-by: Matthew Brost <matthew.brost@intel.com> > Signed-off-by: Pallavi Mishra <pallavi.mishra@intel.com> LGTM, Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/i915/sysfs_heartbeat_interval.c | 2 +- > tests/i915/sysfs_timeslice_duration.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/i915/sysfs_heartbeat_interval.c b/tests/i915/sysfs_heartbeat_interval.c > index 8cebf627..8a3dd397 100644 > --- a/tests/i915/sysfs_heartbeat_interval.c > +++ b/tests/i915/sysfs_heartbeat_interval.c > @@ -43,7 +43,7 @@ > #include "sw_sync.h" > > #define ATTR "heartbeat_interval_ms" > -#define RESET_TIMEOUT 50 /* milliseconds, at least one jiffie for kworker */ > +#define RESET_TIMEOUT 1000 /* milliseconds, long enough for error capture */ > > static bool __enable_hangcheck(int dir, bool state) > { > diff --git a/tests/i915/sysfs_timeslice_duration.c b/tests/i915/sysfs_timeslice_duration.c > index 80d34285..c23424c6 100644 > --- a/tests/i915/sysfs_timeslice_duration.c > +++ b/tests/i915/sysfs_timeslice_duration.c > @@ -44,7 +44,7 @@ > #include "sw_sync.h" > > #define ATTR "timeslice_duration_ms" > -#define RESET_TIMEOUT 50 /* milliseconds, at least one jiffie for kworker */ > +#define RESET_TIMEOUT 1000 /* milliseconds, long enough for error capture */ > > static bool __enable_hangcheck(int dir, bool state) > { > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH 2/2] [PATCH i-g-t] i915/sysfs_timeslice_duration: skip off subtest for GuC submission 2023-03-29 5:28 [igt-dev] [PATCH i-g-t 0/2] Increase timeout for GuC submission pallavi.mishra 2023-03-29 5:28 ` [igt-dev] [PATCH 1/2] [PATCH i-g-t] tests/i915: " pallavi.mishra @ 2023-03-29 5:28 ` pallavi.mishra 2023-03-29 9:46 ` Kamil Konieczny 2023-03-29 6:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Increase timeout " Patchwork 2023-03-29 17:00 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 1 reply; 7+ messages in thread From: pallavi.mishra @ 2023-03-29 5:28 UTC (permalink / raw) To: igt-dev, kamil.konieczny From: Pallavi Mishra <pallavi.mishra@intel.com> Don't run 'off' section as with GuC submission we don't handle dynamically changing the timeslice duration from 'off' to 'on' on a currently running context. This is not bug in GuC submission rather an architectural decision to not implement this as there is no user aside from IGTs. Co-authored-by: Matthew Brost <matthew.brost@intel.com> Signed-off-by: Pallavi Mishra <pallavi.mishra@intel.com> --- tests/i915/sysfs_timeslice_duration.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/i915/sysfs_timeslice_duration.c b/tests/i915/sysfs_timeslice_duration.c index c23424c6..92c4c5ea 100644 --- a/tests/i915/sysfs_timeslice_duration.c +++ b/tests/i915/sysfs_timeslice_duration.c @@ -29,6 +29,7 @@ #include <sys/types.h> #include <unistd.h> +#include "igt.h" #include "igt_params.h" #include "drmtest.h" #include "i915/gem.h" @@ -475,6 +476,13 @@ static void test_off(int i915, int engine) gem_quiescent_gpu(i915); igt_require(enable_hangcheck(i915, false)); + /* GuC does not handle dynamic change in timeslice + * duration from 'off' to 'on' on a currently + * running context. Hence add below check. + */ + + igt_require(!gem_using_guc_submission(i915)); + igt_assert(igt_sysfs_scanf(engine, "class", "%u", &class) == 1); igt_assert(igt_sysfs_scanf(engine, "instance", "%u", &inst) == 1); -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH 2/2] [PATCH i-g-t] i915/sysfs_timeslice_duration: skip off subtest for GuC submission 2023-03-29 5:28 ` [igt-dev] [PATCH 2/2] [PATCH i-g-t] i915/sysfs_timeslice_duration: skip off subtest " pallavi.mishra @ 2023-03-29 9:46 ` Kamil Konieczny 0 siblings, 0 replies; 7+ messages in thread From: Kamil Konieczny @ 2023-03-29 9:46 UTC (permalink / raw) To: igt-dev On 2023-03-29 at 10:58:48 +0530, pallavi.mishra@intel.com wrote: > From: Pallavi Mishra <pallavi.mishra@intel.com> > > Don't run 'off' section as with GuC submission we don't handle > dynamically changing the timeslice duration from 'off' to 'on' on a > currently running context. This is not bug in GuC submission rather an > architectural decision to not implement this as there is no user aside > from IGTs. > > Co-authored-by: Matthew Brost <matthew.brost@intel.com> > Signed-off-by: Pallavi Mishra <pallavi.mishra@intel.com> LGTM, Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> btw if you may please use my @linux address above for patches. -- Kamil > --- > tests/i915/sysfs_timeslice_duration.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/tests/i915/sysfs_timeslice_duration.c b/tests/i915/sysfs_timeslice_duration.c > index c23424c6..92c4c5ea 100644 > --- a/tests/i915/sysfs_timeslice_duration.c > +++ b/tests/i915/sysfs_timeslice_duration.c > @@ -29,6 +29,7 @@ > #include <sys/types.h> > #include <unistd.h> > > +#include "igt.h" > #include "igt_params.h" > #include "drmtest.h" > #include "i915/gem.h" > @@ -475,6 +476,13 @@ static void test_off(int i915, int engine) > gem_quiescent_gpu(i915); > igt_require(enable_hangcheck(i915, false)); > > + /* GuC does not handle dynamic change in timeslice > + * duration from 'off' to 'on' on a currently > + * running context. Hence add below check. > + */ > + > + igt_require(!gem_using_guc_submission(i915)); > + > igt_assert(igt_sysfs_scanf(engine, "class", "%u", &class) == 1); > igt_assert(igt_sysfs_scanf(engine, "instance", "%u", &inst) == 1); > > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Increase timeout for GuC submission 2023-03-29 5:28 [igt-dev] [PATCH i-g-t 0/2] Increase timeout for GuC submission pallavi.mishra 2023-03-29 5:28 ` [igt-dev] [PATCH 1/2] [PATCH i-g-t] tests/i915: " pallavi.mishra 2023-03-29 5:28 ` [igt-dev] [PATCH 2/2] [PATCH i-g-t] i915/sysfs_timeslice_duration: skip off subtest " pallavi.mishra @ 2023-03-29 6:05 ` Patchwork 2023-03-29 17:00 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-03-29 6:05 UTC (permalink / raw) To: pallavi.mishra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3622 bytes --] == Series Details == Series: Increase timeout for GuC submission URL : https://patchwork.freedesktop.org/series/115763/ State : success == Summary == CI Bug Log - changes from CI_DRM_12931 -> IGTPW_8706 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/index.html Participating hosts (36 -> 36) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_8706 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - fi-skl-guc: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#4613]) +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/fi-skl-guc/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][2] -> [DMESG-FAIL][3] ([i915#5334]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@hangcheck: - fi-skl-guc: NOTRUN -> [DMESG-WARN][4] ([i915#8073]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/fi-skl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@reset: - bat-rpls-2: [PASS][5] -> [ABORT][6] ([i915#4983] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/bat-rpls-2/igt@i915_selftest@live@reset.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#5354]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_setmode@basic-clone-single-crtc: - fi-skl-guc: NOTRUN -> [SKIP][8] ([fdo#109271]) +19 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/fi-skl-guc/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_module_load@load: - fi-skl-guc: [ABORT][9] ([i915#8189]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/fi-skl-guc/igt@i915_module_load@load.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/fi-skl-guc/igt@i915_module_load@load.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073 [i915#8189]: https://gitlab.freedesktop.org/drm/intel/issues/8189 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7223 -> IGTPW_8706 CI-20190529: 20190529 CI_DRM_12931: e1b8055e62c6f94ef94db3e7f125704ac0fab0b5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8706: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/index.html IGT_7223: 2cbfa210fc95d126edf9a60ae6ab4e96cf4fca7f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/index.html [-- Attachment #2: Type: text/html, Size: 4442 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Increase timeout for GuC submission 2023-03-29 5:28 [igt-dev] [PATCH i-g-t 0/2] Increase timeout for GuC submission pallavi.mishra ` (2 preceding siblings ...) 2023-03-29 6:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Increase timeout " Patchwork @ 2023-03-29 17:00 ` Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-03-29 17:00 UTC (permalink / raw) To: pallavi.mishra; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 14347 bytes --] == Series Details == Series: Increase timeout for GuC submission URL : https://patchwork.freedesktop.org/series/115763/ State : success == Summary == CI Bug Log - changes from CI_DRM_12931_full -> IGTPW_8706_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_8706_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][1] -> [FAIL][2] ([i915#2846]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk2/igt@gem_exec_fair@basic-deadline.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-glk: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk5/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][6] -> [SKIP][7] ([fdo#109271]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-apl3/igt@i915_pm_dc@dc9-dpms.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-apl6/igt@i915_pm_dc@dc9-dpms.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#3886]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk5/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2346]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][11] -> [FAIL][12] ([i915#79]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2122]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-glk: NOTRUN -> [SKIP][15] ([fdo#109271]) +52 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#658]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk5/igt@kms_psr2_su@frontbuffer-xrgb8888.html #### Possible fixes #### * igt@gem_exec_endless@dispatch@vcs1: - {shard-tglu}: [TIMEOUT][17] ([i915#3778]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-tglu-9/igt@gem_exec_endless@dispatch@vcs1.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-tglu-8/igt@gem_exec_endless@dispatch@vcs1.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][19] ([i915#2842]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk4/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [DMESG-WARN][21] ([i915#4936]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][23] ([i915#2346]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][25] ([i915#2122]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_vblank@pipe-c-wait-forked-busy-hang: - shard-apl: [SKIP][27] ([fdo#109271]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-apl3/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-apl6/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html - shard-glk: [SKIP][29] ([fdo#109271]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk9/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk4/igt@kms_vblank@pipe-c-wait-forked-busy-hang.html * {igt@perf@stress-open-close@0-rcs0}: - shard-glk: [ABORT][31] ([i915#5213]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12931/shard-glk3/igt@perf@stress-open-close@0-rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/shard-glk1/igt@perf@stress-open-close@0-rcs0.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 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [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#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#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#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [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#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5431]: https://gitlab.freedesktop.org/drm/intel/issues/5431 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7863]: https://gitlab.freedesktop.org/drm/intel/issues/7863 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7223 -> IGTPW_8706 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12931: e1b8055e62c6f94ef94db3e7f125704ac0fab0b5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8706: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/index.html IGT_7223: 2cbfa210fc95d126edf9a60ae6ab4e96cf4fca7f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8706/index.html [-- Attachment #2: Type: text/html, Size: 10169 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-03-29 17:00 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-29 5:28 [igt-dev] [PATCH i-g-t 0/2] Increase timeout for GuC submission pallavi.mishra 2023-03-29 5:28 ` [igt-dev] [PATCH 1/2] [PATCH i-g-t] tests/i915: " pallavi.mishra 2023-03-29 9:40 ` Kamil Konieczny 2023-03-29 5:28 ` [igt-dev] [PATCH 2/2] [PATCH i-g-t] i915/sysfs_timeslice_duration: skip off subtest " pallavi.mishra 2023-03-29 9:46 ` Kamil Konieczny 2023-03-29 6:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Increase timeout " Patchwork 2023-03-29 17:00 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox