* [igt-dev] [PATCH i-g-t 0/2] Add flat-ccs tests
@ 2023-10-04 16:37 Zbigniew Kempczyński
2023-10-04 16:37 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_blt: Release an offset in the allocator on buffer destroy Zbigniew Kempczyński
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2023-10-04 16:37 UTC (permalink / raw)
To: igt-dev
On DG2 I observe data inconsistency with flat-ccs when buffers are
returning back from system to vram. For the verification first group
of subtests is run on 20% of vram, second on 110% which triggers
eviction. Issue is visible mostly on 'parallel' subtests.
Zbigniew Kempczyński (2):
lib/intel_blt: Release an offset in the allocator on buffer destroy
tests/xe_evict: Add flat-ccs eviction tests
lib/intel_blt.c | 15 +-
lib/intel_blt.h | 2 +
tests/intel/xe_evict.c | 335 ++++++++++++++++++++++++++++++++++++++++-
3 files changed, 350 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t 1/2] lib/intel_blt: Release an offset in the allocator on buffer destroy
2023-10-04 16:37 [igt-dev] [PATCH i-g-t 0/2] Add flat-ccs tests Zbigniew Kempczyński
@ 2023-10-04 16:37 ` Zbigniew Kempczyński
2023-10-06 8:02 ` Karolina Stolarek
2023-10-04 16:37 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_evict: Add flat-ccs eviction tests Zbigniew Kempczyński
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Zbigniew Kempczyński @ 2023-10-04 16:37 UTC (permalink / raw)
To: igt-dev
Blitter library code requires allocator handle only at the execution
time. That means blt_copy_object structure is allocator agnostic and
offsets are taken for block-copy or fast-copy just before operation.
Operations on bo's like close/create requires to reflect on the
allocator state, otherwise allocator will contain outdated
offsets + sizes leading to fail on allocator operations or the exec.
Helpers blt_create_object() and blt_destroy_object() are unaware
of allocator so if in the meantime object was used in block-copy or
fast-copy it has assigned offset in the allocator. Destroying object
with blt_destroy_object() doesn't release this offset what might
cause failures described above.
There're two possibilities how to solve this - to couple blitter
library with allocator or provide additional helpers which will
release offset in the allocator on destroy path. Latter one is
easier to provide so this is a subject of this change.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Karolina Stolarek <karolina.stolarek@intel.com>
---
lib/intel_blt.c | 15 ++++++++++++++-
lib/intel_blt.h | 2 ++
2 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/lib/intel_blt.c b/lib/intel_blt.c
index b55fa9b529..d2ea88d95f 100644
--- a/lib/intel_blt.c
+++ b/lib/intel_blt.c
@@ -1470,15 +1470,28 @@ blt_create_object(const struct blt_copy_data *blt, uint32_t region,
return obj;
}
-void blt_destroy_object(int fd, struct blt_copy_object *obj)
+static void __blt_destroy_object(int fd, uint64_t ahnd, struct blt_copy_object *obj)
{
if (obj->ptr)
munmap(obj->ptr, obj->size);
gem_close(fd, obj->handle);
+ if (ahnd)
+ intel_allocator_free(ahnd, obj->handle);
free(obj);
}
+void blt_destroy_object(int fd, struct blt_copy_object *obj)
+{
+ __blt_destroy_object(fd, 0, obj);
+}
+
+void blt_destroy_object_and_alloc_free(int fd, uint64_t ahnd,
+ struct blt_copy_object *obj)
+{
+ __blt_destroy_object(fd, ahnd, obj);
+}
+
void blt_set_object(struct blt_copy_object *obj,
uint32_t handle, uint64_t size, uint32_t region,
uint8_t mocs, enum blt_tiling_type tiling,
diff --git a/lib/intel_blt.h b/lib/intel_blt.h
index d9c8883c7d..a9ddb99647 100644
--- a/lib/intel_blt.h
+++ b/lib/intel_blt.h
@@ -245,6 +245,8 @@ blt_create_object(const struct blt_copy_data *blt, uint32_t region,
enum blt_compression_type compression_type,
bool create_mapping);
void blt_destroy_object(int fd, struct blt_copy_object *obj);
+void blt_destroy_object_and_alloc_free(int fd, uint64_t ahnd,
+ struct blt_copy_object *obj);
void blt_set_object(struct blt_copy_object *obj,
uint32_t handle, uint64_t size, uint32_t region,
uint8_t mocs, enum blt_tiling_type tiling,
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/xe_evict: Add flat-ccs eviction tests
2023-10-04 16:37 [igt-dev] [PATCH i-g-t 0/2] Add flat-ccs tests Zbigniew Kempczyński
2023-10-04 16:37 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_blt: Release an offset in the allocator on buffer destroy Zbigniew Kempczyński
@ 2023-10-04 16:37 ` Zbigniew Kempczyński
2023-10-04 19:25 ` [igt-dev] ✓ Fi.CI.BAT: success for Add flat-ccs tests Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Zbigniew Kempczyński @ 2023-10-04 16:37 UTC (permalink / raw)
To: igt-dev; +Cc: Matthew Auld
Exercise is flat-ccs eviction working fine in the kernel driver
when buffers takes more than available vram. Differentiate with
standalone/parallel execution, same or separate drm fd and buffer
freeing time. Tests are divided to two groups - first which won't
exceed vram memory size (thus don't trigger eviction, but it is
good for the reference logic is properly compress/decompress
buffers) and second which exceeds.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
---
tests/intel/xe_evict.c | 335 ++++++++++++++++++++++++++++++++++++++++-
1 file changed, 334 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_evict.c b/tests/intel/xe_evict.c
index 5b64e56b45..e67c0a9d29 100644
--- a/tests/intel/xe_evict.c
+++ b/tests/intel/xe_evict.c
@@ -12,6 +12,10 @@
*/
#include "igt.h"
+#include "igt_kmod.h"
+#include "igt_list.h"
+#include "intel_blt.h"
+#include "intel_mocs.h"
#include "lib/igt_syncobj.h"
#include "lib/intel_reg.h"
#include "xe_drm.h"
@@ -453,6 +457,8 @@ threads(int fd, struct drm_xe_engine_class_instance *eci,
pthread_join(threads_data[i].thread, NULL);
}
+#define SZ_1K 0x00000400
+#define SZ_1M 0x00100000
#define SZ_256M 0x10000000
#define SZ_1G 0x40000000
@@ -464,6 +470,243 @@ static uint64_t calc_bo_size(uint64_t vram_size, int mul, int div)
return (ALIGN(vram_size, SZ_256M) * mul) / div; /* small-bar */
}
+struct object {
+ uint64_t size;
+ uint32_t start_value;
+ struct blt_copy_object *blt_obj;
+ struct igt_list_head link;
+};
+
+#define TEST_PARALLEL (1 << 0)
+#define TEST_INSTANTFREE (1 << 2)
+#define TEST_REOPEN (1 << 3)
+
+#define MAX_NPROC 8
+struct params {
+ uint32_t flags;
+ int nproc;
+ int vram_percent;
+ int free_mb, total_mb;
+ int test_mb, mb_per_proc;
+};
+
+static void copy_obj(struct blt_copy_data *blt,
+ struct blt_copy_object *src_obj,
+ struct blt_copy_object *dst_obj,
+ uint64_t ahnd, uint32_t vm)
+{
+ struct blt_block_copy_data_ext ext = {};
+ int fd = blt->fd;
+ uint64_t bb_size = xe_get_default_alignment(fd);
+ struct drm_xe_engine_class_instance inst = {
+ .engine_class = DRM_XE_ENGINE_CLASS_COPY,
+ };
+ intel_ctx_t *ctx;
+ uint32_t bb, exec_queue;
+ uint32_t w, h;
+
+ w = src_obj->x2;
+ h = src_obj->y2;
+ exec_queue = xe_exec_queue_create(fd, vm, &inst, 0);
+ ctx = intel_ctx_xe(fd, vm, exec_queue, 0, 0, 0);
+
+ bb = xe_bo_create_flags(fd, 0, bb_size,
+ vram_memory(fd, 0) | XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+
+ blt->color_depth = CD_32bit;
+ blt->print_bb = false;
+ blt_set_copy_object(&blt->src, src_obj);
+ blt_set_copy_object(&blt->dst, dst_obj);
+ blt_set_object_ext(&ext.src, 0, w, h, SURFACE_TYPE_2D);
+ blt_set_object_ext(&ext.dst, 0, w, h, SURFACE_TYPE_2D);
+ blt_set_batch(&blt->bb, bb, bb_size, vram_if_possible(fd, 0));
+ blt_block_copy(fd, ctx, NULL, ahnd, blt, &ext);
+ intel_ctx_xe_sync(ctx, true);
+
+ gem_close(fd, bb);
+ put_offset(ahnd, bb);
+ put_offset(ahnd, blt->src.handle);
+ put_offset(ahnd, blt->dst.handle);
+ intel_allocator_bind(ahnd, 0, 0);
+}
+
+static uint32_t rand_and_update(uint32_t *left, uint32_t min, uint32_t max)
+{
+ int left_bit, min_bit, max_bit, rand_id, rand_kb;
+
+ left_bit = igt_fls(*left) - 1;
+ min_bit = igt_fls(min) - 1;
+ max_bit = max_t(int, min_t(int, igt_fls(max) - 1, left_bit), igt_fls(max));
+ rand_id = rand() % (max_bit - min_bit);
+ rand_kb = 1 << (rand_id + min_bit);
+
+ if (*left >= rand_kb)
+ *left -= rand_kb;
+ else
+ *left = 0;
+
+ return rand_kb;
+}
+
+static struct object *create_obj(struct blt_copy_data *blt,
+ struct blt_copy_object *src_obj,
+ uint64_t ahnd, uint32_t vm,
+ uint64_t size, int start_value)
+{
+ int fd = blt->fd;
+ struct object *obj;
+ uint32_t w, h;
+ uint8_t uc_mocs = intel_get_uc_mocs(fd);
+ int i;
+
+ obj = calloc(1, sizeof(*obj));
+ igt_assert(obj);
+ obj->size = size;
+ obj->start_value = start_value;
+
+ w = 1024;
+ h = size / w / 4; /* /4 - 32bpp */
+
+ obj->blt_obj = blt_create_object(blt,
+ vram_memory(fd, 0) | XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM,
+ w, h, 32, uc_mocs,
+ T_LINEAR, COMPRESSION_ENABLED,
+ COMPRESSION_TYPE_3D, true);
+
+ for (i = 0; i < size / sizeof(uint32_t); i++)
+ src_obj->ptr[i] = start_value++;
+
+ copy_obj(blt, src_obj, obj->blt_obj, ahnd, vm);
+
+ return obj;
+}
+
+static void check_obj(const struct blt_copy_object *obj, uint64_t size,
+ int start_value, int num_obj)
+{
+ int i, idx;
+
+ igt_assert_eq(obj->ptr[0], start_value);
+ igt_assert_eq(obj->ptr[size/4 - 1], start_value + size/4 - 1);
+
+ /* Couple of checks of random indices */
+ for (i = 0; i < 16; i++) {
+ idx = rand() % (size/4);
+ igt_assert_f(obj->ptr[idx] == start_value + idx,
+ "Object number %d doesn't contain valid data",
+ num_obj);
+ }
+}
+
+static void evict_single(int fd, int child, const struct params *params)
+{
+ struct blt_copy_data blt = {};
+ struct blt_copy_object *orig_obj;
+ uint32_t kb_left = params->mb_per_proc * SZ_1K;
+ uint32_t min_alloc_kb = 64;
+ uint32_t max_alloc_kb = 4096;
+ uint32_t vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS, 0);
+ uint64_t ahnd = intel_allocator_open(fd, vm, INTEL_ALLOCATOR_RELOC);
+ uint8_t uc_mocs = intel_get_uc_mocs(fd);
+ struct object *obj, *tmp;
+ struct igt_list_head list;
+ uint32_t w, h;
+ int num_obj = 0;
+
+ srandom(time(NULL));
+ IGT_INIT_LIST_HEAD(&list);
+ igt_debug("[%2d] child : to allocate: %uMiB\n", child, kb_left/SZ_1K);
+
+ blt_copy_init(fd, &blt);
+ w = SZ_1K;
+ h = max_alloc_kb / 4;
+ orig_obj = blt_create_object(&blt, system_memory(fd),
+ w, h, 32, uc_mocs,
+ T_LINEAR, COMPRESSION_DISABLED,
+ 0, true);
+
+ while (kb_left) {
+ uint64_t obj_size = rand_and_update(&kb_left, min_alloc_kb, max_alloc_kb) * SZ_1K;
+ int start_value = rand();
+
+ h = obj_size / w / 4;
+ blt_set_geom(orig_obj, w * 4, 0, 0, w, h, 0, 0);
+ obj = create_obj(&blt, orig_obj, ahnd, vm, obj_size, start_value);
+ igt_list_add(&obj->link, &list);
+ }
+
+ igt_list_for_each_entry_safe(obj, tmp, &list, link) {
+ h = obj->size / w / 4;
+ blt_set_geom(orig_obj, w * 4, 0, 0, w, h, 0, 0);
+ copy_obj(&blt, obj->blt_obj, orig_obj, ahnd, vm);
+ check_obj(orig_obj, obj->blt_obj->size, obj->start_value, num_obj++);
+ if (params->flags & TEST_INSTANTFREE) {
+ igt_list_del(&obj->link);
+ blt_destroy_object_and_alloc_free(fd, ahnd, obj->blt_obj);
+ free(obj);
+ }
+ }
+
+ if (!(params->flags & TEST_INSTANTFREE))
+ igt_list_for_each_entry_safe(obj, tmp, &list, link) {
+ igt_list_del(&obj->link);
+ blt_destroy_object_and_alloc_free(fd, ahnd, obj->blt_obj);
+ free(obj);
+ }
+ blt_destroy_object_and_alloc_free(fd, ahnd, orig_obj);
+}
+
+static void set_params(int fd, uint32_t flags, int vram_percent,
+ struct params *params)
+{
+ int nproc = 1;
+
+ params->flags = flags;
+ params->vram_percent = vram_percent;
+ params->free_mb = xe_vram_available(fd, 0) / SZ_1M;
+ params->total_mb = xe_visible_vram_size(fd, 0) / SZ_1M;
+ params->test_mb = min_t(int, params->free_mb * vram_percent / 100,
+ params->total_mb * vram_percent / 100);
+
+ igt_debug("VRAM memory size: %dMB/%dMB (use %dMB), overcommit perc: %d\n",
+ params->free_mb, params->total_mb,
+ params->test_mb, params->vram_percent);
+
+ if (flags & TEST_PARALLEL)
+ nproc = min_t(int, sysconf(_SC_NPROCESSORS_ONLN), MAX_NPROC);
+ params->nproc = nproc;
+ params->mb_per_proc = params->test_mb / nproc;
+
+ igt_debug("nproc: %d, mem per proc: %dMB\n", nproc, params->mb_per_proc);
+}
+
+static void evict_ccs(int fd, uint32_t flags, int vram_percent)
+{
+ struct params params;
+
+ igt_debug("Test mode <parallel: %d, instant free: %d, reopen: %d>\n",
+ !!(flags & TEST_PARALLEL),
+ !!(flags & TEST_INSTANTFREE),
+ !!(flags & TEST_REOPEN));
+
+ set_params(fd, flags, vram_percent, ¶ms);
+
+ if (flags & TEST_PARALLEL) {
+ igt_fork(n, params.nproc) {
+ if (flags & TEST_REOPEN) {
+ fd = drm_reopen_driver(fd);
+ intel_allocator_init();
+ }
+ evict_single(fd, n, ¶ms);
+ }
+ igt_waitchildren();
+ } else {
+ if (flags & TEST_REOPEN)
+ fd = drm_reopen_driver(fd);
+ evict_single(fd, 0, ¶ms);
+ }
+}
+
/**
* SUBTEST: evict-%s
* Description: %arg[1] evict test.
@@ -620,7 +863,60 @@ static uint64_t calc_bo_size(uint64_t vram_size, int mul, int div)
* @beng-threads-large: bind exec_queue threads large
*
*/
-
+/**
+ *
+ * SBTEST: evict-ccs-%s
+ * Dscription: FlatCCS eviction test.
+ * Fature: flatccs
+ * Tst ctegory: stress test
+ *
+ * asg[1]:
+ * no-overcommit: evict flat ccs without migration in single
+ * process
+ * no-overcommit-parallel: evict flat ccs in multiple children processes
+ * without migration
+ * no-overcommit-instantfree: evict flat ccs without migration in single
+ * process destroying objects immediately after use
+ * no-overcommit-parallel-instantfree: evict flat ccs in multiple children
+ * processes without migration destroying objects
+ * immediately after use
+ * overcommit: evict flat ccs with migration in single process
+ * overcommit-parallel: evict flat ccs in multiple children processes
+ * with migration
+ * overcommit-instantfree: evict flat ccs with migration in single process
+ * destroying objects immediately after use
+ * @overcommit-parallel-instantfree: evict flat ccs in multiple children
+ * processes with migration destroying objects
+ * immediately after use
+ *
+ *
+ * SUBTEST: evict-ccs-%s-%s-%s-%s
+ * Description: FlatCCS eviction test.
+ * Feature: flatccs
+ * Test category: stress test
+ *
+ * arg[1]:
+ *
+ * @no-overcommit: use less memory and fit in vram
+ * @overcommit: use more memory and exceed vram
+ *
+ * arg[2]:
+ *
+ * @standalone: single process
+ * @parallel: multiple processes
+ *
+ * arg[3]:
+ *
+ * @nofree: keep objects till the end of the test
+ * @instantfree: free object after it was verified and it won't
+ * be used anymore
+ *
+ * arg[4]:
+ *
+ * @samefd: operate on same opened drm fd
+ * @reopen: use separately opened drm fds
+ *
+ */
/*
* Table driven test that attempts to cover all possible scenarios of eviction
* (small / large objects, compute mode vs non-compute VMs, external BO or BOs
@@ -752,6 +1048,29 @@ igt_main
MIXED_THREADS | MULTI_VM | THREADED | BIND_EXEC_QUEUE },
{ NULL },
};
+
+ const struct ccs {
+ const char *name;
+ uint32_t flags;
+ } ccs[] = {
+ { "standalone-nofree-samefd",
+ 0 },
+ { "standalone-nofree-reopen",
+ TEST_REOPEN },
+ { "standalone-instantfree-samefd",
+ TEST_INSTANTFREE },
+ { "standalone-instantfree-reopen",
+ TEST_INSTANTFREE | TEST_REOPEN },
+ { "parallel-nofree-samefd",
+ TEST_PARALLEL },
+ { "parallel-nofree-reopen",
+ TEST_PARALLEL | TEST_REOPEN },
+ { "parallel-instantfree-samefd",
+ TEST_PARALLEL | TEST_INSTANTFREE },
+ { "parallel-instantfree-reopen",
+ TEST_PARALLEL | TEST_INSTANTFREE | TEST_REOPEN },
+ { },
+ };
uint64_t vram_size;
int fd;
@@ -789,5 +1108,19 @@ igt_main
}
igt_fixture
+ intel_allocator_multiprocess_start();
+
+#define NO_OVERCOMMIT_VRAM_PERCENT 20
+#define OVERCOMMIT_VRAM_PERCENT 110
+ for (const struct ccs *s = ccs; s->name; s++) {
+ igt_subtest_f("evict-ccs-no-overcommit-%s", s->name)
+ evict_ccs(fd, s->flags, NO_OVERCOMMIT_VRAM_PERCENT);
+ igt_subtest_f("evict-ccs-overcommit-%s", s->name)
+ evict_ccs(fd, s->flags, OVERCOMMIT_VRAM_PERCENT);
+ }
+
+ igt_fixture {
+ intel_allocator_multiprocess_stop();
drm_close_driver(fd);
+ }
}
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add flat-ccs tests
2023-10-04 16:37 [igt-dev] [PATCH i-g-t 0/2] Add flat-ccs tests Zbigniew Kempczyński
2023-10-04 16:37 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_blt: Release an offset in the allocator on buffer destroy Zbigniew Kempczyński
2023-10-04 16:37 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_evict: Add flat-ccs eviction tests Zbigniew Kempczyński
@ 2023-10-04 19:25 ` Patchwork
2023-10-04 21:07 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-10-05 5:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-10-04 19:25 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6834 bytes --]
== Series Details ==
Series: Add flat-ccs tests
URL : https://patchwork.freedesktop.org/series/124626/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13712 -> IGTPW_9919
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/index.html
Participating hosts (40 -> 39)
------------------------------
Additional (1): fi-pnv-d510
Missing (2): fi-kbl-soraka fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9919 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#9275])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [PASS][3] -> [ABORT][4] ([i915#7911] / [i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
* igt@i915_suspend@basic-s3-without-i915:
- fi-elk-e7500: [PASS][5] -> [ABORT][6] ([i915#9426])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/fi-elk-e7500/igt@i915_suspend@basic-s3-without-i915.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/fi-elk-e7500/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- fi-hsw-4770: NOTRUN -> [SKIP][7] ([fdo#109271]) +13 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5:
- bat-adlp-11: [PASS][8] -> [ABORT][9] ([i915#8668])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-5.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1:
- fi-hsw-4770: NOTRUN -> [DMESG-WARN][10] ([i915#8841]) +6 other tests dmesg-warn
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html
* igt@kms_psr@primary_page_flip:
- fi-pnv-d510: NOTRUN -> [SKIP][11] ([fdo#109271]) +31 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
* igt@kms_psr@sprite_plane_onoff:
- fi-hsw-4770: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#1072]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][13] ([i915#5334]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_flip@basic-flip-vs-modeset@d-dp6:
- bat-adlp-11: [DMESG-FAIL][15] ([i915#6868]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5:
- bat-adlp-11: [ABORT][17] ([i915#8668] / [i915#9451]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9426]: https://gitlab.freedesktop.org/drm/intel/issues/9426
[i915#9451]: https://gitlab.freedesktop.org/drm/intel/issues/9451
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7512 -> IGTPW_9919
CI-20190529: 20190529
CI_DRM_13712: 454adf17aa8ce15c81bff39e381d93002000a28f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9919: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/index.html
IGT_7512: 2eb58faf82d3cd5e2e74154a7319cff56eb40762 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_evict@evict-ccs-no-overcommit-parallel-instantfree-reopen
+igt@xe_evict@evict-ccs-no-overcommit-parallel-instantfree-samefd
+igt@xe_evict@evict-ccs-no-overcommit-parallel-nofree-reopen
+igt@xe_evict@evict-ccs-no-overcommit-parallel-nofree-samefd
+igt@xe_evict@evict-ccs-no-overcommit-standalone-instantfree-reopen
+igt@xe_evict@evict-ccs-no-overcommit-standalone-instantfree-samefd
+igt@xe_evict@evict-ccs-no-overcommit-standalone-nofree-reopen
+igt@xe_evict@evict-ccs-no-overcommit-standalone-nofree-samefd
+igt@xe_evict@evict-ccs-overcommit-parallel-instantfree-reopen
+igt@xe_evict@evict-ccs-overcommit-parallel-instantfree-samefd
+igt@xe_evict@evict-ccs-overcommit-parallel-nofree-reopen
+igt@xe_evict@evict-ccs-overcommit-parallel-nofree-samefd
+igt@xe_evict@evict-ccs-overcommit-standalone-instantfree-reopen
+igt@xe_evict@evict-ccs-overcommit-standalone-instantfree-samefd
+igt@xe_evict@evict-ccs-overcommit-standalone-nofree-reopen
+igt@xe_evict@evict-ccs-overcommit-standalone-nofree-samefd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/index.html
[-- Attachment #2: Type: text/html, Size: 7861 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Add flat-ccs tests
2023-10-04 16:37 [igt-dev] [PATCH i-g-t 0/2] Add flat-ccs tests Zbigniew Kempczyński
` (2 preceding siblings ...)
2023-10-04 19:25 ` [igt-dev] ✓ Fi.CI.BAT: success for Add flat-ccs tests Patchwork
@ 2023-10-04 21:07 ` Patchwork
2023-10-05 5:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-10-04 21:07 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2560 bytes --]
== Series Details ==
Series: Add flat-ccs tests
URL : https://patchwork.freedesktop.org/series/124626/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7512_BAT -> XEIGTPW_9919_BAT
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with XEIGTPW_9919_BAT need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_9919_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_9919_BAT:
### IGT changes ###
#### Warnings ####
* igt@core_hotunplug@unbind-rebind:
- bat-dg2-oem2: [INCOMPLETE][1] ([Intel XE#764]) -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7512/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9919/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
Known issues
------------
Here are the changes found in XEIGTPW_9919_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- bat-dg2-oem2: [PASS][3] -> [FAIL][4] ([i915#2346])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7512/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9919/bat-dg2-oem2/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[Intel XE#764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/764
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
Build changes
-------------
* IGT: IGT_7512 -> IGTPW_9919
* Linux: xe-411-090c3e92db31fbbe59a47d44f8dd7e8a1ccbcb36 -> xe-413-2ffd96b933e14e09cdd5f42c7a8264b50e2dbe31
IGTPW_9919: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/index.html
IGT_7512: 2eb58faf82d3cd5e2e74154a7319cff56eb40762 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-411-090c3e92db31fbbe59a47d44f8dd7e8a1ccbcb36: 090c3e92db31fbbe59a47d44f8dd7e8a1ccbcb36
xe-413-2ffd96b933e14e09cdd5f42c7a8264b50e2dbe31: 2ffd96b933e14e09cdd5f42c7a8264b50e2dbe31
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9919/index.html
[-- Attachment #2: Type: text/html, Size: 3174 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add flat-ccs tests
2023-10-04 16:37 [igt-dev] [PATCH i-g-t 0/2] Add flat-ccs tests Zbigniew Kempczyński
` (3 preceding siblings ...)
2023-10-04 21:07 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-10-05 5:13 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-10-05 5:13 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 77827 bytes --]
== Series Details ==
Series: Add flat-ccs tests
URL : https://patchwork.freedesktop.org/series/124626/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13712_full -> IGTPW_9919_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9919_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9919_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9919/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9919_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_draw_crc@draw-method-mmap-cpu@xrgb8888-ytiled:
- shard-glk: [PASS][1] -> [FAIL][2] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-glk2/igt@kms_draw_crc@draw-method-mmap-cpu@xrgb8888-ytiled.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-glk1/igt@kms_draw_crc@draw-method-mmap-cpu@xrgb8888-ytiled.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
- shard-dg2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
Known issues
------------
Here are the changes found in IGTPW_9919_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#9318])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#7701])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +20 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-14/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][9] -> [FAIL][10] ([i915#7742])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-2/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: NOTRUN -> [FAIL][12] ([i915#7742])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#3281]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-1/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-dg2: [PASS][20] -> [ABORT][21] ([i915#7975] / [i915#8213])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-11/igt@gem_eio@hibernate.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-19/igt@gem_eio@unwedge-stress.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-19/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-1/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#4036])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [PASS][28] -> [FAIL][29] ([i915#4475])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-6/igt@gem_exec_capture@pi@vcs0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][30] ([i915#2842]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473] / [i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-7/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][32] -> [FAIL][33] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preemptive-hang@vcs0:
- shard-mtlp: [PASS][40] -> [FAIL][41] ([i915#9051])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-2/igt@gem_exec_schedule@preemptive-hang@vcs0.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][43] ([i915#7975] / [i915#8213])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613] / [i915#7582])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html
- shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-apl3/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3282])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-2/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#8289])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#284])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-19/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4077]) +9 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@invalid-flags:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4083])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-5/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-19/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4270])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@gem_pxp@verify-pxp-stale-buf-execution.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4270])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@nohangcheck:
- shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#9353])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html
* igt@gem_userptr_blits@vma-merge:
- shard-apl: NOTRUN -> [FAIL][71] ([i915#3318])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-apl3/igt@gem_userptr_blits@vma-merge.html
- shard-dg2: NOTRUN -> [FAIL][72] ([i915#3318])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@gem_userptr_blits@vma-merge.html
- shard-rkl: NOTRUN -> [FAIL][73] ([i915#3318])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_linear_blits:
- shard-rkl: NOTRUN -> [SKIP][74] ([fdo#109289]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@gen3_render_linear_blits.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: NOTRUN -> [SKIP][75] ([fdo#109289]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) +5 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html
* igt@i915_hangman@detector@ccs0:
- shard-mtlp: [PASS][80] -> [ABORT][81] ([i915#9414])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-3/igt@i915_hangman@detector@ccs0.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-5/igt@i915_hangman@detector@ccs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][82] -> [ABORT][83] ([i915#8489] / [i915#8668])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271]) +48 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-apl3/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#6590]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#1397]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: [PASS][87] -> [SKIP][88] ([i915#1397])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#1397])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-1/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#6621])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][91] ([i915#8346])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#8925])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#4387])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@i915_pm_sseu@full-enable.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4212]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#8502]) +11 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#8502]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#8502]) +7 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][98] ([i915#8247]) +3 other tests fail
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][99] ([i915#8247]) +3 other tests fail
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#111614])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-1/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][103] ([fdo#111614] / [i915#3638])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][104] ([fdo#111614]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#3638])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#5190]) +10 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][108] ([fdo#110723]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#111615]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#3689] / [i915#5354]) +22 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#3689] / [i915#5354] / [i915#6095])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-tglu-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#5354] / [i915#6095]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#5354] / [i915#6095]) +6 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-17/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-4/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#5354] / [i915#6095]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-18/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-17/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#3886]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-apl6/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_ccs:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-y_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5354]) +10 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs:
- shard-mtlp: [PASS][124] -> [DMESG-WARN][125] ([i915#1982])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4087] / [i915#7213])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4087]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg1: NOTRUN -> [SKIP][128] ([fdo#111827])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-17/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][129] ([fdo#111827])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#7828]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#3299])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#7116])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][136] ([i915#7173])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6944]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][138] ([fdo#109279] / [i915#3359])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#3359])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#8814]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3359])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#3555])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#4103] / [i915#4213] / [i915#5608])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274] / [i915#5354]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274] / [fdo#111767] / [i915#5354])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#4213])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#4103] / [i915#4213])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#9226] / [i915#9261]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-6/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#9227])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-6/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#8588])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#1257])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-1/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#8812])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@kms_flip@2x-blocking-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3637]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274] / [fdo#111767])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109274] / [i915#3637])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-tglu-9/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][158] ([fdo#111825]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@kms_flip@2x-plain-flip.html
- shard-snb: NOTRUN -> [SKIP][159] ([fdo#109271]) +21 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-snb2/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: NOTRUN -> [DMESG-WARN][160] ([i915#8841]) +3 other tests dmesg-warn
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#2587] / [i915#2672])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#2672])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8810])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#2672]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#5274])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#8708]) +9 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#1825]) +5 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-dg2: [PASS][169] -> [FAIL][170] ([i915#6880])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3458]) +13 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][172] ([fdo#111825]) +5 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#5354]) +39 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][174] ([fdo#111825] / [i915#1825]) +9 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8708]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3023]) +6 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#5439])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#8708]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][179] ([fdo#110189])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#3458]) +3 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#6301])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8806])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#6953])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][186] -> [FAIL][187] ([i915#8292])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][188] ([i915#8292])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#5176]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#5235]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#5235]) +11 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#5235]) +15 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#5235]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#6524] / [i915#6805])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#658]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#1072] / [i915#4078]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-15/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#1072]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@kms_psr@psr2_primary_mmap_cpu.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#1072]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@kms_psr@psr2_sprite_mmap_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#4077]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-3/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#5461] / [i915#658])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#4235] / [i915#5190])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111615] / [i915#5289]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg1: NOTRUN -> [SKIP][203] ([fdo#111615] / [i915#5289])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#4235])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][205] ([IGT#2])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@kms_sysfs_edid_timing.html
* igt@kms_tv_load_detect@load-detect:
- shard-mtlp: NOTRUN -> [SKIP][206] ([fdo#109309])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#4070] / [i915#6768]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-3/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html
* igt@kms_vblank@pipe-d-ts-continuation-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#4070] / [i915#533] / [i915#6768]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@kms_vblank@pipe-d-ts-continuation-idle-hang.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#7387]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][210] -> [FAIL][211] ([i915#4349]) +2 other tests fail
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][212] -> [FAIL][213] ([i915#4349]) +3 other tests fail
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][214] ([i915#6806])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-6/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@frequency@gt1:
- shard-mtlp: [PASS][215] -> [ABORT][216] ([i915#9262])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-8/igt@perf_pmu@frequency@gt1.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-4/igt@perf_pmu@frequency@gt1.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg2: [PASS][217] -> [FAIL][218] ([i915#5234])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-dg1: [PASS][219] -> [FAIL][220] ([i915#5234])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-17/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-15/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-mtlp: [PASS][221] -> [FAIL][222] ([i915#5234])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#3291] / [i915#3708])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-2/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3708])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-7/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3708]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@prime_vgem@fence-read-hang.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [PASS][226] -> [FAIL][227] ([i915#1731])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][228] ([fdo#109307] / [i915#4818])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@create-perfmon-invalid-counters:
- shard-rkl: NOTRUN -> [SKIP][229] ([fdo#109315]) +4 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html
* igt@v3d/v3d_submit_cl@bad-flag:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2575]) +3 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-3/igt@v3d/v3d_submit_cl@bad-flag.html
* igt@v3d/v3d_submit_csd@bad-multisync-in-sync:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#2575])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-16/igt@v3d/v3d_submit_csd@bad-multisync-in-sync.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#2575]) +10 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#7711])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-7/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#7711]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@vc4/vc4_tiling@get-bad-handle.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#7711]) +5 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-11/igt@vc4/vc4_tiling@set-get.html
* igt@vc4/vc4_wait_bo@unused-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#7711]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-19/igt@vc4/vc4_wait_bo@unused-bo-0ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][237] ([i915#6268]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@engines-hang@ccs0:
- shard-mtlp: [ABORT][239] ([i915#9414]) -> [PASS][240] +1 other test pass
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@ccs0.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@ccs0.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [FAIL][241] ([i915#2410]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][243] ([i915#2842]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [FAIL][245] ([i915#7069]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-1/igt@i915_hangman@gt-engine-hang@vcs0.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][247] ([i915#1397]) -> [PASS][248] +1 other test pass
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][249] ([i915#1397]) -> [PASS][250] +1 other test pass
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [FAIL][251] ([fdo#103375]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][253] ([i915#5138]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][255] ([i915#3743]) -> [PASS][256] +1 other test pass
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][257] ([i915#2346]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-glk: [FAIL][259] ([i915#2346]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@forked-move@all-pipes:
- shard-mtlp: [DMESG-WARN][261] ([i915#2017]) -> [PASS][262]
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-4/igt@kms_cursor_legacy@forked-move@all-pipes.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@kms_cursor_legacy@forked-move@all-pipes.html
* {igt@kms_pm_dc@dc6-dpms}:
- shard-tglu: [FAIL][263] ([i915#9295]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* {igt@kms_pm_dc@dc9-dpms}:
- shard-apl: [SKIP][265] ([fdo#109271]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-apl2/igt@kms_pm_dc@dc9-dpms.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-apl3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-dg1: [FAIL][267] ([i915#9196]) -> [PASS][268]
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-17/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
- shard-mtlp: [FAIL][269] ([i915#9196]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-d:
- shard-tglu: [FAIL][271] ([i915#9196]) -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-apl: [INCOMPLETE][273] ([i915#180] / [i915#9392]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
- shard-apl: [INCOMPLETE][275] ([i915#9392]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-apl2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend:
- shard-dg1: [FAIL][277] ([fdo#103375]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg1-18/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg1-17/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: [FAIL][279] ([i915#8724]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-dg2-1/igt@perf@enable-disable@0-rcs0.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [FAIL][281] ([i915#5234]) -> [PASS][282]
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-mtlp-6/igt@perf_pmu@all-busy-idle-check-all.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][283] ([i915#4349]) -> [PASS][284]
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-1/igt@perf_pmu@most-busy-check-all@rcs0.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-6/igt@perf_pmu@most-busy-check-all@rcs0.html
#### Warnings ####
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][285] ([fdo#109285] / [i915#4098]) -> [SKIP][286] ([fdo#109285])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][287] ([i915#4816]) -> [SKIP][288] ([i915#4070] / [i915#4816])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13712/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353
[i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7512 -> IGTPW_9919
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13712: 454adf17aa8ce15c81bff39e381d93002000a28f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9919: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9919/index.html
IGT_7512: 2eb58faf82d3cd5e2e74154a7319cff56eb40762 @ 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_9919/index.html
[-- Attachment #2: Type: text/html, Size: 93641 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/intel_blt: Release an offset in the allocator on buffer destroy
2023-10-04 16:37 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_blt: Release an offset in the allocator on buffer destroy Zbigniew Kempczyński
@ 2023-10-06 8:02 ` Karolina Stolarek
0 siblings, 0 replies; 7+ messages in thread
From: Karolina Stolarek @ 2023-10-06 8:02 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On 4.10.2023 18:37, Zbigniew Kempczyński wrote:
> Blitter library code requires allocator handle only at the execution
> time. That means blt_copy_object structure is allocator agnostic and
> offsets are taken for block-copy or fast-copy just before operation.
> Operations on bo's like close/create requires to reflect on the
> allocator state, otherwise allocator will contain outdated
> offsets + sizes leading to fail on allocator operations or the exec.
>
> Helpers blt_create_object() and blt_destroy_object() are unaware
> of allocator so if in the meantime object was used in block-copy or
> fast-copy it has assigned offset in the allocator.
Something is slightly off with that sentence. It gets assigned the same
offset as the "old" object, right?
But the solution itself looks good to me:
Reviewed-by: Karolina Stolarek <karolina.stolarek@intel.com>
Thanks,
Karolina
> Destroying object
> with blt_destroy_object() doesn't release this offset what might
> cause failures described above.
>
> There're two possibilities how to solve this - to couple blitter
> library with allocator or provide additional helpers which will
> release offset in the allocator on destroy path. Latter one is
> easier to provide so this is a subject of this change.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Karolina Stolarek <karolina.stolarek@intel.com>
> ---
> lib/intel_blt.c | 15 ++++++++++++++-
> lib/intel_blt.h | 2 ++
> 2 files changed, 16 insertions(+), 1 deletion(-)
>
> diff --git a/lib/intel_blt.c b/lib/intel_blt.c
> index b55fa9b529..d2ea88d95f 100644
> --- a/lib/intel_blt.c
> +++ b/lib/intel_blt.c
> @@ -1470,15 +1470,28 @@ blt_create_object(const struct blt_copy_data *blt, uint32_t region,
> return obj;
> }
>
> -void blt_destroy_object(int fd, struct blt_copy_object *obj)
> +static void __blt_destroy_object(int fd, uint64_t ahnd, struct blt_copy_object *obj)
> {
> if (obj->ptr)
> munmap(obj->ptr, obj->size);
>
> gem_close(fd, obj->handle);
> + if (ahnd)
> + intel_allocator_free(ahnd, obj->handle);
> free(obj);
> }
>
> +void blt_destroy_object(int fd, struct blt_copy_object *obj)
> +{
> + __blt_destroy_object(fd, 0, obj);
> +}
> +
> +void blt_destroy_object_and_alloc_free(int fd, uint64_t ahnd,
> + struct blt_copy_object *obj)
> +{
> + __blt_destroy_object(fd, ahnd, obj);
> +}
> +
> void blt_set_object(struct blt_copy_object *obj,
> uint32_t handle, uint64_t size, uint32_t region,
> uint8_t mocs, enum blt_tiling_type tiling,
> diff --git a/lib/intel_blt.h b/lib/intel_blt.h
> index d9c8883c7d..a9ddb99647 100644
> --- a/lib/intel_blt.h
> +++ b/lib/intel_blt.h
> @@ -245,6 +245,8 @@ blt_create_object(const struct blt_copy_data *blt, uint32_t region,
> enum blt_compression_type compression_type,
> bool create_mapping);
> void blt_destroy_object(int fd, struct blt_copy_object *obj);
> +void blt_destroy_object_and_alloc_free(int fd, uint64_t ahnd,
> + struct blt_copy_object *obj);
> void blt_set_object(struct blt_copy_object *obj,
> uint32_t handle, uint64_t size, uint32_t region,
> uint8_t mocs, enum blt_tiling_type tiling,
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-10-06 8:02 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-04 16:37 [igt-dev] [PATCH i-g-t 0/2] Add flat-ccs tests Zbigniew Kempczyński
2023-10-04 16:37 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_blt: Release an offset in the allocator on buffer destroy Zbigniew Kempczyński
2023-10-06 8:02 ` Karolina Stolarek
2023-10-04 16:37 ` [igt-dev] [PATCH i-g-t 2/2] tests/xe_evict: Add flat-ccs eviction tests Zbigniew Kempczyński
2023-10-04 19:25 ` [igt-dev] ✓ Fi.CI.BAT: success for Add flat-ccs tests Patchwork
2023-10-04 21:07 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-10-05 5:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox