* [igt-dev] [PATCH i-g-t] benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag
@ 2021-05-21 16:46 Zbigniew Kempczyński
2021-05-21 17:36 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Zbigniew Kempczyński @ 2021-05-21 16:46 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala, Tvrtko Ursulin
As flag I915_USERPTR_UNSYNCHRONIZED is not supported by the i915 anymore
remove tests which tries to use it in the benchmark.
Remove benchmark from meson libdrm depending code as it is a little bit
confusing.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Petri Latvala <petri.latvala@intel.com>
---
benchmarks/gem_userptr_benchmark.c | 54 +++++++-----------------------
benchmarks/meson.build | 2 +-
2 files changed, 14 insertions(+), 42 deletions(-)
diff --git a/benchmarks/gem_userptr_benchmark.c b/benchmarks/gem_userptr_benchmark.c
index d7a495209..a85997b86 100644
--- a/benchmarks/gem_userptr_benchmark.c
+++ b/benchmarks/gem_userptr_benchmark.c
@@ -57,20 +57,10 @@
#define PAGE_SIZE 4096
#endif
-static uint32_t userptr_flags = I915_USERPTR_UNSYNCHRONIZED;
+static uint32_t userptr_flags = 0;
#define BO_SIZE (65536)
-static void gem_userptr_test_unsynchronized(void)
-{
- userptr_flags = I915_USERPTR_UNSYNCHRONIZED;
-}
-
-static void gem_userptr_test_synchronized(void)
-{
- userptr_flags = 0;
-}
-
static void **handle_ptr_map;
static unsigned int num_handle_ptr_map;
@@ -124,14 +114,10 @@ static int has_userptr(int fd)
{
uint32_t handle = 0;
void *ptr;
- uint32_t oldflags;
int ret;
assert(posix_memalign(&ptr, PAGE_SIZE, PAGE_SIZE) == 0);
- oldflags = userptr_flags;
- gem_userptr_test_unsynchronized();
- ret = __gem_userptr(fd, ptr, PAGE_SIZE, 0, userptr_flags, &handle);
- userptr_flags = oldflags;
+ ret = __gem_userptr(fd, ptr, PAGE_SIZE, 0, 0, &handle);
if (ret != 0) {
free(ptr);
return 0;
@@ -464,32 +450,18 @@ static void test_userptr(int fd)
test_multiple(fd, 100, 1);
}
-int main(int argc, char **argv)
+igt_main
{
int fd = -1, ret;
- igt_subtest_init(argc, argv);
-
- fd = drm_open_driver(DRIVER_INTEL);
- igt_assert(fd >= 0);
-
- ret = has_userptr(fd);
- igt_skip_on_f(ret == 0, "No userptr support - %s (%d)\n",
- strerror(errno), ret);
-
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_INTEL);
+ igt_assert(fd >= 0);
- gem_userptr_test_unsynchronized();
-
- igt_subtest("userptr-unsync")
- test_userptr(fd);
-
- igt_subtest("userptr-impact-unsync")
- test_impact(fd, "unsync-");
-
- igt_subtest("userptr-impact-unsync-overlap")
- test_impact_overlap(fd, "unsync-");
-
- gem_userptr_test_synchronized();
+ ret = has_userptr(fd);
+ igt_skip_on_f(ret == 0, "No userptr support - %s (%d)\n",
+ strerror(errno), ret);
+ }
igt_subtest("userptr-sync")
test_userptr(fd);
@@ -500,7 +472,7 @@ int main(int argc, char **argv)
igt_subtest("userptr-impact-sync-overlap")
test_impact_overlap(fd, "sync-");
- igt_exit();
-
- return 0;
+ igt_fixture {
+ close(fd);
+ }
}
diff --git a/benchmarks/meson.build b/benchmarks/meson.build
index bede51dce..98a08e25c 100644
--- a/benchmarks/meson.build
+++ b/benchmarks/meson.build
@@ -11,6 +11,7 @@ benchmark_progs = [
'gem_prw',
'gem_set_domain',
'gem_syslatency',
+ 'gem_userptr_benchmark',
'gem_wsim',
'kms_vblank',
'prime_lookup',
@@ -23,7 +24,6 @@ if libdrm_intel.found()
'intel_upload_blit_large_gtt',
'intel_upload_blit_large_map',
'intel_upload_blit_small',
- 'gem_userptr_benchmark',
]
endif
--
2.26.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag 2021-05-21 16:46 [igt-dev] [PATCH i-g-t] benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag Zbigniew Kempczyński @ 2021-05-21 17:36 ` Patchwork 2021-05-24 0:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2021-05-26 8:56 ` [igt-dev] [PATCH i-g-t] " Tvrtko Ursulin 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2021-05-21 17:36 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 8907 bytes --] == Series Details == Series: benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag URL : https://patchwork.freedesktop.org/series/90425/ State : success == Summary == CI Bug Log - changes from IGT_6092 -> IGTPW_5834 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/index.html Known issues ------------ Here are the changes found in IGTPW_5834 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_tiled_blits@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@gem_tiled_blits@basic.html * igt@i915_selftest@live@execlists: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][3] ([i915#2782] / [i915#3462] / [i915#794]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][4] ([i915#1886] / [i915#2291]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][5] -> [INCOMPLETE][6] ([i915#2782]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-snb-2600/igt@i915_selftest@live@hangcheck.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-bdw-5557u: NOTRUN -> [SKIP][7] ([fdo#109271]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-bdw-5557u/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271] / [fdo#111827]) +8 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-crc-fast: - fi-bdw-5557u: NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) +8 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-icl-u2: [PASS][10] -> [DMESG-WARN][11] ([i915#2203] / [i915#2868]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-kbl-soraka: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#533]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@runner@aborted: - fi-kbl-soraka: NOTRUN -> [FAIL][13] ([i915#1436] / [i915#2426] / [i915#3363]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@runner@aborted.html #### Possible fixes #### * igt@debugfs_test@read_all_entries: - fi-kbl-soraka: [DMESG-WARN][14] ([i915#1982] / [i915#262]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-kbl-soraka/igt@debugfs_test@read_all_entries.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@debugfs_test@read_all_entries.html * igt@gem_exec_suspend@basic-s0: - fi-kbl-soraka: [INCOMPLETE][16] ([i915#155]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html #### Warnings #### * igt@i915_selftest@live@execlists: - fi-cfl-8109u: [INCOMPLETE][18] ([i915#3462]) -> [DMESG-FAIL][19] ([i915#3462]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-cfl-8109u/igt@i915_selftest@live@execlists.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-cfl-8109u/igt@i915_selftest@live@execlists.html - fi-icl-u2: [DMESG-FAIL][20] ([i915#3462]) -> [INCOMPLETE][21] ([i915#2782] / [i915#3462]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-icl-u2/igt@i915_selftest@live@execlists.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-icl-u2/igt@i915_selftest@live@execlists.html * igt@runner@aborted: - fi-cfl-8700k: [FAIL][22] ([i915#3363]) -> [FAIL][23] ([i915#2426] / [i915#3363]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-cfl-8700k/igt@runner@aborted.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-cfl-8700k/igt@runner@aborted.html - fi-skl-6600u: [FAIL][24] ([i915#1436] / [i915#2426] / [i915#3363]) -> [FAIL][25] ([i915#1436] / [i915#3363]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-skl-6600u/igt@runner@aborted.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-skl-6600u/igt@runner@aborted.html - fi-cfl-8109u: [FAIL][26] ([i915#3363]) -> [FAIL][27] ([i915#2426] / [i915#3363]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-cfl-8109u/igt@runner@aborted.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-cfl-8109u/igt@runner@aborted.html - fi-icl-u2: [FAIL][28] ([i915#2426] / [i915#2782] / [i915#3363]) -> [FAIL][29] ([i915#2782] / [i915#3363]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-icl-u2/igt@runner@aborted.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-icl-u2/igt@runner@aborted.html - fi-glk-dsi: [FAIL][30] ([i915#3363] / [k.org#202321]) -> [FAIL][31] ([i915#2426] / [i915#3363] / [k.org#202321]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-glk-dsi/igt@runner@aborted.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-glk-dsi/igt@runner@aborted.html - fi-kbl-7500u: [FAIL][32] ([i915#1436] / [i915#3363]) -> [FAIL][33] ([i915#1436] / [i915#2426] / [i915#3363]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/fi-kbl-7500u/igt@runner@aborted.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/fi-kbl-7500u/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2203]: https://gitlab.freedesktop.org/drm/intel/issues/2203 [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262 [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782 [i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868 [i915#2932]: https://gitlab.freedesktop.org/drm/intel/issues/2932 [i915#2966]: https://gitlab.freedesktop.org/drm/intel/issues/2966 [i915#3277]: https://gitlab.freedesktop.org/drm/intel/issues/3277 [i915#3283]: https://gitlab.freedesktop.org/drm/intel/issues/3283 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794 [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321 Participating hosts (42 -> 38) ------------------------------ Missing (4): fi-dg1-1 fi-bsw-cyan fi-bdw-samus fi-hsw-4200u Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6092 -> IGTPW_5834 CI-20190529: 20190529 CI_DRM_10120: 9221d50d353487d2e10226318d89027037255621 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5834: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/index.html IGT_6092: d87087c321da07035d4f96d98c34e451b3ccb809 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/index.html [-- Attachment #1.2: Type: text/html, Size: 12106 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ 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 benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag 2021-05-21 16:46 [igt-dev] [PATCH i-g-t] benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag Zbigniew Kempczyński 2021-05-21 17:36 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2021-05-24 0:56 ` Patchwork 2021-05-26 8:56 ` [igt-dev] [PATCH i-g-t] " Tvrtko Ursulin 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2021-05-24 0:56 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30289 bytes --] == Series Details == Series: benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag URL : https://patchwork.freedesktop.org/series/90425/ State : success == Summary == CI Bug Log - changes from IGT_6092_full -> IGTPW_5834_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/index.html Known issues ------------ Here are the changes found in IGTPW_5834_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-clear: - shard-glk: [PASS][1] -> [FAIL][2] ([i915#1888] / [i915#3160]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-glk1/igt@gem_create@create-clear.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk7/igt@gem_create@create-clear.html * igt@gem_ctx_persistence@idempotent: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +6 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-snb5/igt@gem_ctx_persistence@idempotent.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][4] ([i915#3354]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-snb5/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-kbl: NOTRUN -> [FAIL][5] ([i915#2846]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: [PASS][6] -> [FAIL][7] ([i915#2842]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-tglb: NOTRUN -> [FAIL][8] ([i915#2842]) +5 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][9] ([i915#2842]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-bsd: - shard-tglb: NOTRUN -> [SKIP][10] ([fdo#109283]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb5/igt@gem_exec_params@no-bsd.html * igt@gem_exec_params@secure-non-master: - shard-tglb: NOTRUN -> [SKIP][11] ([fdo#112283]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_whisper@basic-queues-forked: - shard-glk: NOTRUN -> [DMESG-WARN][12] ([i915#118] / [i915#95]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk2/igt@gem_exec_whisper@basic-queues-forked.html * igt@gem_media_vme: - shard-tglb: NOTRUN -> [SKIP][13] ([i915#284]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-tglb: [PASS][14] -> [INCOMPLETE][15] ([i915#3468]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-tglb2/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb7/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent: - shard-kbl: NOTRUN -> [INCOMPLETE][16] ([i915#3468]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl2/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-apl: NOTRUN -> [INCOMPLETE][17] ([i915#3468]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl3/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: NOTRUN -> [INCOMPLETE][18] ([i915#3468]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html - shard-iclb: NOTRUN -> [INCOMPLETE][19] ([i915#3468]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_pread@exhaustion: - shard-tglb: NOTRUN -> [WARN][20] ([i915#2658]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][21] ([i915#2658]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk9/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][22] ([i915#2658]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-snb5/igt@gem_pwrite@basic-exhaustion.html - shard-kbl: NOTRUN -> [WARN][23] ([i915#2658]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@readonly-unsync: - shard-iclb: NOTRUN -> [SKIP][25] ([i915#3297]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglb: NOTRUN -> [SKIP][26] ([i915#3297]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb1/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [FAIL][27] ([i915#3318]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@gem_userptr_blits@vma-merge.html * igt@gen3_mixed_blits: - shard-tglb: NOTRUN -> [SKIP][28] ([fdo#109289]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb5/igt@gen3_mixed_blits.html * igt@gen3_render_mixed_blits: - shard-iclb: NOTRUN -> [SKIP][29] ([fdo#109289]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@gen3_render_mixed_blits.html * igt@gen9_exec_parse@bb-large: - shard-kbl: NOTRUN -> [FAIL][30] ([i915#3296]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-secure: - shard-tglb: NOTRUN -> [SKIP][31] ([fdo#112306]) +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb1/igt@gen9_exec_parse@bb-secure.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-kbl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#1937]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html - shard-apl: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#1937]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@screens-disabled: - shard-tglb: NOTRUN -> [SKIP][34] ([i915#1902]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb2/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglb: NOTRUN -> [SKIP][35] ([fdo#109289] / [fdo#111719]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#109506] / [i915#2411]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_selftest@live@execlists: - shard-glk: NOTRUN -> [DMESG-FAIL][37] ([i915#3462]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk1/igt@i915_selftest@live@execlists.html - shard-kbl: NOTRUN -> [INCOMPLETE][38] ([i915#2782] / [i915#3462] / [i915#794]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@i915_selftest@live@execlists.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#1769]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271]) +204 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111614]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_joiner@basic: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [i915#2705]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-kbl: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#2705]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl3/igt@kms_big_joiner@invalid-modeset.html - shard-glk: NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#2705]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk9/igt@kms_big_joiner@invalid-modeset.html - shard-tglb: NOTRUN -> [SKIP][45] ([i915#2705]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-ccs-on-another-bo: - shard-snb: NOTRUN -> [SKIP][46] ([fdo#109271]) +417 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-snb5/igt@kms_ccs@pipe-a-ccs-on-another-bo.html * igt@kms_chamelium@hdmi-aspect-ratio: - shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +12 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk2/igt@kms_chamelium@hdmi-aspect-ratio.html * igt@kms_chamelium@hdmi-hpd-fast: - shard-snb: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +26 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-snb5/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [fdo#111827]) +18 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@kms_chamelium@vga-hpd.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +17 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl2/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color@pipe-c-degamma: - shard-tglb: NOTRUN -> [FAIL][51] ([i915#1149]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@kms_color@pipe-c-degamma.html * igt@kms_color@pipe-d-degamma: - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109278] / [i915#1149]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@kms_color@pipe-d-degamma.html * igt@kms_color_chamelium@pipe-b-ctm-0-75: - shard-tglb: NOTRUN -> [SKIP][53] ([fdo#109284] / [fdo#111827]) +15 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html * igt@kms_content_protection@atomic: - shard-apl: NOTRUN -> [TIMEOUT][54] ([i915#1319]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3116]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-kbl: NOTRUN -> [TIMEOUT][56] ([i915#1319]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent: - shard-kbl: NOTRUN -> [FAIL][57] ([i915#2105]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@kms_content_protection@uevent.html - shard-tglb: NOTRUN -> [SKIP][58] ([fdo#111828]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding: - shard-tglb: NOTRUN -> [SKIP][59] ([fdo#109279] / [i915#3359]) +4 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@kms_cursor_crc@pipe-a-cursor-512x170-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen: - shard-tglb: NOTRUN -> [SKIP][60] ([i915#3319]) +3 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-32x32-offscreen.html * igt@kms_cursor_crc@pipe-b-cursor-512x170-random: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109278] / [fdo#109279]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@kms_cursor_crc@pipe-b-cursor-512x170-random.html * igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen: - shard-tglb: NOTRUN -> [SKIP][62] ([i915#3359]) +8 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@kms_cursor_crc@pipe-c-cursor-max-size-offscreen.html * igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen: - shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271]) +173 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl2/igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#533]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl1/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_cursor_legacy@pipe-d-torture-move: - shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109278]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@kms_cursor_legacy@pipe-d-torture-move.html * igt@kms_dp_tiled_display@basic-test-pattern: - shard-tglb: NOTRUN -> [SKIP][66] ([i915#426]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@kms_dp_tiled_display@basic-test-pattern.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109274]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-kbl: NOTRUN -> [DMESG-WARN][68] ([i915#180]) +7 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#2642]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html - shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#2642]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile: - shard-kbl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#2642]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109280]) +5 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#111825]) +41 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu: - shard-glk: NOTRUN -> [SKIP][74] ([fdo#109271]) +123 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [PASS][75] -> [SKIP][76] ([i915#433]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-kbl: [PASS][77] -> [DMESG-WARN][78] ([i915#180]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl7/igt@kms_hdr@bpc-switch-suspend.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-dpms: - shard-tglb: NOTRUN -> [SKIP][79] ([i915#1187]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#1839]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence: - shard-glk: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#533]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk9/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb: - shard-apl: NOTRUN -> [FAIL][82] ([fdo#108145] / [i915#265]) +3 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-kbl: NOTRUN -> [FAIL][83] ([i915#265]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-c-alpha-basic: - shard-kbl: NOTRUN -> [FAIL][84] ([fdo#108145] / [i915#265]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl1/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html * igt@kms_plane_multiple@atomic-pipe-b-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][85] ([fdo#111615]) +4 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@kms_plane_multiple@atomic-pipe-b-tiling-yf.html * igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping: - shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#2733]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html - shard-kbl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#2733]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl1/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-c-scaler-with-clipping-clamping.html * igt@kms_prime@basic-crc@first-to-second: - shard-tglb: NOTRUN -> [SKIP][88] ([i915#1836]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@kms_prime@basic-crc@first-to-second.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4: - shard-apl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#658]) +4 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5: - shard-glk: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +3 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-0: - shard-tglb: NOTRUN -> [SKIP][91] ([i915#2920]) +3 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1: - shard-kbl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#658]) +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-1.html * igt@kms_psr@psr2_cursor_mmap_cpu: - shard-tglb: NOTRUN -> [FAIL][93] ([i915#132] / [i915#3467]) +2 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@kms_psr@psr2_cursor_mmap_cpu.html * igt@kms_psr@psr2_sprite_render: - shard-tglb: NOTRUN -> [FAIL][94] ([i915#132]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb3/igt@kms_psr@psr2_sprite_render.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][95] ([i915#31]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-snb7/igt@kms_setmode@basic.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][96] ([i915#180] / [i915#295]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-idle: - shard-kbl: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#533]) +2 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl2/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#2437]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@kms_writeback@writeback-check-output.html * igt@nouveau_crc@pipe-c-source-outp-complete: - shard-tglb: NOTRUN -> [SKIP][99] ([i915#2530]) +3 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-complete.html * igt@prime_nv_pcopy@test3_3: - shard-iclb: NOTRUN -> [SKIP][100] ([fdo#109291]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@prime_nv_pcopy@test3_3.html * igt@prime_nv_test@i915_blt_fill_nv_read: - shard-tglb: NOTRUN -> [SKIP][101] ([fdo#109291]) +4 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb5/igt@prime_nv_test@i915_blt_fill_nv_read.html * igt@runner@aborted: - shard-iclb: NOTRUN -> [FAIL][102] ([i915#2722]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@runner@aborted.html * igt@sysfs_clients@fair-3: - shard-tglb: NOTRUN -> [SKIP][103] ([i915#2994]) +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb5/igt@sysfs_clients@fair-3.html * igt@sysfs_clients@recycle: - shard-kbl: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#2994]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl1/igt@sysfs_clients@recycle.html * igt@sysfs_clients@recycle-many: - shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2994]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk7/igt@sysfs_clients@recycle-many.html * igt@sysfs_clients@sema-50: - shard-iclb: NOTRUN -> [SKIP][106] ([i915#2994]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-iclb6/igt@sysfs_clients@sema-50.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-apl: [DMESG-WARN][107] ([i915#180]) -> [PASS][108] +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][109] ([i915#2369] / [i915#3063]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-tglb2/igt@gem_eio@unwedge-stress.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb8/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][111] ([i915#2842]) -> [PASS][112] +2 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [FAIL][113] ([i915#2842]) -> [PASS][114] +2 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-glk1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-glk: [INCOMPLETE][115] ([i915#2055] / [i915#3468]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-glk4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-glk9/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-apl: [INCOMPLETE][117] ([i915#3468]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-apl1/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-apl7/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html #### Warnings #### * igt@i915_selftest@live@execlists: - shard-tglb: [DMESG-FAIL][119] ([i915#3462]) -> [INCOMPLETE][120] ([i915#3462]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-tglb2/igt@i915_selftest@live@execlists.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-tglb2/igt@i915_selftest@live@execlists.html * igt@runner@aborted: - shard-kbl: ([FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133], [FAIL][134], [FAIL][135]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2722] / [i915#3002] / [i915#3363]) -> ([FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150], [FAIL][151], [FAIL][152], [FAIL][153], [FAIL][154]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2292] / [i915#2722] / [i915#3002] / [i915#3363] / [i915#602]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl3/igt@runner@aborted.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl4/igt@runner@aborted.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl2/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl7/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl7/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl7/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl2/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl3/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl3/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl2/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl4/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl4/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl2/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl2/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6092/shard-kbl1/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl3/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl4/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@runner@aborted.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl4/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl7/igt@runner@aborted.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl3/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/shard-kbl4/igt@runner@aborted.html [145]: ht == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5834/index.html [-- Attachment #1.2: Type: text/html, Size: 34513 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ 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] benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag 2021-05-21 16:46 [igt-dev] [PATCH i-g-t] benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag Zbigniew Kempczyński 2021-05-21 17:36 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2021-05-24 0:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2021-05-26 8:56 ` Tvrtko Ursulin 2021-05-26 9:00 ` Tvrtko Ursulin 2 siblings, 1 reply; 5+ messages in thread From: Tvrtko Ursulin @ 2021-05-26 8:56 UTC (permalink / raw) To: Zbigniew Kempczyński, igt-dev; +Cc: Petri Latvala, Tvrtko Ursulin On 21/05/2021 17:46, Zbigniew Kempczyński wrote: > As flag I915_USERPTR_UNSYNCHRONIZED is not supported by the i915 anymore > remove tests which tries to use it in the benchmark. > > Remove benchmark from meson libdrm depending code as it is a little bit > confusing. > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> > Cc: Petri Latvala <petri.latvala@intel.com> Acked-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Regards, Tvrtko > --- > benchmarks/gem_userptr_benchmark.c | 54 +++++++----------------------- > benchmarks/meson.build | 2 +- > 2 files changed, 14 insertions(+), 42 deletions(-) > > diff --git a/benchmarks/gem_userptr_benchmark.c b/benchmarks/gem_userptr_benchmark.c > index d7a495209..a85997b86 100644 > --- a/benchmarks/gem_userptr_benchmark.c > +++ b/benchmarks/gem_userptr_benchmark.c > @@ -57,20 +57,10 @@ > #define PAGE_SIZE 4096 > #endif > > -static uint32_t userptr_flags = I915_USERPTR_UNSYNCHRONIZED; > +static uint32_t userptr_flags = 0; > > #define BO_SIZE (65536) > > -static void gem_userptr_test_unsynchronized(void) > -{ > - userptr_flags = I915_USERPTR_UNSYNCHRONIZED; > -} > - > -static void gem_userptr_test_synchronized(void) > -{ > - userptr_flags = 0; > -} > - > static void **handle_ptr_map; > static unsigned int num_handle_ptr_map; > > @@ -124,14 +114,10 @@ static int has_userptr(int fd) > { > uint32_t handle = 0; > void *ptr; > - uint32_t oldflags; > int ret; > > assert(posix_memalign(&ptr, PAGE_SIZE, PAGE_SIZE) == 0); > - oldflags = userptr_flags; > - gem_userptr_test_unsynchronized(); > - ret = __gem_userptr(fd, ptr, PAGE_SIZE, 0, userptr_flags, &handle); > - userptr_flags = oldflags; > + ret = __gem_userptr(fd, ptr, PAGE_SIZE, 0, 0, &handle); > if (ret != 0) { > free(ptr); > return 0; > @@ -464,32 +450,18 @@ static void test_userptr(int fd) > test_multiple(fd, 100, 1); > } > > -int main(int argc, char **argv) > +igt_main > { > int fd = -1, ret; > > - igt_subtest_init(argc, argv); > - > - fd = drm_open_driver(DRIVER_INTEL); > - igt_assert(fd >= 0); > - > - ret = has_userptr(fd); > - igt_skip_on_f(ret == 0, "No userptr support - %s (%d)\n", > - strerror(errno), ret); > - > + igt_fixture { > + fd = drm_open_driver(DRIVER_INTEL); > + igt_assert(fd >= 0); > > - gem_userptr_test_unsynchronized(); > - > - igt_subtest("userptr-unsync") > - test_userptr(fd); > - > - igt_subtest("userptr-impact-unsync") > - test_impact(fd, "unsync-"); > - > - igt_subtest("userptr-impact-unsync-overlap") > - test_impact_overlap(fd, "unsync-"); > - > - gem_userptr_test_synchronized(); > + ret = has_userptr(fd); > + igt_skip_on_f(ret == 0, "No userptr support - %s (%d)\n", > + strerror(errno), ret); > + } > > igt_subtest("userptr-sync") > test_userptr(fd); > @@ -500,7 +472,7 @@ int main(int argc, char **argv) > igt_subtest("userptr-impact-sync-overlap") > test_impact_overlap(fd, "sync-"); > > - igt_exit(); > - > - return 0; > + igt_fixture { > + close(fd); > + } > } > diff --git a/benchmarks/meson.build b/benchmarks/meson.build > index bede51dce..98a08e25c 100644 > --- a/benchmarks/meson.build > +++ b/benchmarks/meson.build > @@ -11,6 +11,7 @@ benchmark_progs = [ > 'gem_prw', > 'gem_set_domain', > 'gem_syslatency', > + 'gem_userptr_benchmark', > 'gem_wsim', > 'kms_vblank', > 'prime_lookup', > @@ -23,7 +24,6 @@ if libdrm_intel.found() > 'intel_upload_blit_large_gtt', > 'intel_upload_blit_large_map', > 'intel_upload_blit_small', > - 'gem_userptr_benchmark', > ] > endif > > _______________________________________________ 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] benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag 2021-05-26 8:56 ` [igt-dev] [PATCH i-g-t] " Tvrtko Ursulin @ 2021-05-26 9:00 ` Tvrtko Ursulin 0 siblings, 0 replies; 5+ messages in thread From: Tvrtko Ursulin @ 2021-05-26 9:00 UTC (permalink / raw) To: Zbigniew Kempczyński, igt-dev; +Cc: Petri Latvala, Tvrtko Ursulin On 26/05/2021 09:56, Tvrtko Ursulin wrote: > > On 21/05/2021 17:46, Zbigniew Kempczyński wrote: >> As flag I915_USERPTR_UNSYNCHRONIZED is not supported by the i915 anymore >> remove tests which tries to use it in the benchmark. >> >> Remove benchmark from meson libdrm depending code as it is a little bit >> confusing. >> >> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> >> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com> >> Cc: Petri Latvala <petri.latvala@intel.com> > > Acked-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin.com> Regards, Tvrtko > Regards, > > Tvrtko > >> --- >> benchmarks/gem_userptr_benchmark.c | 54 +++++++----------------------- >> benchmarks/meson.build | 2 +- >> 2 files changed, 14 insertions(+), 42 deletions(-) >> >> diff --git a/benchmarks/gem_userptr_benchmark.c >> b/benchmarks/gem_userptr_benchmark.c >> index d7a495209..a85997b86 100644 >> --- a/benchmarks/gem_userptr_benchmark.c >> +++ b/benchmarks/gem_userptr_benchmark.c >> @@ -57,20 +57,10 @@ >> #define PAGE_SIZE 4096 >> #endif >> -static uint32_t userptr_flags = I915_USERPTR_UNSYNCHRONIZED; >> +static uint32_t userptr_flags = 0; >> #define BO_SIZE (65536) >> -static void gem_userptr_test_unsynchronized(void) >> -{ >> - userptr_flags = I915_USERPTR_UNSYNCHRONIZED; >> -} >> - >> -static void gem_userptr_test_synchronized(void) >> -{ >> - userptr_flags = 0; >> -} >> - >> static void **handle_ptr_map; >> static unsigned int num_handle_ptr_map; >> @@ -124,14 +114,10 @@ static int has_userptr(int fd) >> { >> uint32_t handle = 0; >> void *ptr; >> - uint32_t oldflags; >> int ret; >> assert(posix_memalign(&ptr, PAGE_SIZE, PAGE_SIZE) == 0); >> - oldflags = userptr_flags; >> - gem_userptr_test_unsynchronized(); >> - ret = __gem_userptr(fd, ptr, PAGE_SIZE, 0, userptr_flags, &handle); >> - userptr_flags = oldflags; >> + ret = __gem_userptr(fd, ptr, PAGE_SIZE, 0, 0, &handle); >> if (ret != 0) { >> free(ptr); >> return 0; >> @@ -464,32 +450,18 @@ static void test_userptr(int fd) >> test_multiple(fd, 100, 1); >> } >> -int main(int argc, char **argv) >> +igt_main >> { >> int fd = -1, ret; >> - igt_subtest_init(argc, argv); >> - >> - fd = drm_open_driver(DRIVER_INTEL); >> - igt_assert(fd >= 0); >> - >> - ret = has_userptr(fd); >> - igt_skip_on_f(ret == 0, "No userptr support - %s (%d)\n", >> - strerror(errno), ret); >> - >> + igt_fixture { >> + fd = drm_open_driver(DRIVER_INTEL); >> + igt_assert(fd >= 0); >> - gem_userptr_test_unsynchronized(); >> - >> - igt_subtest("userptr-unsync") >> - test_userptr(fd); >> - >> - igt_subtest("userptr-impact-unsync") >> - test_impact(fd, "unsync-"); >> - >> - igt_subtest("userptr-impact-unsync-overlap") >> - test_impact_overlap(fd, "unsync-"); >> - >> - gem_userptr_test_synchronized(); >> + ret = has_userptr(fd); >> + igt_skip_on_f(ret == 0, "No userptr support - %s (%d)\n", >> + strerror(errno), ret); >> + } >> igt_subtest("userptr-sync") >> test_userptr(fd); >> @@ -500,7 +472,7 @@ int main(int argc, char **argv) >> igt_subtest("userptr-impact-sync-overlap") >> test_impact_overlap(fd, "sync-"); >> - igt_exit(); >> - >> - return 0; >> + igt_fixture { >> + close(fd); >> + } >> } >> diff --git a/benchmarks/meson.build b/benchmarks/meson.build >> index bede51dce..98a08e25c 100644 >> --- a/benchmarks/meson.build >> +++ b/benchmarks/meson.build >> @@ -11,6 +11,7 @@ benchmark_progs = [ >> 'gem_prw', >> 'gem_set_domain', >> 'gem_syslatency', >> + 'gem_userptr_benchmark', >> 'gem_wsim', >> 'kms_vblank', >> 'prime_lookup', >> @@ -23,7 +24,6 @@ if libdrm_intel.found() >> 'intel_upload_blit_large_gtt', >> 'intel_upload_blit_large_map', >> 'intel_upload_blit_small', >> - 'gem_userptr_benchmark', >> ] >> endif >> _______________________________________________ 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:[~2021-05-26 9:00 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-05-21 16:46 [igt-dev] [PATCH i-g-t] benchmarks/gem_userptr_benchmark: Remove tests with unsynchronized flag Zbigniew Kempczyński 2021-05-21 17:36 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2021-05-24 0:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2021-05-26 8:56 ` [igt-dev] [PATCH i-g-t] " Tvrtko Ursulin 2021-05-26 9:00 ` Tvrtko Ursulin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox