* [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin
@ 2022-11-12 6:07 Vikas Srivastava
2022-11-12 6:51 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Vikas Srivastava @ 2022-11-12 6:07 UTC (permalink / raw)
To: igt-dev; +Cc: chris.p.wilson
From: Chris Wilson <chris.p.wilson@intel.com>
Replace the custom spinner with igt_spin, possible now that igt_spin
can provide the out-fence. This has a major advantage, such as able to run
on any platform, including over the cmdparser.
Signed-off-by: Chris Wilson <chris.p.wilson@intel.com>
Acked-by: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
---
tests/i915/gem_exec_fence.c | 108 +++++++++---------------------------
1 file changed, 26 insertions(+), 82 deletions(-)
diff --git a/tests/i915/gem_exec_fence.c b/tests/i915/gem_exec_fence.c
index e8d51a732..4b5a74490 100644
--- a/tests/i915/gem_exec_fence.c
+++ b/tests/i915/gem_exec_fence.c
@@ -25,10 +25,10 @@
#include <sys/ioctl.h>
#include <sys/poll.h>
#include <sys/signal.h>
-
#include "i915/gem.h"
#include "i915/gem_create.h"
#include "igt.h"
+#include "igt_dummyload.h"
#include "igt_store.h"
#include "igt_syncobj.h"
#include "igt_sysfs.h"
@@ -40,11 +40,11 @@ IGT_TEST_DESCRIPTION("Check that execbuf waits for explicit fences");
#ifndef SYNC_IOC_MERGE
struct sync_merge_data {
- char name[32];
- int32_t fd2;
- int32_t fence;
- uint32_t flags;
- uint32_t pad;
+ char name[32];
+ int32_t fd2;
+ int32_t fence;
+ uint32_t flags;
+ uint32_t pad;
};
#define SYNC_IOC_MAGIC '>'
#define SYNC_IOC_MERGE _IOWR(SYNC_IOC_MAGIC, 3, struct sync_merge_data)
@@ -67,109 +67,53 @@ static bool fence_busy(int fence)
#define HANG 0x1
#define NONBLOCK 0x2
#define WAIT 0x4
+#define NOT(n) !n
static void test_fence_busy(int fd, const intel_ctx_t *ctx,
const struct intel_execution_engine2 *e,
unsigned flags)
{
- const unsigned int gen = intel_gen(intel_get_drm_devid(fd));
- struct drm_i915_gem_exec_object2 obj;
- struct drm_i915_gem_relocation_entry reloc;
- struct drm_i915_gem_execbuffer2 execbuf;
- struct timespec tv;
- uint32_t *batch;
uint64_t ahnd = get_reloc_ahnd(fd, ctx->id);
- int fence, i, timeout;
-
- if ((flags & HANG) == 0)
- igt_require(gem_class_has_mutable_submission(fd, e->class));
+ struct timespec tv;
+ int fence, timeout;
+ igt_spin_t *spin;
gem_quiescent_gpu(fd);
- memset(&execbuf, 0, sizeof(execbuf));
- execbuf.buffers_ptr = to_user_pointer(&obj);
- execbuf.buffer_count = 1;
- execbuf.flags = e->flags | I915_EXEC_FENCE_OUT;
- execbuf.rsvd1 = ctx->id;
-
- memset(&obj, 0, sizeof(obj));
- obj.handle = gem_create(fd, 4096);
- obj.offset = get_offset(ahnd, obj.handle, 4096, 0);
-
- batch = gem_mmap__device_coherent(fd, obj.handle, 0, 4096, PROT_WRITE);
- gem_set_domain(fd, obj.handle,
- I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
-
- i = 0;
- if ((flags & HANG) == 0)
- batch[i++] = 0x5 << 23;
-
- if (!ahnd) {
- obj.relocs_ptr = to_user_pointer(&reloc);
- obj.relocation_count = 1;
- memset(&reloc, 0, sizeof(reloc));
- reloc.target_handle = obj.handle; /* recurse */
- reloc.presumed_offset = obj.offset;
- reloc.offset = (i + 1) * sizeof(uint32_t);
- reloc.delta = 0;
- reloc.read_domains = I915_GEM_DOMAIN_COMMAND;
- reloc.write_domain = 0;
- } else {
- obj.flags |= EXEC_OBJECT_PINNED;
- }
-
- batch[i] = MI_BATCH_BUFFER_START;
- if (gen >= 8) {
- batch[i] |= 1 << 8 | 1;
- batch[++i] = obj.offset;
- batch[++i] = obj.offset >> 32;
- } else if (gen >= 6) {
- batch[i] |= 1 << 8;
- batch[++i] = obj.offset;
- } else {
- batch[i] |= 2 << 6;
- batch[++i] = obj.offset;
- if (gen < 4) {
- batch[i] |= 1;
- reloc.delta = 1;
- }
- }
- i++;
-
- execbuf.rsvd2 = -1;
- gem_execbuf_wr(fd, &execbuf);
- fence = execbuf.rsvd2 >> 32;
- igt_assert(fence != -1);
+ spin = igt_spin_new(fd, .ahnd = ahnd, .ctx = ctx, .engine = e->flags,
+ .flags = IGT_SPIN_FENCE_OUT |
+ ((flags & HANG) ? IGT_SPIN_NO_PREEMPTION : 0));
- igt_assert(gem_bo_busy(fd, obj.handle));
+ fence = spin->out_fence;
+ igt_assert(gem_bo_busy(fd, spin->handle));
igt_assert(fence_busy(fence));
timeout = 120;
if ((flags & HANG) == 0) {
- *batch = MI_BATCH_BUFFER_END;
- __sync_synchronize();
- timeout = 1;
+ igt_spin_end(spin);
+ timeout = NOT(igt_run_in_simulation())?1:120;
}
- munmap(batch, 4096);
if (flags & WAIT) {
struct pollfd pfd = { .fd = fence, .events = POLLIN };
igt_assert(poll(&pfd, 1, timeout*1000) == 1);
} else {
+ int elapsed_time;
memset(&tv, 0, sizeof(tv));
- while (fence_busy(fence))
+ while (fence_busy(fence)) {
+ elapsed_time = igt_seconds_elapsed(&tv);
+ if (elapsed_time >= timeout)
+ igt_info("Elapsed time (%ds)\n", elapsed_time);
igt_assert(igt_seconds_elapsed(&tv) < timeout);
+ }
+ igt_info("Elapsed time (%ds)\n", igt_seconds_elapsed(&tv));
}
-
- igt_assert(!gem_bo_busy(fd, obj.handle));
+ igt_assert(!gem_bo_busy(fd, spin->handle));
igt_assert_eq(sync_fence_status(fence),
flags & HANG ? -EIO : SYNC_FENCE_OK);
- close(fence);
- gem_close(fd, obj.handle);
- put_offset(ahnd, obj.handle);
+ igt_spin_free(fd, spin);
put_ahnd(ahnd);
-
gem_quiescent_gpu(fd);
}
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin (rev2) 2022-11-12 6:07 [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin Vikas Srivastava @ 2022-11-12 6:51 ` Patchwork 2022-11-12 16:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-17 14:30 ` [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-11-12 6:51 UTC (permalink / raw) To: Vikas Srivastava; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7117 bytes --] == Series Details == Series: tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin (rev2) URL : https://patchwork.freedesktop.org/series/110735/ State : success == Summary == CI Bug Log - changes from CI_DRM_12372 -> IGTPW_8091 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): fi-pnv-d510 Missing (2): fi-ctg-p8600 fi-bdw-samus Known issues ------------ Here are the changes found in IGTPW_8091 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_engines: - fi-rkl-guc: [PASS][1] -> [INCOMPLETE][2] ([i915#4418]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][3] ([fdo#109271]) +43 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@runner@aborted: - fi-rkl-guc: NOTRUN -> [FAIL][4] ([i915#4312]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-rkl-guc/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_fence@basic-busy@bcs0: - fi-glk-j4005: [SKIP][5] ([fdo#109271]) -> [PASS][6] +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-glk-j4005/igt@gem_exec_fence@basic-busy@bcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-glk-j4005/igt@gem_exec_fence@basic-busy@bcs0.html - fi-bxt-dsi: [SKIP][7] ([fdo#109271]) -> [PASS][8] +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-bxt-dsi/igt@gem_exec_fence@basic-busy@bcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-bxt-dsi/igt@gem_exec_fence@basic-busy@bcs0.html - fi-skl-6700k2: [SKIP][9] ([fdo#109271]) -> [PASS][10] +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-skl-6700k2/igt@gem_exec_fence@basic-busy@bcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-skl-6700k2/igt@gem_exec_fence@basic-busy@bcs0.html - fi-cfl-8109u: [SKIP][11] ([fdo#109271]) -> [PASS][12] +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-cfl-8109u/igt@gem_exec_fence@basic-busy@bcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-cfl-8109u/igt@gem_exec_fence@basic-busy@bcs0.html - fi-kbl-7567u: [SKIP][13] ([fdo#109271]) -> [PASS][14] +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@bcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-kbl-7567u/igt@gem_exec_fence@basic-busy@bcs0.html * igt@gem_exec_fence@basic-wait@bcs0: - fi-cfl-guc: [SKIP][15] ([fdo#109271]) -> [PASS][16] +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-cfl-guc/igt@gem_exec_fence@basic-wait@bcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-cfl-guc/igt@gem_exec_fence@basic-wait@bcs0.html - {bat-kbl-2}: [SKIP][17] ([fdo#109271]) -> [PASS][18] +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/bat-kbl-2/igt@gem_exec_fence@basic-wait@bcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/bat-kbl-2/igt@gem_exec_fence@basic-wait@bcs0.html - fi-skl-6600u: [SKIP][19] ([fdo#109271]) -> [PASS][20] +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-skl-6600u/igt@gem_exec_fence@basic-wait@bcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-skl-6600u/igt@gem_exec_fence@basic-wait@bcs0.html - fi-apl-guc: [SKIP][21] ([fdo#109271]) -> [PASS][22] +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-apl-guc/igt@gem_exec_fence@basic-wait@bcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-apl-guc/igt@gem_exec_fence@basic-wait@bcs0.html - fi-skl-guc: [SKIP][23] ([fdo#109271]) -> [PASS][24] +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-skl-guc/igt@gem_exec_fence@basic-wait@bcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-skl-guc/igt@gem_exec_fence@basic-wait@bcs0.html - fi-cfl-8700k: [SKIP][25] ([fdo#109271]) -> [PASS][26] +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/fi-cfl-8700k/igt@gem_exec_fence@basic-wait@bcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/fi-cfl-8700k/igt@gem_exec_fence@basic-wait@bcs0.html * igt@gem_exec_suspend@basic-s0@smem: - {bat-rplp-1}: [DMESG-WARN][27] ([i915#2867]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/bat-rplp-1/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@hugepages: - {bat-rpls-2}: [DMESG-WARN][29] ([i915#5278]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/bat-rpls-2/igt@i915_selftest@live@hugepages.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/bat-rpls-2/igt@i915_selftest@live@hugepages.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 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4418]: https://gitlab.freedesktop.org/drm/intel/issues/4418 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5278]: https://gitlab.freedesktop.org/drm/intel/issues/5278 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6949]: https://gitlab.freedesktop.org/drm/intel/issues/6949 [i915#7058]: https://gitlab.freedesktop.org/drm/intel/issues/7058 [i915#7346]: https://gitlab.freedesktop.org/drm/intel/issues/7346 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7051 -> IGTPW_8091 CI-20190529: 20190529 CI_DRM_12372: 2cc304afd4967ceffd14940ff73a8beb31778f90 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8091: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/index.html IGT_7051: 7da9f813cdacb80d4471fc6ddb493bae9c46913d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/index.html [-- Attachment #2: Type: text/html, Size: 8268 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin (rev2) 2022-11-12 6:07 [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin Vikas Srivastava 2022-11-12 6:51 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin (rev2) Patchwork @ 2022-11-12 16:18 ` Patchwork 2022-11-17 14:30 ` [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2022-11-12 16:18 UTC (permalink / raw) To: Vikas Srivastava; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 44910 bytes --] == Series Details == Series: tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin (rev2) URL : https://patchwork.freedesktop.org/series/110735/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12372_full -> IGTPW_8091_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8091_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8091_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/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_8091_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs: - shard-glk: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html Known issues ------------ Here are the changes found in IGTPW_8091_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-snb7/igt@gem_ctx_persistence@processes.html * igt@gem_exec_balancer@parallel-out-fence: - shard-iclb: [PASS][4] -> [SKIP][5] ([i915#4525]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb1/igt@gem_exec_balancer@parallel-out-fence.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb8/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][6] -> [FAIL][7] ([i915#2846]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk9/igt@gem_exec_fair@basic-deadline.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk7/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][8] -> [FAIL][9] ([i915#2842]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][10] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-iclb: NOTRUN -> [SKIP][11] ([fdo#109313]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-tglb: NOTRUN -> [SKIP][12] ([fdo#109313]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_params@secure-non-root: - shard-tglb: NOTRUN -> [SKIP][13] ([fdo#112283]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb1/igt@gem_exec_params@secure-non-root.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#2190]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random: - shard-tglb: NOTRUN -> [SKIP][16] ([i915#4613]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb5/igt@gem_lmem_swapping@parallel-random.html - shard-glk: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4613]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk8/igt@gem_lmem_swapping@parallel-random.html * igt@gem_pwrite@basic-exhaustion: - shard-tglb: NOTRUN -> [WARN][18] ([i915#2658]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb5/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#7248]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][20] ([i915#768]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb5/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_softpin@evict-single-offset: - shard-iclb: [PASS][21] -> [FAIL][22] ([i915#4171]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb2/igt@gem_softpin@evict-single-offset.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb6/igt@gem_softpin@evict-single-offset.html * igt@gem_userptr_blits@dmabuf-sync: - shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#3323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@input-checking: - shard-tglb: NOTRUN -> [DMESG-WARN][24] ([i915#4991]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb5/igt@gem_userptr_blits@input-checking.html - shard-glk: NOTRUN -> [DMESG-WARN][25] ([i915#4991]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk1/igt@gem_userptr_blits@input-checking.html * igt@gem_vm_create@invalid-create: - shard-snb: NOTRUN -> [SKIP][26] ([fdo#109271]) +53 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-snb6/igt@gem_vm_create@invalid-create.html * igt@gen9_exec_parse@secure-batches: - shard-tglb: NOTRUN -> [SKIP][27] ([i915#2527] / [i915#2856]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb3/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglb: [PASS][28] -> [WARN][29] ([i915#2681]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-tglb7/igt@i915_pm_rc6_residency@rc6-fence.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb2/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-tglb: NOTRUN -> [SKIP][30] ([fdo#111644] / [i915#1397] / [i915#2411]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb8/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][31] ([i915#5584]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-2.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#5286]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][33] ([fdo#111614]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#110725] / [fdo#111614]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb1/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][35] ([fdo#111615]) +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb8/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#110723]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109278] / [i915#3886]) +3 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][38] ([i915#3689] / [i915#6095]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb8/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109278]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb2/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][40] ([i915#3689] / [i915#3886]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb3/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#3886]) +4 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl8/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#6095]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb1/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#3886]) +4 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk8/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#3689]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111615] / [i915#3689]) +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb1/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html * igt@kms_chamelium@hdmi-crc-multiple: - shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk2/igt@kms_chamelium@hdmi-crc-multiple.html - shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109284] / [fdo#111827]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb6/igt@kms_chamelium@hdmi-crc-multiple.html * igt@kms_chamelium@hdmi-hpd-storm: - shard-apl: NOTRUN -> [SKIP][48] ([fdo#109271] / [fdo#111827]) +4 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl6/igt@kms_chamelium@hdmi-hpd-storm.html * igt@kms_content_protection@content_type_change: - shard-tglb: NOTRUN -> [SKIP][49] ([i915#7118]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb7/igt@kms_content_protection@content_type_change.html - shard-iclb: NOTRUN -> [SKIP][50] ([i915#7118]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb1/igt@kms_content_protection@content_type_change.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#3359]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb3/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@cursorb-vs-flipb@atomic: - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#109274] / [fdo#111825]) +6 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb3/igt@kms_cursor_legacy@cursorb-vs-flipb@atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb@legacy: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109274]) +6 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipb@legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [PASS][54] -> [FAIL][55] ([i915#2346]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_dp_aux_dev: - shard-iclb: [PASS][56] -> [DMESG-WARN][57] ([i915#4391]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb6/igt@kms_dp_aux_dev.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb7/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglb: NOTRUN -> [SKIP][58] ([fdo#109274] / [fdo#111825] / [i915#3637]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: [PASS][59] -> [FAIL][60] ([i915#79]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#2587] / [i915#2672]) +6 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][62] ([i915#2672]) +5 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][63] ([i915#3555]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglb: NOTRUN -> [SKIP][64] ([i915#2587] / [i915#2672]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109280] / [fdo#111825]) +10 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-tglb: NOTRUN -> [SKIP][66] ([i915#6497]) +4 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][67] ([fdo#109280]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-apl: NOTRUN -> [SKIP][68] ([fdo#109271]) +87 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-dp-1: - shard-apl: NOTRUN -> [FAIL][69] ([i915#4573]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-dp-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][70] ([i915#4573]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#5176]) +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][72] ([fdo#109271]) +50 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1: - shard-tglb: NOTRUN -> [SKIP][73] ([i915#5176]) +3 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: NOTRUN -> [SKIP][74] ([i915#658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-tglb: NOTRUN -> [SKIP][75] ([i915#2920]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-glk: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#658]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109441]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb6/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_primary_blt: - shard-iclb: [PASS][79] -> [SKIP][80] ([fdo#109441]) +2 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb2/igt@kms_psr@psr2_primary_blt.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb5/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr@psr2_primary_page_flip: - shard-tglb: NOTRUN -> [FAIL][81] ([i915#132] / [i915#3467]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb8/igt@kms_psr@psr2_primary_page_flip.html * igt@perf_pmu@rc6-suspend: - shard-apl: [PASS][82] -> [DMESG-WARN][83] ([i915#180]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl7/igt@perf_pmu@rc6-suspend.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl3/igt@perf_pmu@rc6-suspend.html * igt@sysfs_clients@recycle-many: - shard-tglb: NOTRUN -> [SKIP][84] ([i915#2994]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb3/igt@sysfs_clients@recycle-many.html - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#2994]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk5/igt@sysfs_clients@recycle-many.html #### Possible fixes #### * igt@drm_read@short-buffer-block: - {shard-rkl}: [SKIP][86] ([i915#4098]) -> [PASS][87] +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-5/igt@drm_read@short-buffer-block.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@drm_read@short-buffer-block.html * igt@fbdev@eof: - {shard-rkl}: [SKIP][88] ([i915#2582]) -> [PASS][89] +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-4/igt@fbdev@eof.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-1/igt@fbdev@eof.html * igt@feature_discovery@psr2: - shard-iclb: [SKIP][90] ([i915#658]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb7/igt@feature_discovery@psr2.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb2/igt@feature_discovery@psr2.html * igt@gem_ctx_persistence@hang: - {shard-rkl}: [SKIP][92] ([i915#6252]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-5/igt@gem_ctx_persistence@hang.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-4/igt@gem_ctx_persistence@hang.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: [SKIP][94] ([i915#4525]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb7/igt@gem_exec_balancer@parallel-keep-submit-fence.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-none@vcs0: - shard-glk: [FAIL][96] ([i915#2842]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk8/igt@gem_exec_fair@basic-none@vcs0.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-apl: [FAIL][98] ([i915#2842]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl1/igt@gem_exec_fair@basic-pace-share@rcs0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@basic-wait@bcs0: - shard-apl: [SKIP][100] ([fdo#109271]) -> [PASS][101] +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl7/igt@gem_exec_fence@basic-wait@bcs0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl2/igt@gem_exec_fence@basic-wait@bcs0.html - shard-glk: [SKIP][102] ([fdo#109271]) -> [PASS][103] +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk6/igt@gem_exec_fence@basic-wait@bcs0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk1/igt@gem_exec_fence@basic-wait@bcs0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - {shard-rkl}: [SKIP][104] ([i915#3281]) -> [PASS][105] +3 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][106] ([fdo#111656]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-3/igt@gem_mmap_gtt@coherency.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_pread@bench: - {shard-rkl}: [SKIP][108] ([i915#3282]) -> [PASS][109] +3 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-4/igt@gem_pread@bench.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-5/igt@gem_pread@bench.html * igt@gen9_exec_parse@unaligned-access: - {shard-rkl}: [SKIP][110] ([i915#2527]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - {shard-rkl}: [SKIP][112] ([i915#1397]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-5/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend-devices: - {shard-rkl}: [FAIL][114] ([i915#7478]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-3/igt@i915_pm_rpm@system-suspend-devices.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@engine-order: - shard-apl: [FAIL][116] ([i915#6537]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl6/igt@i915_pm_rps@engine-order.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl2/igt@i915_pm_rps@engine-order.html * igt@kms_atomic@plane-overlay-legacy: - {shard-rkl}: [SKIP][118] ([i915#1845] / [i915#4098]) -> [PASS][119] +15 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-5/igt@kms_atomic@plane-overlay-legacy.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@kms_atomic@plane-overlay-legacy.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1: - shard-glk: [INCOMPLETE][120] ([i915#5584]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-1.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - {shard-rkl}: [SKIP][122] ([i915#1849] / [i915#4098]) -> [PASS][123] +14 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_plane@pixel-format@pipe-b-planes: - {shard-rkl}: [SKIP][124] ([i915#3558]) -> [PASS][125] +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-3/igt@kms_plane@pixel-format@pipe-b-planes.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_properties@plane-properties-legacy: - {shard-rkl}: [SKIP][126] ([i915#1849]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-5/igt@kms_properties@plane-properties-legacy.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr@cursor_mmap_gtt: - {shard-rkl}: [SKIP][128] ([i915#1072]) -> [PASS][129] +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-3/igt@kms_psr@cursor_mmap_gtt.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][130] ([fdo#109441]) -> [PASS][131] +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-iclb: [SKIP][132] ([i915#5519]) -> [PASS][133] +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - {shard-rkl}: [SKIP][134] ([i915#5461]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-tglb: [INCOMPLETE][136] -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-tglb5/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-tglb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-apl: [DMESG-WARN][138] ([i915#180]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl2/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@perf@gen12-oa-tlb-invalidate: - {shard-rkl}: [SKIP][140] ([fdo#109289]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-5/igt@perf@gen12-oa-tlb-invalidate.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-4/igt@perf@gen12-oa-tlb-invalidate.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][142] ([i915#1722]) -> [PASS][143] [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-rkl-3/igt@perf@polling-small-buf.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-rkl-6/igt@perf@polling-small-buf.html * igt@perf_pmu@busy-idle@vcs0: - {shard-dg1}: [FAIL][144] ([i915#4349]) -> [PASS][145] +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html #### Warnings #### * igt@gem_pread@exhaustion: - shard-glk: [WARN][146] ([i915#2658]) -> [INCOMPLETE][147] ([i915#7248]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-glk6/igt@gem_pread@exhaustion.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-glk2/igt@gem_pread@exhaustion.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [INCOMPLETE][148] ([i915#180]) -> [FAIL][149] ([i915#4767]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [DMESG-FAIL][150] ([IGT#6]) -> [FAIL][151] ([i915#4573]) +1 similar issue [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl6/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-iclb: [SKIP][152] ([i915#2920]) -> [SKIP][153] ([fdo#111068] / [i915#658]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][154], [FAIL][155], [FAIL][156], [FAIL][157]) ([i915#180] / [i915#3002] / [i915#4312]) -> ([FAIL][158], [FAIL][159], [FAIL][160]) ([i915#3002] / [i915#4312]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl1/igt@runner@aborted.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl3/igt@runner@aborted.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl1/igt@runner@aborted.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12372/shard-apl1/igt@runner@aborted.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl3/igt@runner@aborted.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl2/igt@runner@aborted.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [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#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [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#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [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#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [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#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [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#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#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [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#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [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#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5584]: https://gitlab.freedesktop.org/drm/intel/issues/5584 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [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#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7468]: https://gitlab.freedesktop.org/drm/intel/issues/7468 [i915#7478]: https://gitlab.freedesktop.org/drm/intel/issues/7478 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7051 -> IGTPW_8091 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12372: 2cc304afd4967ceffd14940ff73a8beb31778f90 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8091: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8091/index.html IGT_7051: 7da9f813cdacb80d4471fc6ddb493bae9c46913d @ 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_8091/index.html [-- Attachment #2: Type: text/html, Size: 48414 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin 2022-11-12 6:07 [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin Vikas Srivastava 2022-11-12 6:51 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin (rev2) Patchwork 2022-11-12 16:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2022-11-17 14:30 ` Kamil Konieczny 2 siblings, 0 replies; 4+ messages in thread From: Kamil Konieczny @ 2022-11-17 14:30 UTC (permalink / raw) To: igt-dev; +Cc: Chris P Wilson Hi Vikas, On 2022-11-12 at 11:37:14 +0530, Vikas Srivastava wrote: > From: Chris Wilson <chris.p.wilson@intel.com> > > Replace the custom spinner with igt_spin, possible now that igt_spin > can provide the out-fence. This has a major advantage, such as able to run > on any platform, including over the cmdparser. > > Signed-off-by: Chris Wilson <chris.p.wilson@intel.com> > Acked-by: Priyanka Dandamudi <priyanka.dandamudi@intel.com> Thank you for resending this with corrections, I have few small nits, see below. > --- > tests/i915/gem_exec_fence.c | 108 +++++++++--------------------------- > 1 file changed, 26 insertions(+), 82 deletions(-) > > diff --git a/tests/i915/gem_exec_fence.c b/tests/i915/gem_exec_fence.c > index e8d51a732..4b5a74490 100644 > --- a/tests/i915/gem_exec_fence.c > +++ b/tests/i915/gem_exec_fence.c > @@ -25,10 +25,10 @@ > #include <sys/ioctl.h> > #include <sys/poll.h> > #include <sys/signal.h> > - > #include "i915/gem.h" > #include "i915/gem_create.h" > #include "igt.h" > +#include "igt_dummyload.h" > #include "igt_store.h" > #include "igt_syncobj.h" > #include "igt_sysfs.h" > @@ -40,11 +40,11 @@ IGT_TEST_DESCRIPTION("Check that execbuf waits for explicit fences"); > > #ifndef SYNC_IOC_MERGE > struct sync_merge_data { > - char name[32]; > - int32_t fd2; > - int32_t fence; > - uint32_t flags; > - uint32_t pad; > + char name[32]; > + int32_t fd2; > + int32_t fence; > + uint32_t flags; > + uint32_t pad; > }; > #define SYNC_IOC_MAGIC '>' > #define SYNC_IOC_MERGE _IOWR(SYNC_IOC_MAGIC, 3, struct sync_merge_data) > @@ -67,109 +67,53 @@ static bool fence_busy(int fence) > #define HANG 0x1 > #define NONBLOCK 0x2 > #define WAIT 0x4 > +#define NOT(n) !n Remove this NOT(n) macro, see below. > > static void test_fence_busy(int fd, const intel_ctx_t *ctx, > const struct intel_execution_engine2 *e, > unsigned flags) > { > - const unsigned int gen = intel_gen(intel_get_drm_devid(fd)); > - struct drm_i915_gem_exec_object2 obj; > - struct drm_i915_gem_relocation_entry reloc; > - struct drm_i915_gem_execbuffer2 execbuf; > - struct timespec tv; > - uint32_t *batch; > uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); > - int fence, i, timeout; > - > - if ((flags & HANG) == 0) > - igt_require(gem_class_has_mutable_submission(fd, e->class)); > + struct timespec tv; > + int fence, timeout; > + igt_spin_t *spin; > > gem_quiescent_gpu(fd); > > - memset(&execbuf, 0, sizeof(execbuf)); > - execbuf.buffers_ptr = to_user_pointer(&obj); > - execbuf.buffer_count = 1; > - execbuf.flags = e->flags | I915_EXEC_FENCE_OUT; > - execbuf.rsvd1 = ctx->id; > - > - memset(&obj, 0, sizeof(obj)); > - obj.handle = gem_create(fd, 4096); > - obj.offset = get_offset(ahnd, obj.handle, 4096, 0); > - > - batch = gem_mmap__device_coherent(fd, obj.handle, 0, 4096, PROT_WRITE); > - gem_set_domain(fd, obj.handle, > - I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT); > - > - i = 0; > - if ((flags & HANG) == 0) > - batch[i++] = 0x5 << 23; > - > - if (!ahnd) { > - obj.relocs_ptr = to_user_pointer(&reloc); > - obj.relocation_count = 1; > - memset(&reloc, 0, sizeof(reloc)); > - reloc.target_handle = obj.handle; /* recurse */ > - reloc.presumed_offset = obj.offset; > - reloc.offset = (i + 1) * sizeof(uint32_t); > - reloc.delta = 0; > - reloc.read_domains = I915_GEM_DOMAIN_COMMAND; > - reloc.write_domain = 0; > - } else { > - obj.flags |= EXEC_OBJECT_PINNED; > - } > - > - batch[i] = MI_BATCH_BUFFER_START; > - if (gen >= 8) { > - batch[i] |= 1 << 8 | 1; > - batch[++i] = obj.offset; > - batch[++i] = obj.offset >> 32; > - } else if (gen >= 6) { > - batch[i] |= 1 << 8; > - batch[++i] = obj.offset; > - } else { > - batch[i] |= 2 << 6; > - batch[++i] = obj.offset; > - if (gen < 4) { > - batch[i] |= 1; > - reloc.delta = 1; > - } > - } > - i++; > - > - execbuf.rsvd2 = -1; > - gem_execbuf_wr(fd, &execbuf); > - fence = execbuf.rsvd2 >> 32; > - igt_assert(fence != -1); > + spin = igt_spin_new(fd, .ahnd = ahnd, .ctx = ctx, .engine = e->flags, > + .flags = IGT_SPIN_FENCE_OUT | > + ((flags & HANG) ? IGT_SPIN_NO_PREEMPTION : 0)); > > - igt_assert(gem_bo_busy(fd, obj.handle)); > + fence = spin->out_fence; > + igt_assert(gem_bo_busy(fd, spin->handle)); > igt_assert(fence_busy(fence)); > > timeout = 120; > if ((flags & HANG) == 0) { > - *batch = MI_BATCH_BUFFER_END; > - __sync_synchronize(); > - timeout = 1; > + igt_spin_end(spin); > + timeout = NOT(igt_run_in_simulation())?1:120; Here use SLOW_QUICK macro, this should be: timeout = SLOW_QUICK(120, 1); Regards, Kamil > } > - munmap(batch, 4096); > > if (flags & WAIT) { > struct pollfd pfd = { .fd = fence, .events = POLLIN }; > igt_assert(poll(&pfd, 1, timeout*1000) == 1); > } else { > + int elapsed_time; > memset(&tv, 0, sizeof(tv)); > - while (fence_busy(fence)) > + while (fence_busy(fence)) { > + elapsed_time = igt_seconds_elapsed(&tv); > + if (elapsed_time >= timeout) > + igt_info("Elapsed time (%ds)\n", elapsed_time); > igt_assert(igt_seconds_elapsed(&tv) < timeout); > + } > + igt_info("Elapsed time (%ds)\n", igt_seconds_elapsed(&tv)); > } > - > - igt_assert(!gem_bo_busy(fd, obj.handle)); > + igt_assert(!gem_bo_busy(fd, spin->handle)); > igt_assert_eq(sync_fence_status(fence), > flags & HANG ? -EIO : SYNC_FENCE_OK); > > - close(fence); > - gem_close(fd, obj.handle); > - put_offset(ahnd, obj.handle); > + igt_spin_free(fd, spin); > put_ahnd(ahnd); > - > gem_quiescent_gpu(fd); > } > > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-11-17 14:30 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-12 6:07 [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin Vikas Srivastava 2022-11-12 6:51 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin (rev2) Patchwork 2022-11-12 16:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2022-11-17 14:30 ` [igt-dev] [PATCH i-g-t v2] tests/i915/gem_exec_fence: Replacing custom spinner with igt_spin Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox