* [Intel-gfx] [PATCH i-g-t] igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep
@ 2019-05-23 9:49 Chris Wilson
2019-05-23 10:08 ` [igt-dev] " Mika Kuoppala
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Chris Wilson @ 2019-05-23 9:49 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
These tests are not intended to exercise runtime pm, but the device
going to sleep in the middle of these tests can significantly slow them
down as the GTT mmapping is torn down and must be rebuilt. This can be a
major nuisance if the device autosuspends many times a second.
These tests differ from typical applications as they are not doing any
rendering or utilizing the display which would ordinarily keep the
device awake.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
tests/i915/gem_fence_thrash.c | 17 +++++++++++++++++
tests/i915/gem_mmap_gtt.c | 15 ++++++++++++++-
2 files changed, 31 insertions(+), 1 deletion(-)
diff --git a/tests/i915/gem_fence_thrash.c b/tests/i915/gem_fence_thrash.c
index 2d7fb2ff8..770e9cb98 100644
--- a/tests/i915/gem_fence_thrash.c
+++ b/tests/i915/gem_fence_thrash.c
@@ -232,10 +232,27 @@ static int run_test(int threads_per_fence, void *f, int tiling,
return 0;
}
+static int wakeref_open(int device)
+{
+ int dir, fd;
+
+ dir = igt_debugfs_dir(device);
+ fd = openat(dir, "i915_wakeref_user", O_RDONLY);
+ close(dir);
+
+ return fd;
+}
+
igt_main
{
igt_skip_on_simulation();
+ igt_fixture {
+ int fd = drm_open_driver(DRIVER_INTEL);
+ wakeref_open(fd);
+ close(fd);
+ }
+
igt_subtest("bo-write-verify-none")
igt_assert(run_test(0, bo_write_verify, I915_TILING_NONE, 80) == 0);
diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c
index 9a670f030..4b709f81e 100644
--- a/tests/i915/gem_mmap_gtt.c
+++ b/tests/i915/gem_mmap_gtt.c
@@ -873,6 +873,17 @@ static int mmap_ioctl(int i915, struct drm_i915_gem_mmap_gtt *arg)
return err;
}
+static int wakeref_open(int device)
+{
+ int dir, fd;
+
+ dir = igt_debugfs_dir(device);
+ fd = openat(dir, "i915_wakeref_user", O_RDONLY);
+ close(dir);
+
+ return fd;
+}
+
int fd;
igt_main
@@ -880,8 +891,10 @@ igt_main
if (igt_run_in_simulation())
OBJECT_SIZE = 1 * 1024 * 1024;
- igt_fixture
+ igt_fixture {
fd = drm_open_driver(DRIVER_INTEL);
+ wakeref_open(fd);
+ }
igt_subtest("bad-object") {
uint32_t real_handle = gem_create(fd, 4096);
--
2.20.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [igt-dev] [PATCH i-g-t] igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep 2019-05-23 9:49 [Intel-gfx] [PATCH i-g-t] igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep Chris Wilson @ 2019-05-23 10:08 ` Mika Kuoppala 2019-05-23 10:17 ` Chris Wilson 2019-05-23 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-05-24 11:17 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Mika Kuoppala @ 2019-05-23 10:08 UTC (permalink / raw) To: Chris Wilson, intel-gfx; +Cc: igt-dev Chris Wilson <chris@chris-wilson.co.uk> writes: > These tests are not intended to exercise runtime pm, but the device > going to sleep in the middle of these tests can significantly slow them > down as the GTT mmapping is torn down and must be rebuilt. This can be a > major nuisance if the device autosuspends many times a second. > > These tests differ from typical applications as they are not doing any > rendering or utilizing the display which would ordinarily keep the > device awake. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > --- > tests/i915/gem_fence_thrash.c | 17 +++++++++++++++++ > tests/i915/gem_mmap_gtt.c | 15 ++++++++++++++- > 2 files changed, 31 insertions(+), 1 deletion(-) > > diff --git a/tests/i915/gem_fence_thrash.c b/tests/i915/gem_fence_thrash.c > index 2d7fb2ff8..770e9cb98 100644 > --- a/tests/i915/gem_fence_thrash.c > +++ b/tests/i915/gem_fence_thrash.c > @@ -232,10 +232,27 @@ static int run_test(int threads_per_fence, void *f, int tiling, > return 0; > } > > +static int wakeref_open(int device) > +{ > + int dir, fd; > + > + dir = igt_debugfs_dir(device); > + fd = openat(dir, "i915_wakeref_user", O_RDONLY); I was seeking the corresponding debugfs entry. However it seems forcewake user takes the pm ref and you want to piggyback on that. also igt_assert(fd != -1) ? -Mika > + close(dir); > + > + return fd; > +} > + > igt_main > { > igt_skip_on_simulation(); > > + igt_fixture { > + int fd = drm_open_driver(DRIVER_INTEL); > + wakeref_open(fd); > + close(fd); > + } > + > igt_subtest("bo-write-verify-none") > igt_assert(run_test(0, bo_write_verify, I915_TILING_NONE, 80) == 0); > > diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c > index 9a670f030..4b709f81e 100644 > --- a/tests/i915/gem_mmap_gtt.c > +++ b/tests/i915/gem_mmap_gtt.c > @@ -873,6 +873,17 @@ static int mmap_ioctl(int i915, struct drm_i915_gem_mmap_gtt *arg) > return err; > } > > +static int wakeref_open(int device) > +{ > + int dir, fd; > + > + dir = igt_debugfs_dir(device); > + fd = openat(dir, "i915_wakeref_user", O_RDONLY); > + close(dir); > + > + return fd; > +} > + > int fd; > > igt_main > @@ -880,8 +891,10 @@ igt_main > if (igt_run_in_simulation()) > OBJECT_SIZE = 1 * 1024 * 1024; > > - igt_fixture > + igt_fixture { > fd = drm_open_driver(DRIVER_INTEL); > + wakeref_open(fd); > + } > > igt_subtest("bad-object") { > uint32_t real_handle = gem_create(fd, 4096); > -- > 2.20.1 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep 2019-05-23 10:08 ` [igt-dev] " Mika Kuoppala @ 2019-05-23 10:17 ` Chris Wilson 0 siblings, 0 replies; 5+ messages in thread From: Chris Wilson @ 2019-05-23 10:17 UTC (permalink / raw) To: Mika Kuoppala, intel-gfx; +Cc: igt-dev Quoting Mika Kuoppala (2019-05-23 11:08:43) > Chris Wilson <chris@chris-wilson.co.uk> writes: > > > These tests are not intended to exercise runtime pm, but the device > > going to sleep in the middle of these tests can significantly slow them > > down as the GTT mmapping is torn down and must be rebuilt. This can be a > > major nuisance if the device autosuspends many times a second. > > > > These tests differ from typical applications as they are not doing any > > rendering or utilizing the display which would ordinarily keep the > > device awake. > > > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > > --- > > tests/i915/gem_fence_thrash.c | 17 +++++++++++++++++ > > tests/i915/gem_mmap_gtt.c | 15 ++++++++++++++- > > 2 files changed, 31 insertions(+), 1 deletion(-) > > > > diff --git a/tests/i915/gem_fence_thrash.c b/tests/i915/gem_fence_thrash.c > > index 2d7fb2ff8..770e9cb98 100644 > > --- a/tests/i915/gem_fence_thrash.c > > +++ b/tests/i915/gem_fence_thrash.c > > @@ -232,10 +232,27 @@ static int run_test(int threads_per_fence, void *f, int tiling, > > return 0; > > } > > > > +static int wakeref_open(int device) > > +{ > > + int dir, fd; > > + > > + dir = igt_debugfs_dir(device); > > + fd = openat(dir, "i915_wakeref_user", O_RDONLY); > > I was seeking the corresponding debugfs entry. However > it seems forcewake user takes the pm ref and you want to piggyback on > that. It's outright cheating. But it's much simpler than the patches to add an autosuspend timeout for ggtt access. And should help show if this is the problem. -Chris _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep 2019-05-23 9:49 [Intel-gfx] [PATCH i-g-t] igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep Chris Wilson 2019-05-23 10:08 ` [igt-dev] " Mika Kuoppala @ 2019-05-23 12:05 ` Patchwork 2019-05-24 11:17 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2019-05-23 12:05 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep URL : https://patchwork.freedesktop.org/series/61020/ State : success == Summary == CI Bug Log - changes from CI_DRM_6129 -> IGTPW_3043 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/61020/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3043 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live_hangcheck: - fi-skl-iommu: [PASS][1] -> [INCOMPLETE][2] ([fdo#108602] / [fdo#108744]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/fi-skl-iommu/igt@i915_selftest@live_hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/fi-skl-iommu/igt@i915_selftest@live_hangcheck.html * igt@i915_selftest@live_objects: - fi-snb-2600: [PASS][3] -> [INCOMPLETE][4] ([fdo#105411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/fi-snb-2600/igt@i915_selftest@live_objects.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/fi-snb-2600/igt@i915_selftest@live_objects.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [PASS][5] -> [FAIL][6] ([fdo#109485]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html #### Possible fixes #### * igt@gem_ctx_create@basic-files: - {fi-icl-dsi}: [INCOMPLETE][7] ([fdo#107713] / [fdo#109100]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/fi-icl-dsi/igt@gem_ctx_create@basic-files.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/fi-icl-dsi/igt@gem_ctx_create@basic-files.html * igt@kms_frontbuffer_tracking@basic: - fi-hsw-peppy: [DMESG-WARN][9] ([fdo#102614]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html #### Warnings #### * igt@i915_selftest@live_hangcheck: - fi-apl-guc: [INCOMPLETE][11] ([fdo#103927] / [fdo#110624]) -> [DMESG-FAIL][12] ([fdo#110620]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/fi-apl-guc/igt@i915_selftest@live_hangcheck.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/fi-apl-guc/igt@i915_selftest@live_hangcheck.html * igt@runner@aborted: - fi-apl-guc: [FAIL][13] ([fdo#110624]) -> [FAIL][14] ([fdo#110622]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/fi-apl-guc/igt@runner@aborted.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/fi-apl-guc/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#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614 [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569 [fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602 [fdo#108744]: https://bugs.freedesktop.org/show_bug.cgi?id=108744 [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485 [fdo#110620]: https://bugs.freedesktop.org/show_bug.cgi?id=110620 [fdo#110622]: https://bugs.freedesktop.org/show_bug.cgi?id=110622 [fdo#110624]: https://bugs.freedesktop.org/show_bug.cgi?id=110624 Participating hosts (53 -> 46) ------------------------------ Missing (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus Build changes ------------- * IGT: IGT_5007 -> IGTPW_3043 CI_DRM_6129: e5d5516eb302ea0f83ea3d9014385f88ed850d53 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3043: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/ IGT_5007: ed4a5515109ee83556f505a9519e33acd9518279 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep 2019-05-23 9:49 [Intel-gfx] [PATCH i-g-t] igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep Chris Wilson 2019-05-23 10:08 ` [igt-dev] " Mika Kuoppala 2019-05-23 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-05-24 11:17 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2019-05-24 11:17 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev == Series Details == Series: igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep URL : https://patchwork.freedesktop.org/series/61020/ State : success == Summary == CI Bug Log - changes from CI_DRM_6129_full -> IGTPW_3043_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/61020/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3043_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_pwrite@big-cpu-backwards: - shard-glk: [PASS][1] -> [INCOMPLETE][2] ([fdo#103359] / [k.org#198133]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-glk8/igt@gem_pwrite@big-cpu-backwards.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-glk6/igt@gem_pwrite@big-cpu-backwards.html * igt@gem_tiled_swapping@non-threaded: - shard-hsw: [PASS][3] -> [FAIL][4] ([fdo#108686]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-hsw8/igt@gem_tiled_swapping@non-threaded.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-hsw6/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-kbl: [PASS][5] -> [SKIP][6] ([fdo#109271]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-kbl3/igt@i915_pm_rc6_residency@rc6-accuracy.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-kbl2/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@kms_flip@flip-vs-suspend: - shard-hsw: [PASS][7] -> [INCOMPLETE][8] ([fdo#103540]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-hsw7/igt@kms_flip@flip-vs-suspend.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-hsw1/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-glk: [PASS][9] -> [FAIL][10] ([fdo#103167]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-glk9/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-glk8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html - shard-apl: [PASS][11] -> [FAIL][12] ([fdo#103167]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-apl2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-apl4/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html - shard-kbl: [PASS][13] -> [FAIL][14] ([fdo#103167]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-iclb: [PASS][15] -> [FAIL][16] ([fdo#103167]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-apl: [PASS][17] -> [DMESG-WARN][18] ([fdo#108566]) +3 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [PASS][19] -> [SKIP][20] ([fdo#109441]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-iclb7/igt@kms_psr@psr2_sprite_mmap_gtt.html #### Possible fixes #### * igt@gem_exec_whisper@normal: - shard-glk: [INCOMPLETE][21] ([fdo#103359] / [k.org#198133]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-glk5/igt@gem_exec_whisper@normal.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-glk3/igt@gem_exec_whisper@normal.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: [DMESG-WARN][23] ([fdo#108566]) -> [PASS][24] +4 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-apl5/igt@gem_workarounds@suspend-resume-context.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-apl1/igt@gem_workarounds@suspend-resume-context.html * {igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding}: - shard-apl: [INCOMPLETE][25] ([fdo#103927]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-apl1/igt@kms_cursor_crc@pipe-a-cursor-128x128-sliding.html * igt@kms_cursor_legacy@all-pipes-single-bo: - shard-snb: [INCOMPLETE][27] ([fdo#105411]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-snb1/igt@kms_cursor_legacy@all-pipes-single-bo.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-snb2/igt@kms_cursor_legacy@all-pipes-single-bo.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-hsw: [SKIP][29] ([fdo#109271]) -> [PASS][30] +23 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-hsw5/igt@kms_flip@2x-plain-flip-interruptible.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-hsw7/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_frontbuffer_tracking@fbc-modesetfrombusy: - shard-glk: [FAIL][31] ([fdo#103167]) -> [PASS][32] +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-glk5/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-glk2/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbc-tilingchange: - shard-apl: [FAIL][33] ([fdo#103167]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-apl6/igt@kms_frontbuffer_tracking@fbc-tilingchange.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-apl1/igt@kms_frontbuffer_tracking@fbc-tilingchange.html - shard-kbl: [FAIL][35] ([fdo#103167]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-tilingchange.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-tilingchange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-iclb: [FAIL][37] ([fdo#103167]) -> [PASS][38] +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_psr@no_drrs: - shard-iclb: [FAIL][39] ([fdo#108341]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-iclb1/igt@kms_psr@no_drrs.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-iclb5/igt@kms_psr@no_drrs.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-iclb: [INCOMPLETE][41] ([fdo#107713] / [fdo#110026]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-iclb5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-iclb1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html #### Warnings #### * igt@gem_mmap_gtt@forked-big-copy-odd: - shard-iclb: [INCOMPLETE][43] ([fdo#107713] / [fdo#109100]) -> [TIMEOUT][44] ([fdo#109673]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-iclb8/igt@gem_mmap_gtt@forked-big-copy-odd.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-iclb3/igt@gem_mmap_gtt@forked-big-copy-odd.html * igt@gem_mmap_gtt@forked-big-copy-xy: - shard-iclb: [TIMEOUT][45] ([fdo#109673]) -> [INCOMPLETE][46] ([fdo#107713] / [fdo#109100]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6129/shard-iclb2/igt@gem_mmap_gtt@forked-big-copy-xy.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/shard-iclb7/igt@gem_mmap_gtt@forked-big-copy-xy.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359 [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686 [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673 [fdo#110026]: https://bugs.freedesktop.org/show_bug.cgi?id=110026 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * IGT: IGT_5007 -> IGTPW_3043 * Piglit: piglit_4509 -> None CI_DRM_6129: e5d5516eb302ea0f83ea3d9014385f88ed850d53 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3043: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/ IGT_5007: ed4a5515109ee83556f505a9519e33acd9518279 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3043/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-05-24 11:17 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-05-23 9:49 [Intel-gfx] [PATCH i-g-t] igt/gem_fence_thrash, gem_mmap_gtt: Don't let the device sleep Chris Wilson 2019-05-23 10:08 ` [igt-dev] " Mika Kuoppala 2019-05-23 10:17 ` Chris Wilson 2019-05-23 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-05-24 11:17 ` [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