* [igt-dev] [PATCH i-g-t] tests/i915/madvise: verify async eviction with madvise
@ 2022-11-15 10:34 Matthew Auld
2022-11-15 13:39 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Matthew Auld @ 2022-11-15 10:34 UTC (permalink / raw)
To: igt-dev; +Cc: intel-gfx, Nirmoy Das
Simple regression test for lmem to check if an in-progress async unbind
and eviction is syncronised with discarding the pages when marking
the object as DONTNEED.
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
Cc: Andrzej Hajda <andrzej.hajda@intel.com>
Cc: Nirmoy Das <nirmoy.das@intel.com>
---
tests/i915/gem_madvise.c | 130 ++++++++++++++++++++++++++++++++++++++-
1 file changed, 129 insertions(+), 1 deletion(-)
diff --git a/tests/i915/gem_madvise.c b/tests/i915/gem_madvise.c
index 2502d84c..d164df3a 100644
--- a/tests/i915/gem_madvise.c
+++ b/tests/i915/gem_madvise.c
@@ -36,8 +36,9 @@
#include <setjmp.h>
#include <signal.h>
-#include "drm.h"
+#include "igt_kmod.h"
#include "i915/gem_create.h"
+#include "i915/gem.h"
IGT_TEST_DESCRIPTION("Checks that the kernel reports EFAULT when trying to use"
" purged bo.");
@@ -188,6 +189,76 @@ dontneed_before_exec(void)
close(fd);
}
+#define PAGE_SIZE 4096
+
+static uint32_t batch_create_size(int fd, uint64_t size)
+{
+ const uint32_t bbe = MI_BATCH_BUFFER_END;
+ uint32_t handle;
+
+ handle = gem_create(fd, size);
+ gem_write(fd, handle, 0, &bbe, sizeof(bbe));
+
+ return handle;
+}
+
+static int upload(int fd, uint32_t handle)
+{
+ struct drm_i915_gem_exec_object2 exec[2] = {};
+ struct drm_i915_gem_execbuffer2 execbuf = {
+ .buffers_ptr = to_user_pointer(&exec),
+ .buffer_count = 2,
+ };
+
+ exec[0].handle = handle;
+ exec[0].flags = EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
+ exec[1].handle = batch_create_size(fd, PAGE_SIZE);
+ exec[1].flags = EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
+
+ gem_execbuf(fd, &execbuf);
+ return 0;
+}
+
+static void test_dontneed_evict_race(int fd,
+ struct gem_memory_region *region)
+{
+ const uint64_t size = region->size >> 1;
+ uint64_t ahnd = get_reloc_ahnd(fd, 0);
+ uint32_t handle1;
+ igt_spin_t *spin;
+
+ handle1 = gem_create_in_memory_region_list(fd, size, 0,
+ ®ion->ci, 1);
+ spin = igt_spin_new(fd,
+ .ahnd = ahnd,
+ .dependency = handle1);
+
+ igt_fork(child, 1) {
+ uint32_t handle2;
+
+ fd = gem_reopen_driver(fd);
+
+ handle2 = gem_create_in_memory_region_list(fd,
+ size, 0,
+ ®ion->ci, 1);
+ /*
+ * The actual move when evicting will be pipelined
+ * behind the spinner, so can't fire until the spinner
+ * is killed.
+ */
+ upload(fd, handle2);
+ gem_close(fd, handle2);
+ }
+
+ sleep(2); /* Give eviction time to find handle1 */
+ igt_spin_end(spin);
+ gem_madvise(fd, handle1, I915_MADV_DONTNEED);
+ igt_waitchildren();
+
+ igt_spin_free(fd, spin);
+ gem_close(fd, handle1);
+}
+
igt_main
{
igt_describe("Check signal for Segmentation Fault and bus error before"
@@ -209,4 +280,61 @@ igt_main
" purged bo for GPU.");
igt_subtest("dontneed-before-exec")
dontneed_before_exec();
+
+ igt_subtest_group {
+ struct drm_i915_query_memory_regions *regions;
+ int i915 = -1;
+
+ igt_fixture {
+ char *tmp;
+
+ if (igt_kmod_is_loaded("i915")) {
+ i915 = __drm_open_driver(DRIVER_INTEL);
+ igt_require_fd(i915);
+ igt_require_gem(i915);
+ igt_require(gem_has_lmem(i915));
+ close(i915);
+ }
+
+ igt_i915_driver_unload();
+ /*
+ * To avoid running of ring space and stalling during evicting
+ * (while holding the dma-resv lock), we need to use a smaller
+ * lmem size, such we can easliy trigger eviction without
+ * needing to wait for more ring space. The point of the test is
+ * to mark the object as DONTNEED which has an in-progress
+ * pipilined unbind/move, which also requires grabbing the
+ * dma-resv lock.
+ */
+ igt_assert_eq(igt_i915_driver_load("lmem_size=128"), 0);
+
+ i915 = __drm_open_driver(DRIVER_INTEL);
+ igt_require_fd(i915);
+ igt_require_gem(i915);
+ igt_require(gem_has_lmem(i915));
+
+ tmp = __igt_params_get(i915, "lmem_size");
+ igt_skip_on(!tmp);
+ free(tmp);
+
+ regions = gem_get_query_memory_regions(i915);
+ igt_require(regions);
+ }
+
+ igt_describe("Regression test to verify that madvise will sync against busy dma-resv object for lmem");
+ igt_subtest("dontneed-evict-race") {
+ for_each_memory_region(r, i915) {
+ if (r->ci.memory_class == I915_MEMORY_CLASS_DEVICE) {
+ test_dontneed_evict_race(i915, r);
+ break;
+ }
+ }
+
+ }
+
+ igt_fixture {
+ close(i915);
+ igt_i915_driver_unload();
+ }
+ }
}
--
2.38.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/madvise: verify async eviction with madvise 2022-11-15 10:34 [igt-dev] [PATCH i-g-t] tests/i915/madvise: verify async eviction with madvise Matthew Auld @ 2022-11-15 13:39 ` Patchwork 2022-11-15 17:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-11-15 13:39 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5874 bytes --] == Series Details == Series: tests/i915/madvise: verify async eviction with madvise URL : https://patchwork.freedesktop.org/series/110908/ State : success == Summary == CI Bug Log - changes from CI_DRM_12382 -> IGTPW_8104 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/index.html Participating hosts (40 -> 41) ------------------------------ Additional (1): fi-hsw-4770 Known issues ------------ Here are the changes found in IGTPW_8104 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [PASS][1] -> [FAIL][2] ([i915#7229]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@gem_softpin@allocator-basic-reserve: - fi-hsw-4770: NOTRUN -> [SKIP][3] ([fdo#109271]) +9 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-hsw-4770/igt@gem_softpin@allocator-basic-reserve.html * igt@i915_pm_backlight@basic-brightness: - fi-hsw-4770: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#3012]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@gt_heartbeat: - fi-skl-6600u: [PASS][5] -> [DMESG-FAIL][6] ([i915#5334]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/fi-skl-6600u/igt@i915_selftest@live@gt_heartbeat.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-skl-6600u/igt@i915_selftest@live@gt_heartbeat.html - fi-bxt-dsi: [PASS][7] -> [DMESG-FAIL][8] ([i915#5334]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/fi-bxt-dsi/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-bxt-dsi/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-rkl-11600: NOTRUN -> [SKIP][9] ([fdo#111827]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-rkl-11600/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@dp-crc-fast: - fi-hsw-4770: NOTRUN -> [SKIP][10] ([fdo#109271] / [fdo#111827]) +8 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-hsw-4770/igt@kms_chamelium@dp-crc-fast.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1072]) +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@gem_huc_copy@huc-copy: - {bat-dg2-8}: [FAIL][12] ([i915#7029]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/bat-dg2-8/igt@gem_huc_copy@huc-copy.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/bat-dg2-8/igt@gem_huc_copy@huc-copy.html * igt@i915_selftest@live@mman: - {bat-rpls-1}: [TIMEOUT][14] ([i915#6794]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/bat-rpls-1/igt@i915_selftest@live@mman.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/bat-rpls-1/igt@i915_selftest@live@mman.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [INCOMPLETE][16] ([i915#4817]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7029]: https://gitlab.freedesktop.org/drm/intel/issues/7029 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7057 -> IGTPW_8104 CI-20190529: 20190529 CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8104: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/index.html IGT_7057: e2138d48c2c506816868c16cf3ba64f81bdead41 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@gem_madvise@dontneed-evict-race == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/index.html [-- Attachment #2: Type: text/html, Size: 6321 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/madvise: verify async eviction with madvise 2022-11-15 10:34 [igt-dev] [PATCH i-g-t] tests/i915/madvise: verify async eviction with madvise Matthew Auld 2022-11-15 13:39 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2022-11-15 17:58 ` Patchwork 2022-11-16 9:45 ` [igt-dev] [Intel-gfx] [PATCH i-g-t] " Das, Nirmoy ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-11-15 17:58 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 41996 bytes --] == Series Details == Series: tests/i915/madvise: verify async eviction with madvise URL : https://patchwork.freedesktop.org/series/110908/ State : success == Summary == CI Bug Log - changes from CI_DRM_12382_full -> IGTPW_8104_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/index.html Participating hosts (11 -> 8) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8104_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_madvise@dontneed-evict-race} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-2/igt@gem_madvise@dontneed-evict-race.html - {shard-dg1}: NOTRUN -> [DMESG-WARN][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-dg1-13/igt@gem_madvise@dontneed-evict-race.html - shard-tglb: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb8/igt@gem_madvise@dontneed-evict-race.html - shard-iclb: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb7/igt@gem_madvise@dontneed-evict-race.html New tests --------- New tests have been introduced between CI_DRM_12382_full and IGTPW_8104_full: ### New IGT tests (1) ### * igt@gem_madvise@dontneed-evict-race: - Statuses : 1 dmesg-warn(s) 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8104_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-iclb: NOTRUN -> [SKIP][5] ([i915#5327]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglb: NOTRUN -> [SKIP][6] ([i915#5325]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][8] ([i915#3354]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-snb6/igt@gem_eio@unwedge-stress.html * igt@gem_exec_capture@pi@vcs0: - shard-iclb: [PASS][9] -> [INCOMPLETE][10] ([i915#3371]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb1/igt@gem_exec_capture@pi@vcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb6/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][11] -> [FAIL][12] ([i915#2846]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-glk2/igt@gem_exec_fair@basic-deadline.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb5/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2842]) +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [PASS][17] -> [FAIL][18] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][19] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][20] -> [SKIP][21] ([i915#2190]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-tglb1/igt@gem_huc_copy@huc-copy.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-iclb: NOTRUN -> [SKIP][22] ([i915#4613]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb6/igt@gem_lmem_swapping@parallel-random-engines.html - shard-tglb: NOTRUN -> [SKIP][23] ([i915#4613]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb5/igt@gem_lmem_swapping@parallel-random-engines.html - shard-glk: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-apl: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-iclb: NOTRUN -> [SKIP][26] ([i915#4270]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglb: NOTRUN -> [SKIP][27] ([i915#4270]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglb: NOTRUN -> [SKIP][28] ([i915#3297]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb2/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-iclb: NOTRUN -> [SKIP][29] ([i915#3297]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb5/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-start-far: - shard-iclb: NOTRUN -> [SKIP][30] ([i915#2856]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb5/igt@gen9_exec_parse@bb-start-far.html - shard-tglb: NOTRUN -> [SKIP][31] ([i915#2527] / [i915#2856]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb1/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_dc@dc6-psr: - shard-tglb: NOTRUN -> [FAIL][32] ([i915#3989] / [i915#454]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-tglb: NOTRUN -> [SKIP][33] ([fdo#109506] / [i915#2411]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb7/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109293] / [fdo#109506]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglb: NOTRUN -> [SKIP][35] ([i915#3826]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-iclb: NOTRUN -> [SKIP][36] ([i915#3826]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-iclb: NOTRUN -> [SKIP][37] ([i915#5286]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html - shard-tglb: NOTRUN -> [SKIP][38] ([i915#5286]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb8/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#110723]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#111615]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109278]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html - shard-tglb: NOTRUN -> [SKIP][42] ([i915#3689] / [i915#6095]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb5/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][43] ([fdo#111615] / [i915#3689]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb6/igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#6095]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb6/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#3689]) +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_chamelium@hdmi-crc-multiple: - shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk9/igt@kms_chamelium@hdmi-crc-multiple.html * igt@kms_chamelium@vga-hpd-with-enabled-mode: - shard-snb: NOTRUN -> [SKIP][47] ([fdo#109271] / [fdo#111827]) +5 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-snb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html * igt@kms_color_chamelium@ctm-max: - shard-tglb: NOTRUN -> [SKIP][48] ([fdo#109284] / [fdo#111827]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb3/igt@kms_color_chamelium@ctm-max.html * igt@kms_color_chamelium@ctm-negative: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109284] / [fdo#111827]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb7/igt@kms_color_chamelium@ctm-negative.html - shard-apl: NOTRUN -> [SKIP][50] ([fdo#109271] / [fdo#111827]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl1/igt@kms_color_chamelium@ctm-negative.html * igt@kms_content_protection@atomic-dpms: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#7118]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb7/igt@kms_content_protection@atomic-dpms.html - shard-iclb: NOTRUN -> [SKIP][52] ([i915#7118]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][53] ([i915#7173]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-iclb: NOTRUN -> [SKIP][54] ([i915#3555]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb3/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-tglb: NOTRUN -> [SKIP][55] ([i915#3555]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [PASS][56] -> [FAIL][57] ([i915#2346]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109274]) +2 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglb: NOTRUN -> [SKIP][59] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb8/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-iclb: [PASS][60] -> [SKIP][61] ([i915#3555]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][62] ([i915#2672]) +3 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][63] ([i915#2672] / [i915#3555]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#2587] / [i915#2672]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][65] ([i915#2587] / [i915#2672]) +3 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][66] ([fdo#109271]) +38 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-tglb: NOTRUN -> [SKIP][67] ([i915#6497]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109280]) +13 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-tglb: NOTRUN -> [SKIP][69] ([fdo#109280] / [fdo#111825]) +13 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][70] ([i915#5176]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1: - shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271]) +50 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl1/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-edp-1: - shard-tglb: NOTRUN -> [SKIP][72] ([i915#5176]) +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1: - shard-iclb: [PASS][73] -> [SKIP][74] ([i915#5235]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglb: NOTRUN -> [SKIP][76] ([i915#2920]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb8/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-glk: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-iclb: NOTRUN -> [SKIP][78] ([i915#658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12@pipe-b-edp-1: - shard-iclb: NOTRUN -> [FAIL][79] ([i915#5939]) +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@kms_psr2_su@page_flip-nv12@pipe-b-edp-1.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109642] / [fdo#111068] / [i915#658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][81] -> [SKIP][82] ([fdo#109441]) +2 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-iclb: [PASS][83] -> [SKIP][84] ([i915#5519]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_tv_load_detect@load-detect: - shard-snb: NOTRUN -> [SKIP][85] ([fdo#109271]) +161 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-snb4/igt@kms_tv_load_detect@load-detect.html - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#109309]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb3/igt@kms_tv_load_detect@load-detect.html - shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109309]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb8/igt@kms_tv_load_detect@load-detect.html * igt@kms_writeback@writeback-fb-id: - shard-tglb: NOTRUN -> [SKIP][88] ([i915#2437]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb5/igt@kms_writeback@writeback-fb-id.html - shard-glk: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#2437]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk7/igt@kms_writeback@writeback-fb-id.html - shard-iclb: NOTRUN -> [SKIP][90] ([i915#2437]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@kms_writeback@writeback-fb-id.html - shard-apl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2437]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl7/igt@kms_writeback@writeback-fb-id.html * igt@sysfs_clients@pidname: - shard-apl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#2994]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl3/igt@sysfs_clients@pidname.html - shard-tglb: NOTRUN -> [SKIP][93] ([i915#2994]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb6/igt@sysfs_clients@pidname.html - shard-glk: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#2994]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk6/igt@sysfs_clients@pidname.html - shard-iclb: NOTRUN -> [SKIP][95] ([i915#2994]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb1/igt@sysfs_clients@pidname.html #### Possible fixes #### * igt@fbdev@pan: - {shard-rkl}: [SKIP][96] ([i915#2582]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-1/igt@fbdev@pan.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-2/igt@fbdev@pan.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglb: [FAIL][98] ([i915#6268]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-tglb5/igt@gem_ctx_exec@basic-nohangcheck.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: [SKIP][100] ([i915#4525]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb8/igt@gem_exec_balancer@parallel-keep-submit-fence.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_reloc@basic-concurrent0: - {shard-rkl}: [SKIP][102] ([i915#3281]) -> [PASS][103] +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-2/igt@gem_exec_reloc@basic-concurrent0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_pwrite@basic-random: - {shard-rkl}: [SKIP][104] ([i915#3282]) -> [PASS][105] +3 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-2/igt@gem_pwrite@basic-random.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-5/igt@gem_pwrite@basic-random.html * igt@gen9_exec_parse@valid-registers: - {shard-rkl}: [SKIP][106] ([i915#2527]) -> [PASS][107] +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-1/igt@gen9_exec_parse@valid-registers.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-dg1}: [FAIL][108] ([i915#3591]) -> [PASS][109] +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@fences: - {shard-rkl}: [SKIP][110] ([i915#1849]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-1/igt@i915_pm_rpm@fences.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-6/igt@i915_pm_rpm@fences.html * igt@i915_pm_sseu@full-enable: - {shard-rkl}: [SKIP][112] ([i915#4387]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-2/igt@i915_pm_sseu@full-enable.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-5/igt@i915_pm_sseu@full-enable.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [DMESG-WARN][114] ([i915#4528]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-snb7/igt@i915_suspend@basic-s2idle-without-i915.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-snb7/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-iclb: [SKIP][116] -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb5/igt@i915_suspend@fence-restore-tiled2untiled.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - {shard-rkl}: [SKIP][118] ([i915#1845] / [i915#4098]) -> [PASS][119] +13 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-glk: [FAIL][120] ([i915#5138]) -> [PASS][121] +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-glk3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk6/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_cursor_legacy@single-move@all-pipes: - {shard-rkl}: [INCOMPLETE][122] -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-4/igt@kms_cursor_legacy@single-move@all-pipes.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-2/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - {shard-rkl}: [SKIP][124] ([i915#1849] / [i915#4098]) -> [PASS][125] +11 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_plane_lowres@tiling-yf@pipe-b-hdmi-a-2: - shard-glk: [FAIL][126] ([i915#7307]) -> [PASS][127] +2 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-glk1/igt@kms_plane_lowres@tiling-yf@pipe-b-hdmi-a-2.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-glk7/igt@kms_plane_lowres@tiling-yf@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][128] ([i915#5235]) -> [PASS][129] +2 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_dpms: - shard-iclb: [SKIP][130] ([fdo#109441]) -> [PASS][131] +1 similar issue [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb1/igt@kms_psr@psr2_dpms.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb2/igt@kms_psr@psr2_dpms.html * igt@kms_psr@sprite_mmap_cpu: - {shard-rkl}: [SKIP][132] ([i915#1072]) -> [PASS][133] +2 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-rkl-5/igt@kms_psr@sprite_mmap_cpu.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-rkl-6/igt@kms_psr@sprite_mmap_cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [SKIP][134] ([i915#5519]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][136] ([i915#6117]) -> [SKIP][137] ([i915#4525]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: [WARN][138] ([i915#2658]) -> [INCOMPLETE][139] ([i915#7248]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-apl6/igt@gem_pwrite@basic-exhaustion.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-apl2/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: [WARN][140] ([i915#2658]) -> [INCOMPLETE][141] ([i915#7248]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-tglb7/igt@gem_pwrite@basic-exhaustion.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-iclb: [SKIP][142] ([i915#2920]) -> [SKIP][143] ([fdo#111068] / [i915#658]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb1/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-iclb: [SKIP][144] ([i915#2920]) -> [SKIP][145] ([i915#658]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12382/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3371]: https://gitlab.freedesktop.org/drm/intel/issues/3371 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5939]: https://gitlab.freedesktop.org/drm/intel/issues/5939 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6463]: https://gitlab.freedesktop.org/drm/intel/issues/6463 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7307]: https://gitlab.freedesktop.org/drm/intel/issues/7307 [i915#7468]: https://gitlab.freedesktop.org/drm/intel/issues/7468 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7057 -> IGTPW_8104 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12382: cb74864693414b221b3601572e75449558126e8b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8104: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/index.html IGT_7057: e2138d48c2c506816868c16cf3ba64f81bdead41 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8104/index.html [-- Attachment #2: Type: text/html, Size: 44625 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t] tests/i915/madvise: verify async eviction with madvise 2022-11-15 10:34 [igt-dev] [PATCH i-g-t] tests/i915/madvise: verify async eviction with madvise Matthew Auld 2022-11-15 13:39 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-11-15 17:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2022-11-16 9:45 ` Das, Nirmoy 2022-11-16 18:55 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/madvise: verify async eviction with madvise (rev2) Patchwork 2022-11-17 1:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Das, Nirmoy @ 2022-11-16 9:45 UTC (permalink / raw) To: Matthew Auld, igt-dev; +Cc: intel-gfx, Nirmoy Das On 11/15/2022 11:34 AM, Matthew Auld wrote: > Simple regression test for lmem to check if an in-progress async unbind > and eviction is syncronised with discarding the pages when marking > the object as DONTNEED. > > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> > Cc: Andrzej Hajda <andrzej.hajda@intel.com> > Cc: Nirmoy Das <nirmoy.das@intel.com> > --- > tests/i915/gem_madvise.c | 130 ++++++++++++++++++++++++++++++++++++++- > 1 file changed, 129 insertions(+), 1 deletion(-) > > diff --git a/tests/i915/gem_madvise.c b/tests/i915/gem_madvise.c > index 2502d84c..d164df3a 100644 > --- a/tests/i915/gem_madvise.c > +++ b/tests/i915/gem_madvise.c > @@ -36,8 +36,9 @@ > #include <setjmp.h> > #include <signal.h> > > -#include "drm.h" > +#include "igt_kmod.h" > #include "i915/gem_create.h" > +#include "i915/gem.h" > > IGT_TEST_DESCRIPTION("Checks that the kernel reports EFAULT when trying to use" > " purged bo."); > @@ -188,6 +189,76 @@ dontneed_before_exec(void) > close(fd); > } > > +#define PAGE_SIZE 4096 > + > +static uint32_t batch_create_size(int fd, uint64_t size) > +{ > + const uint32_t bbe = MI_BATCH_BUFFER_END; > + uint32_t handle; > + > + handle = gem_create(fd, size); > + gem_write(fd, handle, 0, &bbe, sizeof(bbe)); > + > + return handle; > +} > + > +static int upload(int fd, uint32_t handle) > +{ > + struct drm_i915_gem_exec_object2 exec[2] = {}; > + struct drm_i915_gem_execbuffer2 execbuf = { > + .buffers_ptr = to_user_pointer(&exec), > + .buffer_count = 2, > + }; > + > + exec[0].handle = handle; > + exec[0].flags = EXEC_OBJECT_SUPPORTS_48B_ADDRESS; > + exec[1].handle = batch_create_size(fd, PAGE_SIZE); > + exec[1].flags = EXEC_OBJECT_SUPPORTS_48B_ADDRESS; > + > + gem_execbuf(fd, &execbuf); > + return 0; > +} > + When we have some time in future, we should move above functions to a common files. Thanks Matt, for clarifying my doubts regarding this over Teams. Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> > +static void test_dontneed_evict_race(int fd, > + struct gem_memory_region *region) > +{ > + const uint64_t size = region->size >> 1; > + uint64_t ahnd = get_reloc_ahnd(fd, 0); > + uint32_t handle1; > + igt_spin_t *spin; > + > + handle1 = gem_create_in_memory_region_list(fd, size, 0, > + ®ion->ci, 1); > + spin = igt_spin_new(fd, > + .ahnd = ahnd, > + .dependency = handle1); > + > + igt_fork(child, 1) { > + uint32_t handle2; > + > + fd = gem_reopen_driver(fd); > + > + handle2 = gem_create_in_memory_region_list(fd, > + size, 0, > + ®ion->ci, 1); > + /* > + * The actual move when evicting will be pipelined > + * behind the spinner, so can't fire until the spinner > + * is killed. > + */ > + upload(fd, handle2); > + gem_close(fd, handle2); > + } > + > + sleep(2); /* Give eviction time to find handle1 */ > + igt_spin_end(spin); > + gem_madvise(fd, handle1, I915_MADV_DONTNEED); > + igt_waitchildren(); > + > + igt_spin_free(fd, spin); > + gem_close(fd, handle1); > +} > + > igt_main > { > igt_describe("Check signal for Segmentation Fault and bus error before" > @@ -209,4 +280,61 @@ igt_main > " purged bo for GPU."); > igt_subtest("dontneed-before-exec") > dontneed_before_exec(); > + > + igt_subtest_group { > + struct drm_i915_query_memory_regions *regions; > + int i915 = -1; > + > + igt_fixture { > + char *tmp; > + > + if (igt_kmod_is_loaded("i915")) { > + i915 = __drm_open_driver(DRIVER_INTEL); > + igt_require_fd(i915); > + igt_require_gem(i915); > + igt_require(gem_has_lmem(i915)); > + close(i915); > + } > + > + igt_i915_driver_unload(); > + /* > + * To avoid running of ring space and stalling during evicting > + * (while holding the dma-resv lock), we need to use a smaller > + * lmem size, such we can easliy trigger eviction without > + * needing to wait for more ring space. The point of the test is > + * to mark the object as DONTNEED which has an in-progress > + * pipilined unbind/move, which also requires grabbing the > + * dma-resv lock. > + */ > + igt_assert_eq(igt_i915_driver_load("lmem_size=128"), 0); > + > + i915 = __drm_open_driver(DRIVER_INTEL); > + igt_require_fd(i915); > + igt_require_gem(i915); > + igt_require(gem_has_lmem(i915)); > + > + tmp = __igt_params_get(i915, "lmem_size"); > + igt_skip_on(!tmp); > + free(tmp); > + > + regions = gem_get_query_memory_regions(i915); > + igt_require(regions); > + } > + > + igt_describe("Regression test to verify that madvise will sync against busy dma-resv object for lmem"); > + igt_subtest("dontneed-evict-race") { > + for_each_memory_region(r, i915) { > + if (r->ci.memory_class == I915_MEMORY_CLASS_DEVICE) { > + test_dontneed_evict_race(i915, r); > + break; > + } > + } > + > + } > + > + igt_fixture { > + close(i915); > + igt_i915_driver_unload(); > + } > + } > } ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/madvise: verify async eviction with madvise (rev2) 2022-11-15 10:34 [igt-dev] [PATCH i-g-t] tests/i915/madvise: verify async eviction with madvise Matthew Auld ` (2 preceding siblings ...) 2022-11-16 9:45 ` [igt-dev] [Intel-gfx] [PATCH i-g-t] " Das, Nirmoy @ 2022-11-16 18:55 ` Patchwork 2022-11-17 1:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-11-16 18:55 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6848 bytes --] == Series Details == Series: tests/i915/madvise: verify async eviction with madvise (rev2) URL : https://patchwork.freedesktop.org/series/110908/ State : success == Summary == CI Bug Log - changes from IGT_7062 -> IGTPW_8119 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/index.html Participating hosts (38 -> 38) ------------------------------ Additional (3): bat-kbl-2 fi-snb-2520m bat-jsl-3 Missing (3): fi-kbl-soraka fi-hsw-4770 bat-dg1-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8119: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-2: - {bat-dg2-11}: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-2.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-2.html Known issues ------------ Here are the changes found in IGTPW_8119 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - fi-rkl-11600: NOTRUN -> [FAIL][3] ([fdo#103375]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@gt_heartbeat: - fi-bxt-dsi: [PASS][4] -> [DMESG-FAIL][5] ([i915#5334]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/fi-bxt-dsi/igt@i915_selftest@live@gt_heartbeat.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/fi-bxt-dsi/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-rkl-11600: NOTRUN -> [SKIP][6] ([fdo#111827]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/fi-rkl-11600/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@hdmi-crc-fast: - fi-snb-2520m: NOTRUN -> [SKIP][7] ([fdo#109271] / [fdo#111827]) +8 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/fi-snb-2520m/igt@kms_chamelium@hdmi-crc-fast.html * igt@prime_vgem@basic-fence-flip: - fi-snb-2520m: NOTRUN -> [SKIP][8] ([fdo#109271]) +22 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/fi-snb-2520m/igt@prime_vgem@basic-fence-flip.html #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][9] ([i915#7229]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@i915_module_load@load: - {bat-dg2-8}: [FAIL][11] ([i915#7328]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/bat-dg2-8/igt@i915_module_load@load.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/bat-dg2-8/igt@i915_module_load@load.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [INCOMPLETE][13] ([i915#4817]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3003]: https://gitlab.freedesktop.org/drm/intel/issues/3003 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7328]: https://gitlab.freedesktop.org/drm/intel/issues/7328 [i915#7346]: https://gitlab.freedesktop.org/drm/intel/issues/7346 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7498]: https://gitlab.freedesktop.org/drm/intel/issues/7498 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7062 -> IGTPW_8119 CI-20190529: 20190529 CI_DRM_12389: 3eb60fea7cd44530f85bd9362508647aceea1dea @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8119: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/index.html IGT_7062: 6539ea5fe17fce683133c45f07fac316593ee1f7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@gem_madvise@dontneed-evict-race == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/index.html [-- Attachment #2: Type: text/html, Size: 5769 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/i915/madvise: verify async eviction with madvise (rev2) 2022-11-15 10:34 [igt-dev] [PATCH i-g-t] tests/i915/madvise: verify async eviction with madvise Matthew Auld ` (3 preceding siblings ...) 2022-11-16 18:55 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/madvise: verify async eviction with madvise (rev2) Patchwork @ 2022-11-17 1:34 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-11-17 1:34 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 33869 bytes --] == Series Details == Series: tests/i915/madvise: verify async eviction with madvise (rev2) URL : https://patchwork.freedesktop.org/series/110908/ State : success == Summary == CI Bug Log - changes from IGT_7062_full -> IGTPW_8119_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/index.html Participating hosts (6 -> 6) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8119_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_madvise@dontneed-evict-race} (NEW): - shard-tglb: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb8/igt@gem_madvise@dontneed-evict-race.html - shard-iclb: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb7/igt@gem_madvise@dontneed-evict-race.html New tests --------- New tests have been introduced between IGT_7062_full and IGTPW_8119_full: ### New IGT tests (1) ### * igt@gem_madvise@dontneed-evict-race: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8119_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglb: NOTRUN -> [SKIP][3] ([i915#5325]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-snb5/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglb: NOTRUN -> [SKIP][5] ([i915#280]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel: - shard-iclb: [PASS][6] -> [SKIP][7] ([i915#4525]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb2/igt@gem_exec_balancer@parallel.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglb: NOTRUN -> [FAIL][8] ([i915#6117]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb5/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-none@vcs1: - shard-iclb: NOTRUN -> [FAIL][9] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@gem_exec_fair@basic-none@vcs1.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][10] -> [FAIL][11] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-glk7/igt@gem_exec_fair@basic-pace@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglb: NOTRUN -> [FAIL][12] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@larger-than-life-batch: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +73 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk3/igt@gem_exec_params@larger-than-life-batch.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglb: NOTRUN -> [SKIP][14] ([i915#4613]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@verify: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl3/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random: - shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk9/igt@gem_lmem_swapping@verify-random.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-tglb: NOTRUN -> [SKIP][17] ([i915#4270]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb1/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglb: NOTRUN -> [SKIP][18] ([i915#3297]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb3/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#3323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl2/igt@gem_userptr_blits@dmabuf-sync.html - shard-tglb: NOTRUN -> [SKIP][20] ([i915#3323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb8/igt@gem_userptr_blits@dmabuf-sync.html - shard-glk: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#3323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html - shard-iclb: NOTRUN -> [SKIP][22] ([i915#3323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][23] -> [DMESG-WARN][24] ([i915#5566] / [i915#716]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-apl6/igt@gen9_exec_parse@allowed-all.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@secure-batches: - shard-tglb: NOTRUN -> [SKIP][25] ([i915#2527] / [i915#2856]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb3/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@unaligned-jump: - shard-iclb: NOTRUN -> [SKIP][26] ([i915#2856]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [PASS][27] -> [SKIP][28] ([i915#4281]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@pc8-residency: - shard-tglb: NOTRUN -> [SKIP][29] ([fdo#109506] / [i915#2411]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb7/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@engine-order: - shard-apl: [PASS][30] -> [FAIL][31] ([i915#6537]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-apl8/igt@i915_pm_rps@engine-order.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl1/igt@i915_pm_rps@engine-order.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#109303]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb8/igt@i915_query@query-topology-known-pci-ids.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][33] ([i915#2521]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#1769]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb8/igt@kms_atomic_transition@plane-all-modeset-transition.html - shard-tglb: NOTRUN -> [SKIP][35] ([i915#1769]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb6/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][36] ([i915#5584]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][37] ([i915#5286]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb7/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271]) +44 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#5286]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#110725] / [fdo#111614]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111614]) +3 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#111615]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#110723]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#6095]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#3689] / [i915#3886]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb6/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#3886]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#3689] / [i915#6095]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb2/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#3886]) +3 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk9/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][49] ([fdo#109271]) +56 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-snb6/igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs.html - shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111615] / [i915#3689]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb8/igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109278]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][52] ([i915#3689]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb2/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_chamelium@common-hpd-after-suspend: - shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl6/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@hdmi-hpd-storm-disable: - shard-glk: NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +3 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk7/igt@kms_chamelium@hdmi-hpd-storm-disable.html - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109284] / [fdo#111827]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@kms_chamelium@hdmi-hpd-storm-disable.html - shard-snb: NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-snb5/igt@kms_chamelium@hdmi-hpd-storm-disable.html * igt@kms_color_chamelium@ctm-max: - shard-tglb: NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb5/igt@kms_color_chamelium@ctm-max.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglb: NOTRUN -> [SKIP][58] ([i915#3555]) +4 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb2/igt@kms_cursor_crc@cursor-random-32x10.html - shard-iclb: NOTRUN -> [SKIP][59] ([i915#3555]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109274]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglb: NOTRUN -> [SKIP][61] ([fdo#109274] / [fdo#111825] / [i915#3637]) +5 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb5/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-iclb: [PASS][62] -> [SKIP][63] ([i915#3555]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][64] ([i915#2672]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][65] ([i915#2587] / [i915#2672]) +4 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html - shard-tglb: NOTRUN -> [SKIP][66] ([i915#2587] / [i915#2672]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109280]) +6 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-tglb: NOTRUN -> [SKIP][68] ([fdo#109280] / [fdo#111825]) +14 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-tglb: NOTRUN -> [SKIP][69] ([i915#6497]) +3 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#109289]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1: - shard-iclb: [PASS][71] -> [SKIP][72] ([i915#5176]) +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb8/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][73] -> [SKIP][74] ([i915#5235]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#658]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk5/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109642] / [fdo#111068] / [i915#658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglb: NOTRUN -> [SKIP][78] ([i915#7037]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@psr2_basic: - shard-tglb: NOTRUN -> [FAIL][79] ([i915#132] / [i915#3467]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb6/igt@kms_psr@psr2_basic.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [PASS][80] -> [SKIP][81] ([fdo#109441]) +2 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb8/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][82] -> [SKIP][83] ([i915#5519]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglb: NOTRUN -> [SKIP][84] ([fdo#111615] / [i915#5289]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@sysfs_clients@sema-10: - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#2994]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk2/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@gem_exec_balancer@parallel-bb-first: - shard-iclb: [SKIP][86] ([i915#4525]) -> [PASS][87] +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb5/igt@gem_exec_balancer@parallel-bb-first.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [FAIL][88] ([i915#2842]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][90] ([i915#2842]) -> [PASS][91] +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-glk2/igt@gem_exec_fair@basic-none-share@rcs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][92] ([i915#2842]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [FAIL][94] ([i915#4171]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-tglb6/igt@gem_softpin@evict-single-offset.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb8/igt@gem_softpin@evict-single-offset.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [DMESG-WARN][96] ([i915#5566] / [i915#716]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-glk1/igt@gen9_exec_parse@allowed-single.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk2/igt@gen9_exec_parse@allowed-single.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [FAIL][98] ([i915#2346]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2: - shard-glk: [FAIL][100] ([i915#79]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2: - shard-glk: [FAIL][102] ([i915#2122]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-glk2/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk1/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [SKIP][104] ([i915#5235]) -> [PASS][105] +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr@psr2_cursor_mmap_gtt: - shard-iclb: [SKIP][106] ([fdo#109441]) -> [PASS][107] +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_gtt.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-iclb: [SKIP][108] ([i915#5519]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: [FAIL][110] ([i915#5852]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-glk1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk7/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [FAIL][112] ([i915#6117]) -> [SKIP][113] ([i915#4525]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_pread@exhaustion: - shard-apl: [WARN][114] ([i915#2658]) -> [INCOMPLETE][115] ([i915#7248]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-apl1/igt@gem_pread@exhaustion.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl2/igt@gem_pread@exhaustion.html - shard-tglb: [WARN][116] ([i915#2658]) -> [INCOMPLETE][117] ([i915#7248]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-tglb8/igt@gem_pread@exhaustion.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: [INCOMPLETE][118] ([i915#7248]) -> [WARN][119] ([i915#2658]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-apl3/igt@gem_pwrite@basic-exhaustion.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl1/igt@gem_pwrite@basic-exhaustion.html - shard-tglb: [INCOMPLETE][120] ([i915#7248]) -> [WARN][121] ([i915#2658]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-tglb7/igt@gem_pwrite@basic-exhaustion.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-tglb1/igt@gem_pwrite@basic-exhaustion.html - shard-glk: [INCOMPLETE][122] ([i915#7248]) -> [WARN][123] ([i915#2658]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-glk8/igt@gem_pwrite@basic-exhaustion.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-glk9/igt@gem_pwrite@basic-exhaustion.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-iclb: [WARN][124] ([i915#2684]) -> [FAIL][125] ([i915#2684]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb2/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [FAIL][126] ([i915#4573]) -> [DMESG-FAIL][127] ([IGT#6]) +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][128] ([i915#2920]) -> [SKIP][129] ([i915#658]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7062/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/shard-iclb3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5584]: https://gitlab.freedesktop.org/drm/intel/issues/5584 [i915#5852]: https://gitlab.freedesktop.org/drm/intel/issues/5852 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7062 -> IGTPW_8119 CI-20190529: 20190529 CI_DRM_12389: 3eb60fea7cd44530f85bd9362508647aceea1dea @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8119: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/index.html IGT_7062: 6539ea5fe17fce683133c45f07fac316593ee1f7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8119/index.html [-- Attachment #2: Type: text/html, Size: 41403 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-11-17 1:34 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-15 10:34 [igt-dev] [PATCH i-g-t] tests/i915/madvise: verify async eviction with madvise Matthew Auld 2022-11-15 13:39 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2022-11-15 17:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2022-11-16 9:45 ` [igt-dev] [Intel-gfx] [PATCH i-g-t] " Das, Nirmoy 2022-11-16 18:55 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/madvise: verify async eviction with madvise (rev2) Patchwork 2022-11-17 1:34 ` [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