* [igt-dev] [PATCH i-g-t] i915/gem_exec_reloc: Add SIGINT injection
@ 2020-01-29 22:24 Chris Wilson
2020-01-29 22:28 ` Antonio Argenziano
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Chris Wilson @ 2020-01-29 22:24 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
Do a pass over gem_exec_reloc where we inject lots of SIGINTs.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Antonio Argenziano <antonio.argenziano@intel.com>
---
tests/i915/gem_exec_reloc.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/tests/i915/gem_exec_reloc.c b/tests/i915/gem_exec_reloc.c
index bc904a0ae..1aa03fba3 100644
--- a/tests/i915/gem_exec_reloc.c
+++ b/tests/i915/gem_exec_reloc.c
@@ -379,7 +379,8 @@ static bool has_64b_reloc(int fd)
#define NORELOC 1
#define ACTIVE 2
-#define HANG 4
+#define INTERRUPTIBLE 4
+#define HANG 8
static void basic_reloc(int fd, unsigned before, unsigned after, unsigned flags)
{
#define OBJSZ 8192
@@ -735,6 +736,7 @@ igt_main
{ "", 0 , true},
{ "-noreloc", NORELOC, true },
{ "-active", ACTIVE, true },
+ { "-interruptible", ACTIVE | INTERRUPTIBLE },
{ "-hang", ACTIVE | HANG },
{ },
}, *f;
@@ -762,14 +764,17 @@ igt_main
f->name) {
if ((m->before | m->after) & I915_GEM_DOMAIN_WC)
igt_require(gem_mmap__has_wc(fd));
- basic_reloc(fd, m->before, m->after, f->flags);
+ igt_while_interruptible(f->flags & INTERRUPTIBLE)
+ basic_reloc(fd, m->before, m->after, f->flags);
}
}
if (!(f->flags & NORELOC)) {
igt_subtest_f("%srange%s",
- f->basic ? "basic-" : "", f->name)
- basic_range(fd, f->flags);
+ f->basic ? "basic-" : "", f->name) {
+ igt_while_interruptible(f->flags & INTERRUPTIBLE)
+ basic_range(fd, f->flags);
+ }
}
igt_fixture {
--
2.25.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [igt-dev] [PATCH i-g-t] i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 22:24 [igt-dev] [PATCH i-g-t] i915/gem_exec_reloc: Add SIGINT injection Chris Wilson @ 2020-01-29 22:28 ` Antonio Argenziano 2020-01-29 23:35 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Antonio Argenziano @ 2020-01-29 22:28 UTC (permalink / raw) To: Chris Wilson, intel-gfx; +Cc: igt-dev On 29/01/20 14:24, Chris Wilson wrote: > Do a pass over gem_exec_reloc where we inject lots of SIGINTs. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Antonio Argenziano <antonio.argenziano@intel.com> LGTM. Reviewed-by: Antonio Argenziano <antonio.argenziano@intel.com> > --- > tests/i915/gem_exec_reloc.c | 13 +++++++++---- > 1 file changed, 9 insertions(+), 4 deletions(-) > > diff --git a/tests/i915/gem_exec_reloc.c b/tests/i915/gem_exec_reloc.c > index bc904a0ae..1aa03fba3 100644 > --- a/tests/i915/gem_exec_reloc.c > +++ b/tests/i915/gem_exec_reloc.c > @@ -379,7 +379,8 @@ static bool has_64b_reloc(int fd) > > #define NORELOC 1 > #define ACTIVE 2 > -#define HANG 4 > +#define INTERRUPTIBLE 4 > +#define HANG 8 > static void basic_reloc(int fd, unsigned before, unsigned after, unsigned flags) > { > #define OBJSZ 8192 > @@ -735,6 +736,7 @@ igt_main > { "", 0 , true}, > { "-noreloc", NORELOC, true }, > { "-active", ACTIVE, true }, > + { "-interruptible", ACTIVE | INTERRUPTIBLE }, > { "-hang", ACTIVE | HANG }, > { }, > }, *f; > @@ -762,14 +764,17 @@ igt_main > f->name) { > if ((m->before | m->after) & I915_GEM_DOMAIN_WC) > igt_require(gem_mmap__has_wc(fd)); > - basic_reloc(fd, m->before, m->after, f->flags); > + igt_while_interruptible(f->flags & INTERRUPTIBLE) > + basic_reloc(fd, m->before, m->after, f->flags); > } > } > > if (!(f->flags & NORELOC)) { > igt_subtest_f("%srange%s", > - f->basic ? "basic-" : "", f->name) > - basic_range(fd, f->flags); > + f->basic ? "basic-" : "", f->name) { > + igt_while_interruptible(f->flags & INTERRUPTIBLE) > + basic_range(fd, f->flags); > + } > } > > igt_fixture { > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 22:24 [igt-dev] [PATCH i-g-t] i915/gem_exec_reloc: Add SIGINT injection Chris Wilson 2020-01-29 22:28 ` Antonio Argenziano @ 2020-01-29 23:35 ` Patchwork 2020-01-29 23:55 ` Antonio Argenziano 2020-01-30 10:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2020-01-29 23:35 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_exec_reloc: Add SIGINT injection URL : https://patchwork.freedesktop.org/series/72745/ State : failure == Summary == CI Bug Log - changes from IGT_5405 -> IGTPW_4036 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4036 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4036, 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/IGTPW_4036/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4036: ### IGT changes ### #### Possible regressions #### * igt@runner@aborted: - fi-bsw-nick: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-bsw-nick/igt@runner@aborted.html Known issues ------------ Here are the changes found in IGTPW_4036 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-threads: - fi-byt-j1900: [PASS][2] -> [TIMEOUT][3] ([fdo#112271] / [i915#816]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-j1900/igt@gem_close_race@basic-threads.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-byt-j1900/igt@gem_close_race@basic-threads.html #### Possible fixes #### * igt@gem_close_race@basic-threads: - fi-hsw-peppy: [TIMEOUT][4] ([fdo#112271]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-hsw-peppy/igt@gem_close_race@basic-threads.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-hsw-peppy/igt@gem_close_race@basic-threads.html * igt@i915_selftest@live_execlists: - fi-skl-guc: [INCOMPLETE][6] -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-skl-guc/igt@i915_selftest@live_execlists.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-skl-guc/igt@i915_selftest@live_execlists.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][8] ([fdo#111096] / [i915#323]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Warnings #### * igt@gem_exec_parallel@fds: - fi-byt-n2820: [FAIL][10] ([i915#694]) -> [TIMEOUT][11] ([fdo#112271]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-n2820/igt@gem_exec_parallel@fds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-byt-n2820/igt@gem_exec_parallel@fds.html * igt@i915_selftest@live_blt: - fi-hsw-4770: [DMESG-FAIL][12] ([i915#725]) -> [DMESG-FAIL][13] ([i915#553] / [i915#725]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-hsw-4770/igt@i915_selftest@live_blt.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-hsw-4770/igt@i915_selftest@live_blt.html [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816 Participating hosts (46 -> 46) ------------------------------ Additional (6): fi-bdw-gvtdvm fi-snb-2520m fi-gdg-551 fi-elk-e7500 fi-bsw-nick fi-skl-6700k2 Missing (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-kbl-7560u fi-tgl-y fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5405 -> IGTPW_4036 CI-20190529: 20190529 CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4036: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html IGT_5405: add505d102f5d27e38cb4d926524664e161c2a1a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_exec_reloc@cpu-gtt-interruptible +igt@gem_exec_reloc@cpu-interruptible +igt@gem_exec_reloc@cpu-read-interruptible +igt@gem_exec_reloc@cpu-wc-interruptible +igt@gem_exec_reloc@gtt-cpu-interruptible +igt@gem_exec_reloc@gtt-interruptible +igt@gem_exec_reloc@gtt-read-interruptible +igt@gem_exec_reloc@gtt-wc-interruptible +igt@gem_exec_reloc@range-interruptible +igt@gem_exec_reloc@wc-cpu-interruptible +igt@gem_exec_reloc@wc-gtt-interruptible +igt@gem_exec_reloc@wc-interruptible +igt@gem_exec_reloc@wc-read-interruptible +igt@gem_exec_reloc@write-cpu-interruptible +igt@gem_exec_reloc@write-gtt-interruptible +igt@gem_exec_reloc@write-read-interruptible +igt@gem_exec_reloc@write-wc-interruptible == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 23:35 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork @ 2020-01-29 23:55 ` Antonio Argenziano 2020-01-29 23:57 ` Chris Wilson 2020-01-30 10:32 ` Petri Latvala 0 siblings, 2 replies; 10+ messages in thread From: Antonio Argenziano @ 2020-01-29 23:55 UTC (permalink / raw) To: igt-dev, Chris Wilson On 29/01/20 15:35, Patchwork wrote: > == Series Details == > > Series: i915/gem_exec_reloc: Add SIGINT injection > URL : https://patchwork.freedesktop.org/series/72745/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_5405 -> IGTPW_4036 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_4036 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_4036, 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/IGTPW_4036/index.html > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_4036: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@runner@aborted: > - fi-bsw-nick: NOTRUN -> [FAIL][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-bsw-nick/igt@runner@aborted.html I doubt this was caused by this patch, can I merge? Antonio > > > Known issues > ------------ > > Here are the changes found in IGTPW_4036 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@gem_close_race@basic-threads: > - fi-byt-j1900: [PASS][2] -> [TIMEOUT][3] ([fdo#112271] / [i915#816]) > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-j1900/igt@gem_close_race@basic-threads.html > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-byt-j1900/igt@gem_close_race@basic-threads.html > > > #### Possible fixes #### > > * igt@gem_close_race@basic-threads: > - fi-hsw-peppy: [TIMEOUT][4] ([fdo#112271]) -> [PASS][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-hsw-peppy/igt@gem_close_race@basic-threads.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-hsw-peppy/igt@gem_close_race@basic-threads.html > > * igt@i915_selftest@live_execlists: > - fi-skl-guc: [INCOMPLETE][6] -> [PASS][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-skl-guc/igt@i915_selftest@live_execlists.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-skl-guc/igt@i915_selftest@live_execlists.html > > * igt@kms_chamelium@hdmi-hpd-fast: > - fi-kbl-7500u: [FAIL][8] ([fdo#111096] / [i915#323]) -> [PASS][9] > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html > > > #### Warnings #### > > * igt@gem_exec_parallel@fds: > - fi-byt-n2820: [FAIL][10] ([i915#694]) -> [TIMEOUT][11] ([fdo#112271]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-n2820/igt@gem_exec_parallel@fds.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-byt-n2820/igt@gem_exec_parallel@fds.html > > * igt@i915_selftest@live_blt: > - fi-hsw-4770: [DMESG-FAIL][12] ([i915#725]) -> [DMESG-FAIL][13] ([i915#553] / [i915#725]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-hsw-4770/igt@i915_selftest@live_blt.html > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-hsw-4770/igt@i915_selftest@live_blt.html > > > [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 > [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 > [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 > [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 > [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 > [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 > [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816 > > > Participating hosts (46 -> 46) > ------------------------------ > > Additional (6): fi-bdw-gvtdvm fi-snb-2520m fi-gdg-551 fi-elk-e7500 fi-bsw-nick fi-skl-6700k2 > Missing (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-kbl-7560u fi-tgl-y fi-bdw-samus > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_5405 -> IGTPW_4036 > > CI-20190529: 20190529 > CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_4036: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html > IGT_5405: add505d102f5d27e38cb4d926524664e161c2a1a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools > > > > == Testlist changes == > > +igt@gem_exec_reloc@cpu-gtt-interruptible > +igt@gem_exec_reloc@cpu-interruptible > +igt@gem_exec_reloc@cpu-read-interruptible > +igt@gem_exec_reloc@cpu-wc-interruptible > +igt@gem_exec_reloc@gtt-cpu-interruptible > +igt@gem_exec_reloc@gtt-interruptible > +igt@gem_exec_reloc@gtt-read-interruptible > +igt@gem_exec_reloc@gtt-wc-interruptible > +igt@gem_exec_reloc@range-interruptible > +igt@gem_exec_reloc@wc-cpu-interruptible > +igt@gem_exec_reloc@wc-gtt-interruptible > +igt@gem_exec_reloc@wc-interruptible > +igt@gem_exec_reloc@wc-read-interruptible > +igt@gem_exec_reloc@write-cpu-interruptible > +igt@gem_exec_reloc@write-gtt-interruptible > +igt@gem_exec_reloc@write-read-interruptible > +igt@gem_exec_reloc@write-wc-interruptible > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html > _______________________________________________ > igt-dev mailing list > igt-dev@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/igt-dev > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 23:55 ` Antonio Argenziano @ 2020-01-29 23:57 ` Chris Wilson 2020-01-30 0:03 ` Antonio Argenziano 2020-01-30 10:32 ` Petri Latvala 1 sibling, 1 reply; 10+ messages in thread From: Chris Wilson @ 2020-01-29 23:57 UTC (permalink / raw) To: Antonio Argenziano, igt-dev Quoting Antonio Argenziano (2020-01-29 23:55:05) > > > On 29/01/20 15:35, Patchwork wrote: > > == Series Details == > > > > Series: i915/gem_exec_reloc: Add SIGINT injection > > URL : https://patchwork.freedesktop.org/series/72745/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from IGT_5405 -> IGTPW_4036 > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > > > Serious unknown changes coming with IGTPW_4036 absolutely need to be > > verified manually. > > > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_4036, 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/IGTPW_4036/index.html > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in IGTPW_4036: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@runner@aborted: > > - fi-bsw-nick: NOTRUN -> [FAIL][1] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-bsw-nick/igt@runner@aborted.html > > I doubt this was caused by this patch, can I merge? After you fix the lockdep. I've all 3 ready to push, just waiting to give the kernel pw a chance (because somewhere in the queue is the fix for the above). -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 23:57 ` Chris Wilson @ 2020-01-30 0:03 ` Antonio Argenziano 0 siblings, 0 replies; 10+ messages in thread From: Antonio Argenziano @ 2020-01-30 0:03 UTC (permalink / raw) To: Chris Wilson, igt-dev On 29/01/20 15:57, Chris Wilson wrote: > Quoting Antonio Argenziano (2020-01-29 23:55:05) >> >> >> On 29/01/20 15:35, Patchwork wrote: >>> == Series Details == >>> >>> Series: i915/gem_exec_reloc: Add SIGINT injection >>> URL : https://patchwork.freedesktop.org/series/72745/ >>> State : failure >>> >>> == Summary == >>> >>> CI Bug Log - changes from IGT_5405 -> IGTPW_4036 >>> ==================================================== >>> >>> Summary >>> ------- >>> >>> **FAILURE** >>> >>> Serious unknown changes coming with IGTPW_4036 absolutely need to be >>> verified manually. >>> >>> If you think the reported changes have nothing to do with the changes >>> introduced in IGTPW_4036, 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/IGTPW_4036/index.html >>> >>> Possible new issues >>> ------------------- >>> >>> Here are the unknown changes that may have been introduced in IGTPW_4036: >>> >>> ### IGT changes ### >>> >>> #### Possible regressions #### >>> >>> * igt@runner@aborted: >>> - fi-bsw-nick: NOTRUN -> [FAIL][1] >>> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-bsw-nick/igt@runner@aborted.html >> >> I doubt this was caused by this patch, can I merge? > > After you fix the lockdep. I've all 3 ready to push, just waiting to > give the kernel pw a chance (because somewhere in the queue is the fix > for the above). Fair. Antonio > -Chris > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 23:55 ` Antonio Argenziano 2020-01-29 23:57 ` Chris Wilson @ 2020-01-30 10:32 ` Petri Latvala 1 sibling, 0 replies; 10+ messages in thread From: Petri Latvala @ 2020-01-30 10:32 UTC (permalink / raw) To: Antonio Argenziano; +Cc: igt-dev On Wed, Jan 29, 2020 at 03:55:05PM -0800, Antonio Argenziano wrote: > > > On 29/01/20 15:35, Patchwork wrote: > > == Series Details == > > > > Series: i915/gem_exec_reloc: Add SIGINT injection > > URL : https://patchwork.freedesktop.org/series/72745/ > > State : failure > > > > == Summary == > > > > CI Bug Log - changes from IGT_5405 -> IGTPW_4036 > > ==================================================== > > > > Summary > > ------- > > > > **FAILURE** > > > > Serious unknown changes coming with IGTPW_4036 absolutely need to be > > verified manually. > > If you think the reported changes have nothing to do with the changes > > introduced in IGTPW_4036, 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/IGTPW_4036/index.html > > > > Possible new issues > > ------------------- > > > > Here are the unknown changes that may have been introduced in IGTPW_4036: > > > > ### IGT changes ### > > > > #### Possible regressions #### > > > > * igt@runner@aborted: > > - fi-bsw-nick: NOTRUN -> [FAIL][1] > > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-bsw-nick/igt@runner@aborted.html > > I doubt this was caused by this patch, can I merge? The thumb rule is to wait for full CI results (the CI.IGT results, aka shards) first anyway. -- Petri Latvala _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 22:24 [igt-dev] [PATCH i-g-t] i915/gem_exec_reloc: Add SIGINT injection Chris Wilson 2020-01-29 22:28 ` Antonio Argenziano 2020-01-29 23:35 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork @ 2020-01-30 10:33 ` Patchwork 2020-02-01 9:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-02-01 14:03 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-01-30 10:33 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_exec_reloc: Add SIGINT injection URL : https://patchwork.freedesktop.org/series/72745/ State : success == Summary == CI Bug Log - changes from IGT_5405 -> IGTPW_4036 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html Known issues ------------ Here are the changes found in IGTPW_4036 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-threads: - fi-byt-j1900: [PASS][1] -> [TIMEOUT][2] ([fdo#112271] / [i915#816]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-j1900/igt@gem_close_race@basic-threads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-byt-j1900/igt@gem_close_race@basic-threads.html #### Possible fixes #### * igt@gem_close_race@basic-threads: - fi-hsw-peppy: [TIMEOUT][3] ([fdo#112271]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-hsw-peppy/igt@gem_close_race@basic-threads.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-hsw-peppy/igt@gem_close_race@basic-threads.html * igt@i915_selftest@live_execlists: - fi-skl-guc: [INCOMPLETE][5] -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-skl-guc/igt@i915_selftest@live_execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-skl-guc/igt@i915_selftest@live_execlists.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][7] ([fdo#111096] / [i915#323]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Warnings #### * igt@gem_exec_parallel@fds: - fi-byt-n2820: [FAIL][9] ([i915#694]) -> [TIMEOUT][10] ([fdo#112271]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-n2820/igt@gem_exec_parallel@fds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-byt-n2820/igt@gem_exec_parallel@fds.html * igt@i915_selftest@live_blt: - fi-hsw-4770: [DMESG-FAIL][11] ([i915#725]) -> [DMESG-FAIL][12] ([i915#553] / [i915#725]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-hsw-4770/igt@i915_selftest@live_blt.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/fi-hsw-4770/igt@i915_selftest@live_blt.html [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725 [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816 Participating hosts (46 -> 46) ------------------------------ Additional (6): fi-bdw-gvtdvm fi-snb-2520m fi-gdg-551 fi-elk-e7500 fi-bsw-nick fi-skl-6700k2 Missing (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-kbl-7560u fi-tgl-y fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5405 -> IGTPW_4036 CI-20190529: 20190529 CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4036: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html IGT_5405: add505d102f5d27e38cb4d926524664e161c2a1a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_exec_reloc@cpu-gtt-interruptible +igt@gem_exec_reloc@cpu-interruptible +igt@gem_exec_reloc@cpu-read-interruptible +igt@gem_exec_reloc@cpu-wc-interruptible +igt@gem_exec_reloc@gtt-cpu-interruptible +igt@gem_exec_reloc@gtt-interruptible +igt@gem_exec_reloc@gtt-read-interruptible +igt@gem_exec_reloc@gtt-wc-interruptible +igt@gem_exec_reloc@range-interruptible +igt@gem_exec_reloc@wc-cpu-interruptible +igt@gem_exec_reloc@wc-gtt-interruptible +igt@gem_exec_reloc@wc-interruptible +igt@gem_exec_reloc@wc-read-interruptible +igt@gem_exec_reloc@write-cpu-interruptible +igt@gem_exec_reloc@write-gtt-interruptible +igt@gem_exec_reloc@write-read-interruptible +igt@gem_exec_reloc@write-wc-interruptible == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 22:24 [igt-dev] [PATCH i-g-t] i915/gem_exec_reloc: Add SIGINT injection Chris Wilson ` (2 preceding siblings ...) 2020-01-30 10:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2020-02-01 9:04 ` Patchwork 2020-02-01 14:03 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-02-01 9:04 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_exec_reloc: Add SIGINT injection URL : https://patchwork.freedesktop.org/series/72745/ State : failure == Summary == CI Bug Log - changes from IGT_5405_full -> IGTPW_4036_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_4036_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_4036_full, 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/IGTPW_4036/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_4036_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_flush@basic-uc-prw-default: - shard-snb: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-snb6/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_ringfill@basic-default-hang: - shard-iclb: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb5/igt@gem_ringfill@basic-default-hang.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb8/igt@gem_ringfill@basic-default-hang.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-iclb: [PASS][4] -> [TIMEOUT][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html Known issues ------------ Here are the changes found in IGTPW_4036_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_caching@reads: - shard-hsw: [PASS][6] -> [FAIL][7] ([i915#694]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw1/igt@gem_caching@reads.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw2/igt@gem_caching@reads.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][8] -> [SKIP][9] ([fdo#110854]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@gem_exec_balancer@smoke.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb7/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#112146]) +3 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#109276]) +24 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_tiled_blits@normal: - shard-hsw: [PASS][14] -> [FAIL][15] ([i915#818]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw4/igt@gem_tiled_blits@normal.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw8/igt@gem_tiled_blits@normal.html * igt@i915_selftest@live_execlists: - shard-iclb: [PASS][16] -> [INCOMPLETE][17] ([i915#140]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb7/igt@i915_selftest@live_execlists.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb4/igt@i915_selftest@live_execlists.html * igt@kms_flip@2x-flip-vs-panning-vs-hang-interruptible: - shard-glk: [PASS][18] -> [INCOMPLETE][19] ([CI#80] / [i915#58] / [k.org#198133]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-glk9/igt@kms_flip@2x-flip-vs-panning-vs-hang-interruptible.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-glk7/igt@kms_flip@2x-flip-vs-panning-vs-hang-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-apl: [PASS][20] -> [FAIL][21] ([i915#79]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl1/igt@kms_flip@flip-vs-expired-vblank.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-apl8/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][22] -> [DMESG-WARN][23] ([i915#180]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][24] -> [DMESG-WARN][25] ([i915#180]) +4 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][26] -> [SKIP][27] ([fdo#109441]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_setmode@basic: - shard-apl: [PASS][28] -> [FAIL][29] ([i915#31]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl4/igt@kms_setmode@basic.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-apl2/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-kbl: [PASS][30] -> [INCOMPLETE][31] ([fdo#103665]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@perf@disabled-read-error: - shard-iclb: [PASS][32] -> [DMESG-WARN][33] ([i915#645]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@perf@disabled-read-error.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb3/igt@perf@disabled-read-error.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][34] -> [SKIP][35] ([fdo#112080]) +16 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@perf_pmu@busy-no-semaphores-vcs1.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html * igt@prime_mmap_coherency@ioctl-errors: - shard-hsw: [PASS][36] -> [FAIL][37] ([i915#831]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw5/igt@prime_mmap_coherency@ioctl-errors.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw6/igt@prime_mmap_coherency@ioctl-errors.html #### Possible fixes #### * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][38] ([fdo#112080]) -> [PASS][39] +11 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb7/igt@gem_busy@busy-vcs1.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb2/igt@gem_busy@busy-vcs1.html * igt@gem_busy@close-race: - shard-hsw: [TIMEOUT][40] ([fdo#112271] / [i915#1084]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw1/igt@gem_busy@close-race.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw1/igt@gem_busy@close-race.html * igt@gem_exec_schedule@pi-shared-iova-bsd2: - shard-iclb: [SKIP][42] ([fdo#109276]) -> [PASS][43] +11 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb8/igt@gem_exec_schedule@pi-shared-iova-bsd2.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb1/igt@gem_exec_schedule@pi-shared-iova-bsd2.html * igt@gem_exec_schedule@pi-userfault-bsd: - shard-iclb: [SKIP][44] ([i915#677]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb2/igt@gem_exec_schedule@pi-userfault-bsd.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb7/igt@gem_exec_schedule@pi-userfault-bsd.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [SKIP][46] ([fdo#112146]) -> [PASS][47] +7 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@i915_selftest@live_blt: - shard-hsw: [DMESG-FAIL][48] ([i915#563]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw5/igt@i915_selftest@live_blt.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw6/igt@i915_selftest@live_blt.html * igt@kms_atomic_transition@1x-modeset-transitions: - shard-hsw: [DMESG-WARN][50] ([i915#44]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw5/igt@kms_atomic_transition@1x-modeset-transitions.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw2/igt@kms_atomic_transition@1x-modeset-transitions.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [DMESG-WARN][52] ([i915#180]) -> [PASS][53] +3 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-tglb: [SKIP][54] ([i915#668]) -> [PASS][55] +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [DMESG-WARN][56] ([i915#180]) -> [PASS][57] +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][58] ([fdo#109441]) -> [PASS][59] +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@perf@gen12-mi-rpc: - shard-tglb: [TIMEOUT][60] ([fdo#112271] / [i915#1085] / [i915#472]) -> [PASS][61] [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-tglb2/igt@perf@gen12-mi-rpc.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-tglb3/igt@perf@gen12-mi-rpc.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][62] ([fdo#112080]) -> [FAIL][63] ([IGT#28]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb5/igt@gem_ctx_isolation@vcs1-nonpriv.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_eio@in-flight-contexts-immediate: - shard-kbl: [INCOMPLETE][64] ([CI#80] / [fdo#103665]) -> [TIMEOUT][65] ([fdo#112271]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl4/igt@gem_eio@in-flight-contexts-immediate.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-kbl6/igt@gem_eio@in-flight-contexts-immediate.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: [SKIP][66] ([i915#468]) -> [FAIL][67] ([i915#454]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-tglb5/igt@i915_pm_dc@dc6-dpms.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][68] ([fdo#109349]) -> [DMESG-WARN][69] ([fdo#107724]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80 [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#1084]: https://gitlab.freedesktop.org/drm/intel/issues/1084 [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085 [i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#472]: https://gitlab.freedesktop.org/drm/intel/issues/472 [i915#563]: https://gitlab.freedesktop.org/drm/intel/issues/563 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#645]: https://gitlab.freedesktop.org/drm/intel/issues/645 [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818 [i915#831]: https://gitlab.freedesktop.org/drm/intel/issues/831 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5405 -> IGTPW_4036 CI-20190529: 20190529 CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4036: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html IGT_5405: add505d102f5d27e38cb4d926524664e161c2a1a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_exec_reloc: Add SIGINT injection 2020-01-29 22:24 [igt-dev] [PATCH i-g-t] i915/gem_exec_reloc: Add SIGINT injection Chris Wilson ` (3 preceding siblings ...) 2020-02-01 9:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2020-02-01 14:03 ` Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2020-02-01 14:03 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: i915/gem_exec_reloc: Add SIGINT injection URL : https://patchwork.freedesktop.org/series/72745/ State : success == Summary == CI Bug Log - changes from IGT_5405_full -> IGTPW_4036_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html Known issues ------------ Here are the changes found in IGTPW_4036_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_caching@reads: - shard-hsw: [PASS][1] -> [FAIL][2] ([i915#694]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw1/igt@gem_caching@reads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw2/igt@gem_caching@reads.html * igt@gem_exec_balancer@smoke: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#110854]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@gem_exec_balancer@smoke.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb7/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#112146]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb4/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@gem_exec_schedule@preempt-queue-bsd1: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +24 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb7/igt@gem_exec_schedule@preempt-queue-bsd1.html * igt@gem_ringfill@basic-default-hang: - shard-iclb: [PASS][9] -> [INCOMPLETE][10] ([i915#140]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb5/igt@gem_ringfill@basic-default-hang.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb8/igt@gem_ringfill@basic-default-hang.html * igt@gem_tiled_blits@normal: - shard-hsw: [PASS][11] -> [FAIL][12] ([i915#818]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw4/igt@gem_tiled_blits@normal.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw8/igt@gem_tiled_blits@normal.html * igt@kms_flip@2x-flip-vs-panning-vs-hang-interruptible: - shard-glk: [PASS][13] -> [INCOMPLETE][14] ([CI#80] / [i915#58] / [k.org#198133]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-glk9/igt@kms_flip@2x-flip-vs-panning-vs-hang-interruptible.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-glk7/igt@kms_flip@2x-flip-vs-panning-vs-hang-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#79]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl1/igt@kms_flip@flip-vs-expired-vblank.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-apl8/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes: - shard-apl: [PASS][17] -> [DMESG-WARN][18] ([i915#180]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: [PASS][19] -> [DMESG-WARN][20] ([i915#180]) +4 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-kbl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [PASS][21] -> [SKIP][22] ([fdo#109441]) +2 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb6/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_setmode@basic: - shard-apl: [PASS][23] -> [FAIL][24] ([i915#31]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl4/igt@kms_setmode@basic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-apl2/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-kbl: [PASS][25] -> [INCOMPLETE][26] ([fdo#103665]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-iclb: [PASS][27] -> [TIMEOUT][28] ([i915#1096]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@perf@disabled-read-error: - shard-iclb: [PASS][29] -> [DMESG-WARN][30] ([i915#645]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@perf@disabled-read-error.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb3/igt@perf@disabled-read-error.html * igt@perf_pmu@busy-no-semaphores-vcs1: - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#112080]) +16 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@perf_pmu@busy-no-semaphores-vcs1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb8/igt@perf_pmu@busy-no-semaphores-vcs1.html * igt@prime_mmap_coherency@ioctl-errors: - shard-hsw: [PASS][33] -> [FAIL][34] ([i915#831]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw5/igt@prime_mmap_coherency@ioctl-errors.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw6/igt@prime_mmap_coherency@ioctl-errors.html #### Possible fixes #### * igt@gem_busy@busy-vcs1: - shard-iclb: [SKIP][35] ([fdo#112080]) -> [PASS][36] +11 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb7/igt@gem_busy@busy-vcs1.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb2/igt@gem_busy@busy-vcs1.html * igt@gem_busy@close-race: - shard-hsw: [TIMEOUT][37] ([fdo#112271] / [i915#1084]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw1/igt@gem_busy@close-race.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw1/igt@gem_busy@close-race.html * igt@gem_exec_schedule@pi-shared-iova-bsd2: - shard-iclb: [SKIP][39] ([fdo#109276]) -> [PASS][40] +11 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb8/igt@gem_exec_schedule@pi-shared-iova-bsd2.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb1/igt@gem_exec_schedule@pi-shared-iova-bsd2.html * igt@gem_exec_schedule@pi-userfault-bsd: - shard-iclb: [SKIP][41] ([i915#677]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb2/igt@gem_exec_schedule@pi-userfault-bsd.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb7/igt@gem_exec_schedule@pi-userfault-bsd.html * igt@gem_exec_schedule@preemptive-hang-bsd: - shard-iclb: [SKIP][43] ([fdo#112146]) -> [PASS][44] +7 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb3/igt@gem_exec_schedule@preemptive-hang-bsd.html * igt@i915_selftest@live_blt: - shard-hsw: [DMESG-FAIL][45] ([i915#563]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw5/igt@i915_selftest@live_blt.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw6/igt@i915_selftest@live_blt.html * igt@kms_atomic_transition@1x-modeset-transitions: - shard-hsw: [DMESG-WARN][47] ([i915#44]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw5/igt@kms_atomic_transition@1x-modeset-transitions.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-hsw2/igt@kms_atomic_transition@1x-modeset-transitions.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-apl: [DMESG-WARN][49] ([i915#180]) -> [PASS][50] +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-tglb: [SKIP][51] ([i915#668]) -> [PASS][52] +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [DMESG-WARN][53] ([i915#180]) -> [PASS][54] +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][55] ([fdo#109441]) -> [PASS][56] +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@perf@gen12-mi-rpc: - shard-tglb: [TIMEOUT][57] ([fdo#112271] / [i915#1085] / [i915#472]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-tglb2/igt@perf@gen12-mi-rpc.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-tglb3/igt@perf@gen12-mi-rpc.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [SKIP][59] ([fdo#112080]) -> [FAIL][60] ([IGT#28]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb5/igt@gem_ctx_isolation@vcs1-nonpriv.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_eio@in-flight-contexts-immediate: - shard-kbl: [INCOMPLETE][61] ([CI#80] / [fdo#103665]) -> [TIMEOUT][62] ([fdo#112271]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl4/igt@gem_eio@in-flight-contexts-immediate.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-kbl6/igt@gem_eio@in-flight-contexts-immediate.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: [SKIP][63] ([i915#468]) -> [FAIL][64] ([i915#454]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-tglb5/igt@i915_pm_dc@dc6-dpms.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: [SKIP][65] ([fdo#109349]) -> [DMESG-WARN][66] ([fdo#107724]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80 [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271 [i915#1084]: https://gitlab.freedesktop.org/drm/intel/issues/1084 [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085 [i915#1096]: https://gitlab.freedesktop.org/drm/intel/issues/1096 [i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468 [i915#472]: https://gitlab.freedesktop.org/drm/intel/issues/472 [i915#563]: https://gitlab.freedesktop.org/drm/intel/issues/563 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#645]: https://gitlab.freedesktop.org/drm/intel/issues/645 [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818 [i915#831]: https://gitlab.freedesktop.org/drm/intel/issues/831 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5405 -> IGTPW_4036 CI-20190529: 20190529 CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4036: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html IGT_5405: add505d102f5d27e38cb4d926524664e161c2a1a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4036/index.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2020-02-01 14:03 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-01-29 22:24 [igt-dev] [PATCH i-g-t] i915/gem_exec_reloc: Add SIGINT injection Chris Wilson 2020-01-29 22:28 ` Antonio Argenziano 2020-01-29 23:35 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork 2020-01-29 23:55 ` Antonio Argenziano 2020-01-29 23:57 ` Chris Wilson 2020-01-30 0:03 ` Antonio Argenziano 2020-01-30 10:32 ` Petri Latvala 2020-01-30 10:33 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2020-02-01 9:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2020-02-01 14:03 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox