* [PATCH i-g-t 0/2] Control compute-preempt bo allocation
@ 2025-06-04 11:50 Zbigniew Kempczyński
2025-06-04 11:50 ` [PATCH i-g-t 1/2] lib/intel_compute: add alloc preference for objects used in compute Zbigniew Kempczyński
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2025-06-04 11:50 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Francois Dugast
Compute-preempt on BMG reveals some bugs related to oversized
bo allocation. This happens because memory limits for objects
allocated in vram are taken from system memory - what is wrong
obviously. However it should work as well even if this exceeds
vram size and causes eviction.
First patch in the series makes all platform starts to use
system memory allocation for compute objects. Second patch
extends testing on discrete to use vram objects.
Cc: Francois Dugast <francois.dugast@intel.com>
Zbigniew Kempczyński (2):
lib/intel_compute: add alloc preference for objects used in compute
tests/xe_compute_preempt: add compute preempt on vram bos
lib/intel_compute.c | 91 ++++++++++++++++++++++----------
lib/intel_compute.h | 15 ++++--
tests/intel/gem_compute.c | 3 +-
tests/intel/xe_compute.c | 5 +-
tests/intel/xe_compute_preempt.c | 88 ++++++++++++++++++++++++++----
5 files changed, 157 insertions(+), 45 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH i-g-t 1/2] lib/intel_compute: add alloc preference for objects used in compute 2025-06-04 11:50 [PATCH i-g-t 0/2] Control compute-preempt bo allocation Zbigniew Kempczyński @ 2025-06-04 11:50 ` Zbigniew Kempczyński 2025-06-05 12:24 ` Francois Dugast 2025-06-04 11:50 ` [PATCH i-g-t 2/2] tests/xe_compute_preempt: add compute preempt on vram bos Zbigniew Kempczyński ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Zbigniew Kempczyński @ 2025-06-04 11:50 UTC (permalink / raw) To: igt-dev; +Cc: Zbigniew Kempczyński, Francois Dugast Compute preemption tests executed on LNL and BMG behaves different as objects were allocated with 'vram_if_possible' strategy. This caused LNL creates objects in system memory whereas BMG in vram. Setting memory limits should be then adopted to appropriate memory type. Introduce memory allocation preference allowing tests to control how much and what type of memory it wants to take. Cc: Francois Dugast <francois.dugast@intel.com> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/intel_compute.c | 91 ++++++++++++++++++++++---------- lib/intel_compute.h | 15 ++++-- tests/intel/gem_compute.c | 3 +- tests/intel/xe_compute.c | 5 +- tests/intel/xe_compute_preempt.c | 4 +- 5 files changed, 82 insertions(+), 36 deletions(-) diff --git a/lib/intel_compute.c b/lib/intel_compute.c index 06f831f68c..bfb9024ba8 100644 --- a/lib/intel_compute.c +++ b/lib/intel_compute.c @@ -207,6 +207,7 @@ static void bo_execenv_destroy(struct bo_execenv *execenv) } static void bo_execenv_bind(struct bo_execenv *execenv, + enum execenv_alloc_prefs alloc_prefs, struct bo_dict_entry *bo_dict, int entries) { int fd = execenv->fd; @@ -230,10 +231,26 @@ static void bo_execenv_bind(struct bo_execenv *execenv, sync.addr = to_user_pointer(&bo_sync->sync); for (int i = 0; i < entries; i++) { + uint32_t placement, flags = 0; + bo_sync->sync = 0; + + switch (alloc_prefs) { + case EXECENV_PREF_SYSTEM: + placement = system_memory(fd); + break; + case EXECENV_PREF_VRAM: + placement = vram_memory(fd, 0); + flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM; + break; + case EXECENV_PREF_VRAM_IF_POSSIBLE: + placement = vram_if_possible(fd, 0); + flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM; + break; + } + bo_dict[i].handle = xe_bo_create(fd, execenv->vm, bo_dict[i].size, - vram_if_possible(fd, 0), - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + placement, flags); bo_dict[i].data = xe_bo_map(fd, bo_dict[i].handle, bo_dict[i].size); xe_vm_bind_async(fd, vm, 0, bo_dict[i].handle, 0, bo_dict[i].addr, bo_dict[i].size, &sync, 1); @@ -253,6 +270,7 @@ static void bo_execenv_bind(struct bo_execenv *execenv, struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf; struct drm_i915_gem_exec_object2 *obj; + igt_assert_eq(alloc_prefs, EXECENV_PREF_SYSTEM); obj = calloc(entries, sizeof(*obj)); execenv->obj = obj; @@ -795,7 +813,8 @@ static void dg1_compute_exec_compute(uint32_t *addr_bo_buffer_batch, static void compute_exec(int fd, const unsigned char *kernel, unsigned int size, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user) + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs) { struct bo_dict_entry bo_dict[] = { { .addr = ADDR_INDIRECT_OBJECT_BASE + OFFSET_KERNEL, @@ -831,7 +850,7 @@ static void compute_exec(int fd, const unsigned char *kernel, bo_dict[4].size = size_input(execenv.array_size); bo_dict[5].size = size_output(execenv.array_size); - bo_execenv_bind(&execenv, bo_dict, entries); + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); memcpy(bo_dict[0].data, kernel, size); create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL); @@ -1078,7 +1097,8 @@ static void xehp_compute_exec_compute(uint32_t *addr_bo_buffer_batch, static void xehp_compute_exec(int fd, const unsigned char *kernel, unsigned int size, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user) + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs) { struct bo_dict_entry bo_dict[] = { { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, @@ -1118,7 +1138,7 @@ static void xehp_compute_exec(int fd, const unsigned char *kernel, bo_dict[4].size = size_input(execenv.array_size); bo_dict[5].size = size_output(execenv.array_size); - bo_execenv_bind(&execenv, bo_dict, entries); + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); memcpy(bo_dict[0].data, kernel, size); create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL); @@ -1303,7 +1323,8 @@ static void xehpc_compute_exec_compute(uint32_t *addr_bo_buffer_batch, static void xehpc_compute_exec(int fd, const unsigned char *kernel, unsigned int size, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user) + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs) { struct bo_dict_entry bo_dict[] = { { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, @@ -1334,7 +1355,7 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel, bo_dict[2].size = size_input(execenv.array_size); bo_dict[3].size = size_output(execenv.array_size); - bo_execenv_bind(&execenv, bo_dict, entries); + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); memcpy(bo_dict[0].data, kernel, size); xehpc_create_indirect_data(bo_dict[1].data, bind_input_addr, bind_output_addr, @@ -1682,9 +1703,10 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch, * @user: user-provided execution environment */ static void xelpg_compute_exec(int fd, const unsigned char *kernel, - unsigned int size, + unsigned int size, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user) + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs) { struct bo_dict_entry bo_dict[] = { { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, @@ -1726,7 +1748,7 @@ static void xelpg_compute_exec(int fd, const unsigned char *kernel, bo_dict[4].size = size_input(execenv.array_size); bo_dict[5].size = size_output(execenv.array_size); - bo_execenv_bind(&execenv, bo_dict, entries); + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); memcpy(bo_dict[0].data, kernel, size); @@ -1777,7 +1799,8 @@ static void xelpg_compute_exec(int fd, const unsigned char *kernel, static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, unsigned int size, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user) + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs) { struct bo_dict_entry bo_dict[] = { { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, @@ -1822,7 +1845,7 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, bo_dict[4].size = size_input(execenv.array_size); bo_dict[5].size = size_output(execenv.array_size); - bo_execenv_bind(&execenv, bo_dict, entries); + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); memcpy(bo_dict[0].data, kernel, size); create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL); @@ -1879,7 +1902,8 @@ static const struct { void (*compute_exec)(int fd, const unsigned char *kernel, unsigned int size, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user); + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs); uint32_t compat; } intel_compute_batches[] = { { @@ -1926,7 +1950,8 @@ static const struct { static bool __run_intel_compute_kernel(int fd, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user) + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs) { unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd)); unsigned int batch; @@ -1967,15 +1992,16 @@ static bool __run_intel_compute_kernel(int fd, kernel_size = kernels->size; } - intel_compute_batches[batch].compute_exec(fd, kernel, - kernel_size, eci, user); + intel_compute_batches[batch].compute_exec(fd, kernel, kernel_size, + eci, user, alloc_prefs); return true; } -bool run_intel_compute_kernel(int fd, struct user_execenv *user) +bool run_intel_compute_kernel(int fd, struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs) { - return __run_intel_compute_kernel(fd, NULL, user); + return __run_intel_compute_kernel(fd, NULL, user, alloc_prefs); } /** @@ -1990,7 +2016,8 @@ bool run_intel_compute_kernel(int fd, struct user_execenv *user) */ bool xe_run_intel_compute_kernel_on_engine(int fd, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user) + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs) { if (!is_xe_device(fd)) { igt_debug("Xe device expected\n"); @@ -2009,7 +2036,7 @@ bool xe_run_intel_compute_kernel_on_engine(int fd, return false; } - return __run_intel_compute_kernel(fd, eci, user); + return __run_intel_compute_kernel(fd, eci, user, alloc_prefs); } /** @@ -2035,7 +2062,8 @@ static void xe2lpg_compute_preempt_exec(int fd, const unsigned char *long_kernel const unsigned char *loop_kernel, unsigned int loop_kernel_size, struct drm_xe_engine_class_instance *eci, - bool threadgroup_preemption) + bool threadgroup_preemption, + enum execenv_alloc_prefs alloc_prefs) { struct bo_dict_entry bo_dict_long[] = { { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, @@ -2095,8 +2123,8 @@ static void xe2lpg_compute_preempt_exec(int fd, const unsigned char *long_kernel bo_dict_long[0].size = ALIGN(long_kernel_size, 0x1000); bo_dict_short[0].size = ALIGN(short_kernel_size, 0x1000); - bo_execenv_bind(&execenv_long, bo_dict_long, entries); - bo_execenv_bind(&execenv_short, bo_dict_short, entries); + bo_execenv_bind(&execenv_long, alloc_prefs, bo_dict_long, entries); + bo_execenv_bind(&execenv_short, alloc_prefs, bo_dict_short, entries); if (use_loop_kernel) memcpy(bo_dict_long[0].data, loop_kernel, loop_kernel_size); @@ -2175,7 +2203,8 @@ static const struct { const unsigned char *loop_kernel, unsigned int loop_kernel_size, struct drm_xe_engine_class_instance *eci, - bool threadgroup_preemption); + bool threadgroup_preemption, + enum execenv_alloc_prefs alloc_prefs); uint32_t compat; } intel_compute_preempt_batches[] = { { @@ -2197,7 +2226,8 @@ static const struct { static bool __run_intel_compute_kernel_preempt(int fd, struct drm_xe_engine_class_instance *eci, - bool threadgroup_preemption) + bool threadgroup_preemption, + enum execenv_alloc_prefs alloc_prefs) { unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd)); unsigned int batch; @@ -2238,7 +2268,8 @@ static bool __run_intel_compute_kernel_preempt(int fd, kernels->loop_kernel, kernels->loop_kernel_size, eci, - threadgroup_preemption); + threadgroup_preemption, + alloc_prefs); return true; } @@ -2254,7 +2285,9 @@ static bool __run_intel_compute_kernel_preempt(int fd, */ bool run_intel_compute_kernel_preempt(int fd, struct drm_xe_engine_class_instance *eci, - bool threadgroup_preemption) + bool threadgroup_preemption, + enum execenv_alloc_prefs alloc_prefs) { - return __run_intel_compute_kernel_preempt(fd, eci, threadgroup_preemption); + return __run_intel_compute_kernel_preempt(fd, eci, threadgroup_preemption, + alloc_prefs); } diff --git a/lib/intel_compute.h b/lib/intel_compute.h index f0d1750ccb..412791d074 100644 --- a/lib/intel_compute.h +++ b/lib/intel_compute.h @@ -65,11 +65,20 @@ struct user_execenv { uint64_t output_addr; }; +enum execenv_alloc_prefs { + EXECENV_PREF_SYSTEM, + EXECENV_PREF_VRAM, + EXECENV_PREF_VRAM_IF_POSSIBLE, +}; + extern const struct intel_compute_kernels intel_compute_square_kernels[]; -bool run_intel_compute_kernel(int fd, struct user_execenv *user); +bool run_intel_compute_kernel(int fd, struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs); bool xe_run_intel_compute_kernel_on_engine(int fd, struct drm_xe_engine_class_instance *eci, - struct user_execenv *user); + struct user_execenv *user, + enum execenv_alloc_prefs alloc_prefs); bool run_intel_compute_kernel_preempt(int fd, struct drm_xe_engine_class_instance *eci, - bool threadgroup_preemption); + bool threadgroup_preemption, + enum execenv_alloc_prefs alloc_prefs); #endif /* INTEL_COMPUTE_H */ diff --git a/tests/intel/gem_compute.c b/tests/intel/gem_compute.c index ce41cd386b..b8e7dec59c 100644 --- a/tests/intel/gem_compute.c +++ b/tests/intel/gem_compute.c @@ -27,7 +27,8 @@ static void test_compute_square(int fd) { - igt_require_f(run_intel_compute_kernel(fd, NULL), "GPU not supported\n"); + igt_require_f(run_intel_compute_kernel(fd, NULL, EXECENV_PREF_SYSTEM), + "GPU not supported\n"); } igt_main diff --git a/tests/intel/xe_compute.c b/tests/intel/xe_compute.c index 65e32ce9dc..955edf082b 100644 --- a/tests/intel/xe_compute.c +++ b/tests/intel/xe_compute.c @@ -146,7 +146,7 @@ test_compute_kernel_with_ccs_mode(int num_gt) igt_info("GT-%d: Running compute kernel with ccs_mode %d on ccs engine %d\n", gt, m, hwe->engine_instance); - igt_assert_f(xe_run_intel_compute_kernel_on_engine(fd, hwe, NULL), + igt_assert_f(xe_run_intel_compute_kernel_on_engine(fd, hwe, NULL, EXECENV_PREF_SYSTEM), "Unable to run compute kernel successfully\n"); } drm_close_driver(fd); @@ -174,7 +174,8 @@ test_compute_kernel_with_ccs_mode(int num_gt) static void test_compute_square(int fd) { - igt_require_f(run_intel_compute_kernel(fd, NULL), "GPU not supported\n"); + igt_require_f(run_intel_compute_kernel(fd, NULL, EXECENV_PREF_SYSTEM), + "GPU not supported\n"); } igt_main diff --git a/tests/intel/xe_compute_preempt.c b/tests/intel/xe_compute_preempt.c index 43ffb8dba3..3a3d7847ca 100644 --- a/tests/intel/xe_compute_preempt.c +++ b/tests/intel/xe_compute_preempt.c @@ -43,7 +43,9 @@ static void test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe, bool threadgroup_preemption) { - igt_require_f(run_intel_compute_kernel_preempt(fd, hwe, threadgroup_preemption), "GPU not supported\n"); + igt_require_f(run_intel_compute_kernel_preempt(fd, hwe, threadgroup_preemption, + EXECENV_PREF_SYSTEM), + "GPU not supported\n"); } #define CONTEXT_MB 100 -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 1/2] lib/intel_compute: add alloc preference for objects used in compute 2025-06-04 11:50 ` [PATCH i-g-t 1/2] lib/intel_compute: add alloc preference for objects used in compute Zbigniew Kempczyński @ 2025-06-05 12:24 ` Francois Dugast 0 siblings, 0 replies; 10+ messages in thread From: Francois Dugast @ 2025-06-05 12:24 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On Wed, Jun 04, 2025 at 01:50:26PM +0200, Zbigniew Kempczyński wrote: > Compute preemption tests executed on LNL and BMG behaves different > as objects were allocated with 'vram_if_possible' strategy. > This caused LNL creates objects in system memory whereas BMG > in vram. Setting memory limits should be then adopted to appropriate > memory type. > > Introduce memory allocation preference allowing tests to control > how much and what type of memory it wants to take. > > Cc: Francois Dugast <francois.dugast@intel.com> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Not fully convinced by the name execenv_alloc_prefs but I cannot think of something better. Also, if we need more parameters in the future we should make use of execenv containers instead of adding more function arguments which get propagated. Nothing blocking, so: Reviewed-by: Francois Dugast <francois.dugast@intel.com> > --- > lib/intel_compute.c | 91 ++++++++++++++++++++++---------- > lib/intel_compute.h | 15 ++++-- > tests/intel/gem_compute.c | 3 +- > tests/intel/xe_compute.c | 5 +- > tests/intel/xe_compute_preempt.c | 4 +- > 5 files changed, 82 insertions(+), 36 deletions(-) > > diff --git a/lib/intel_compute.c b/lib/intel_compute.c > index 06f831f68c..bfb9024ba8 100644 > --- a/lib/intel_compute.c > +++ b/lib/intel_compute.c > @@ -207,6 +207,7 @@ static void bo_execenv_destroy(struct bo_execenv *execenv) > } > > static void bo_execenv_bind(struct bo_execenv *execenv, > + enum execenv_alloc_prefs alloc_prefs, > struct bo_dict_entry *bo_dict, int entries) > { > int fd = execenv->fd; > @@ -230,10 +231,26 @@ static void bo_execenv_bind(struct bo_execenv *execenv, > sync.addr = to_user_pointer(&bo_sync->sync); > > for (int i = 0; i < entries; i++) { > + uint32_t placement, flags = 0; > + > bo_sync->sync = 0; > + > + switch (alloc_prefs) { > + case EXECENV_PREF_SYSTEM: > + placement = system_memory(fd); > + break; > + case EXECENV_PREF_VRAM: > + placement = vram_memory(fd, 0); > + flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM; > + break; > + case EXECENV_PREF_VRAM_IF_POSSIBLE: > + placement = vram_if_possible(fd, 0); > + flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM; > + break; > + } > + > bo_dict[i].handle = xe_bo_create(fd, execenv->vm, bo_dict[i].size, > - vram_if_possible(fd, 0), > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + placement, flags); > bo_dict[i].data = xe_bo_map(fd, bo_dict[i].handle, bo_dict[i].size); > xe_vm_bind_async(fd, vm, 0, bo_dict[i].handle, 0, bo_dict[i].addr, > bo_dict[i].size, &sync, 1); > @@ -253,6 +270,7 @@ static void bo_execenv_bind(struct bo_execenv *execenv, > struct drm_i915_gem_execbuffer2 *execbuf = &execenv->execbuf; > struct drm_i915_gem_exec_object2 *obj; > > + igt_assert_eq(alloc_prefs, EXECENV_PREF_SYSTEM); > obj = calloc(entries, sizeof(*obj)); > execenv->obj = obj; > > @@ -795,7 +813,8 @@ static void dg1_compute_exec_compute(uint32_t *addr_bo_buffer_batch, > static void compute_exec(int fd, const unsigned char *kernel, > unsigned int size, > struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user) > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs) > { > struct bo_dict_entry bo_dict[] = { > { .addr = ADDR_INDIRECT_OBJECT_BASE + OFFSET_KERNEL, > @@ -831,7 +850,7 @@ static void compute_exec(int fd, const unsigned char *kernel, > bo_dict[4].size = size_input(execenv.array_size); > bo_dict[5].size = size_output(execenv.array_size); > > - bo_execenv_bind(&execenv, bo_dict, entries); > + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); > > memcpy(bo_dict[0].data, kernel, size); > create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL); > @@ -1078,7 +1097,8 @@ static void xehp_compute_exec_compute(uint32_t *addr_bo_buffer_batch, > static void xehp_compute_exec(int fd, const unsigned char *kernel, > unsigned int size, > struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user) > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs) > { > struct bo_dict_entry bo_dict[] = { > { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, > @@ -1118,7 +1138,7 @@ static void xehp_compute_exec(int fd, const unsigned char *kernel, > bo_dict[4].size = size_input(execenv.array_size); > bo_dict[5].size = size_output(execenv.array_size); > > - bo_execenv_bind(&execenv, bo_dict, entries); > + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); > > memcpy(bo_dict[0].data, kernel, size); > create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL); > @@ -1303,7 +1323,8 @@ static void xehpc_compute_exec_compute(uint32_t *addr_bo_buffer_batch, > static void xehpc_compute_exec(int fd, const unsigned char *kernel, > unsigned int size, > struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user) > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs) > { > struct bo_dict_entry bo_dict[] = { > { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, > @@ -1334,7 +1355,7 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel, > bo_dict[2].size = size_input(execenv.array_size); > bo_dict[3].size = size_output(execenv.array_size); > > - bo_execenv_bind(&execenv, bo_dict, entries); > + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); > > memcpy(bo_dict[0].data, kernel, size); > xehpc_create_indirect_data(bo_dict[1].data, bind_input_addr, bind_output_addr, > @@ -1682,9 +1703,10 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch, > * @user: user-provided execution environment > */ > static void xelpg_compute_exec(int fd, const unsigned char *kernel, > - unsigned int size, > + unsigned int size, > struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user) > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs) > { > struct bo_dict_entry bo_dict[] = { > { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, > @@ -1726,7 +1748,7 @@ static void xelpg_compute_exec(int fd, const unsigned char *kernel, > bo_dict[4].size = size_input(execenv.array_size); > bo_dict[5].size = size_output(execenv.array_size); > > - bo_execenv_bind(&execenv, bo_dict, entries); > + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); > > memcpy(bo_dict[0].data, kernel, size); > > @@ -1777,7 +1799,8 @@ static void xelpg_compute_exec(int fd, const unsigned char *kernel, > static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, > unsigned int size, > struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user) > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs) > { > struct bo_dict_entry bo_dict[] = { > { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, > @@ -1822,7 +1845,7 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, > bo_dict[4].size = size_input(execenv.array_size); > bo_dict[5].size = size_output(execenv.array_size); > > - bo_execenv_bind(&execenv, bo_dict, entries); > + bo_execenv_bind(&execenv, alloc_prefs, bo_dict, entries); > > memcpy(bo_dict[0].data, kernel, size); > create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL); > @@ -1879,7 +1902,8 @@ static const struct { > void (*compute_exec)(int fd, const unsigned char *kernel, > unsigned int size, > struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user); > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs); > uint32_t compat; > } intel_compute_batches[] = { > { > @@ -1926,7 +1950,8 @@ static const struct { > > static bool __run_intel_compute_kernel(int fd, > struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user) > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs) > { > unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd)); > unsigned int batch; > @@ -1967,15 +1992,16 @@ static bool __run_intel_compute_kernel(int fd, > kernel_size = kernels->size; > } > > - intel_compute_batches[batch].compute_exec(fd, kernel, > - kernel_size, eci, user); > + intel_compute_batches[batch].compute_exec(fd, kernel, kernel_size, > + eci, user, alloc_prefs); > > return true; > } > > -bool run_intel_compute_kernel(int fd, struct user_execenv *user) > +bool run_intel_compute_kernel(int fd, struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs) > { > - return __run_intel_compute_kernel(fd, NULL, user); > + return __run_intel_compute_kernel(fd, NULL, user, alloc_prefs); > } > > /** > @@ -1990,7 +2016,8 @@ bool run_intel_compute_kernel(int fd, struct user_execenv *user) > */ > bool xe_run_intel_compute_kernel_on_engine(int fd, > struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user) > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs) > { > if (!is_xe_device(fd)) { > igt_debug("Xe device expected\n"); > @@ -2009,7 +2036,7 @@ bool xe_run_intel_compute_kernel_on_engine(int fd, > return false; > } > > - return __run_intel_compute_kernel(fd, eci, user); > + return __run_intel_compute_kernel(fd, eci, user, alloc_prefs); > } > > /** > @@ -2035,7 +2062,8 @@ static void xe2lpg_compute_preempt_exec(int fd, const unsigned char *long_kernel > const unsigned char *loop_kernel, > unsigned int loop_kernel_size, > struct drm_xe_engine_class_instance *eci, > - bool threadgroup_preemption) > + bool threadgroup_preemption, > + enum execenv_alloc_prefs alloc_prefs) > { > struct bo_dict_entry bo_dict_long[] = { > { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL, > @@ -2095,8 +2123,8 @@ static void xe2lpg_compute_preempt_exec(int fd, const unsigned char *long_kernel > bo_dict_long[0].size = ALIGN(long_kernel_size, 0x1000); > bo_dict_short[0].size = ALIGN(short_kernel_size, 0x1000); > > - bo_execenv_bind(&execenv_long, bo_dict_long, entries); > - bo_execenv_bind(&execenv_short, bo_dict_short, entries); > + bo_execenv_bind(&execenv_long, alloc_prefs, bo_dict_long, entries); > + bo_execenv_bind(&execenv_short, alloc_prefs, bo_dict_short, entries); > > if (use_loop_kernel) > memcpy(bo_dict_long[0].data, loop_kernel, loop_kernel_size); > @@ -2175,7 +2203,8 @@ static const struct { > const unsigned char *loop_kernel, > unsigned int loop_kernel_size, > struct drm_xe_engine_class_instance *eci, > - bool threadgroup_preemption); > + bool threadgroup_preemption, > + enum execenv_alloc_prefs alloc_prefs); > uint32_t compat; > } intel_compute_preempt_batches[] = { > { > @@ -2197,7 +2226,8 @@ static const struct { > > static bool __run_intel_compute_kernel_preempt(int fd, > struct drm_xe_engine_class_instance *eci, > - bool threadgroup_preemption) > + bool threadgroup_preemption, > + enum execenv_alloc_prefs alloc_prefs) > { > unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd)); > unsigned int batch; > @@ -2238,7 +2268,8 @@ static bool __run_intel_compute_kernel_preempt(int fd, > kernels->loop_kernel, > kernels->loop_kernel_size, > eci, > - threadgroup_preemption); > + threadgroup_preemption, > + alloc_prefs); > > return true; > } > @@ -2254,7 +2285,9 @@ static bool __run_intel_compute_kernel_preempt(int fd, > */ > bool run_intel_compute_kernel_preempt(int fd, > struct drm_xe_engine_class_instance *eci, > - bool threadgroup_preemption) > + bool threadgroup_preemption, > + enum execenv_alloc_prefs alloc_prefs) > { > - return __run_intel_compute_kernel_preempt(fd, eci, threadgroup_preemption); > + return __run_intel_compute_kernel_preempt(fd, eci, threadgroup_preemption, > + alloc_prefs); > } > diff --git a/lib/intel_compute.h b/lib/intel_compute.h > index f0d1750ccb..412791d074 100644 > --- a/lib/intel_compute.h > +++ b/lib/intel_compute.h > @@ -65,11 +65,20 @@ struct user_execenv { > uint64_t output_addr; > }; > > +enum execenv_alloc_prefs { > + EXECENV_PREF_SYSTEM, > + EXECENV_PREF_VRAM, > + EXECENV_PREF_VRAM_IF_POSSIBLE, > +}; > + > extern const struct intel_compute_kernels intel_compute_square_kernels[]; > > -bool run_intel_compute_kernel(int fd, struct user_execenv *user); > +bool run_intel_compute_kernel(int fd, struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs); > bool xe_run_intel_compute_kernel_on_engine(int fd, struct drm_xe_engine_class_instance *eci, > - struct user_execenv *user); > + struct user_execenv *user, > + enum execenv_alloc_prefs alloc_prefs); > bool run_intel_compute_kernel_preempt(int fd, struct drm_xe_engine_class_instance *eci, > - bool threadgroup_preemption); > + bool threadgroup_preemption, > + enum execenv_alloc_prefs alloc_prefs); > #endif /* INTEL_COMPUTE_H */ > diff --git a/tests/intel/gem_compute.c b/tests/intel/gem_compute.c > index ce41cd386b..b8e7dec59c 100644 > --- a/tests/intel/gem_compute.c > +++ b/tests/intel/gem_compute.c > @@ -27,7 +27,8 @@ > static void > test_compute_square(int fd) > { > - igt_require_f(run_intel_compute_kernel(fd, NULL), "GPU not supported\n"); > + igt_require_f(run_intel_compute_kernel(fd, NULL, EXECENV_PREF_SYSTEM), > + "GPU not supported\n"); > } > > igt_main > diff --git a/tests/intel/xe_compute.c b/tests/intel/xe_compute.c > index 65e32ce9dc..955edf082b 100644 > --- a/tests/intel/xe_compute.c > +++ b/tests/intel/xe_compute.c > @@ -146,7 +146,7 @@ test_compute_kernel_with_ccs_mode(int num_gt) > > igt_info("GT-%d: Running compute kernel with ccs_mode %d on ccs engine %d\n", > gt, m, hwe->engine_instance); > - igt_assert_f(xe_run_intel_compute_kernel_on_engine(fd, hwe, NULL), > + igt_assert_f(xe_run_intel_compute_kernel_on_engine(fd, hwe, NULL, EXECENV_PREF_SYSTEM), > "Unable to run compute kernel successfully\n"); > } > drm_close_driver(fd); > @@ -174,7 +174,8 @@ test_compute_kernel_with_ccs_mode(int num_gt) > static void > test_compute_square(int fd) > { > - igt_require_f(run_intel_compute_kernel(fd, NULL), "GPU not supported\n"); > + igt_require_f(run_intel_compute_kernel(fd, NULL, EXECENV_PREF_SYSTEM), > + "GPU not supported\n"); > } > > igt_main > diff --git a/tests/intel/xe_compute_preempt.c b/tests/intel/xe_compute_preempt.c > index 43ffb8dba3..3a3d7847ca 100644 > --- a/tests/intel/xe_compute_preempt.c > +++ b/tests/intel/xe_compute_preempt.c > @@ -43,7 +43,9 @@ > static void > test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe, bool threadgroup_preemption) > { > - igt_require_f(run_intel_compute_kernel_preempt(fd, hwe, threadgroup_preemption), "GPU not supported\n"); > + igt_require_f(run_intel_compute_kernel_preempt(fd, hwe, threadgroup_preemption, > + EXECENV_PREF_SYSTEM), > + "GPU not supported\n"); > } > > #define CONTEXT_MB 100 > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t 2/2] tests/xe_compute_preempt: add compute preempt on vram bos 2025-06-04 11:50 [PATCH i-g-t 0/2] Control compute-preempt bo allocation Zbigniew Kempczyński 2025-06-04 11:50 ` [PATCH i-g-t 1/2] lib/intel_compute: add alloc preference for objects used in compute Zbigniew Kempczyński @ 2025-06-04 11:50 ` Zbigniew Kempczyński 2025-06-05 12:33 ` Francois Dugast 2025-06-04 13:01 ` ✓ i915.CI.BAT: success for Control compute-preempt bo allocation Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Zbigniew Kempczyński @ 2025-06-04 11:50 UTC (permalink / raw) To: igt-dev; +Cc: Zbigniew Kempczyński, Francois Dugast Add 'vram' and 'vram-evict' subtests which exercise preemption scenarios on objects allocated in vram. First subtest uses half of vram whereas second one allocates more than available vram causing eviction. Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Francois Dugast <francois.dugast@intel.com> --- tests/intel/xe_compute_preempt.c | 86 ++++++++++++++++++++++++++++---- 1 file changed, 76 insertions(+), 10 deletions(-) diff --git a/tests/intel/xe_compute_preempt.c b/tests/intel/xe_compute_preempt.c index 3a3d7847ca..d4b6198a65 100644 --- a/tests/intel/xe_compute_preempt.c +++ b/tests/intel/xe_compute_preempt.c @@ -35,16 +35,27 @@ * Exercise multiple walker mid thread preemption scenario consuming * whole ram only when there's swap on the machine * + * SUBTEST: compute-preempt-many-vram + * GPU requirement: LNL, PTL + * Description: + * Exercise multiple walker mid thread preemption scenario on half of vram + * + * SUBTEST: compute-preempt-many-vram-evict + * GPU requirement: LNL, PTL + * Description: + * Exercise multiple walker mid thread preemption scenario on 120% of vram size + * * SUBTEST: compute-threadgroup-preempt * GPU requirement: LNL, PTL * Description: * Exercise compute walker threadgroup preemption scenario */ static void -test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe, bool threadgroup_preemption) +test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe, bool threadgroup_preemption, + enum execenv_alloc_prefs alloc_prefs) { igt_require_f(run_intel_compute_kernel_preempt(fd, hwe, threadgroup_preemption, - EXECENV_PREF_SYSTEM), + alloc_prefs), "GPU not supported\n"); } @@ -54,12 +65,13 @@ igt_main { int xe; struct drm_xe_engine_class_instance *hwe; - uint64_t ram_mb, swap_mb; + uint64_t ram_mb, swap_mb, vram_mb; igt_fixture { xe = drm_open_driver(DRIVER_XE); ram_mb = igt_get_avail_ram_mb(); swap_mb = igt_get_total_swap_mb(); + vram_mb = xe_visible_vram_size(xe, 0) >> 20; } igt_subtest_with_dynamic("compute-preempt") { @@ -68,7 +80,7 @@ igt_main continue; igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class)) - test_compute_preempt(xe, hwe, false); + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); } } @@ -81,7 +93,7 @@ igt_main int child_count; /* - * Get half of ram / 2, then divide by + * Get half of ram, then divide by * CONTEXT_MB * 2 (long and short) job */ child_count = ram_mb / 2 / CONTEXT_MB / 2; @@ -89,9 +101,9 @@ igt_main igt_debug("RAM: %zd, child count: %d\n", ram_mb, child_count); - test_compute_preempt(xe, hwe, false); + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); igt_fork(child, child_count) - test_compute_preempt(xe, hwe, false); + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); igt_waitchildren(); } } @@ -116,9 +128,63 @@ igt_main igt_debug("RAM: %zd, child count: %d\n", ram_mb, child_count); - test_compute_preempt(xe, hwe, false); + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); igt_fork(child, child_count) - test_compute_preempt(xe, hwe, false); + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); + igt_waitchildren(); + } + } + } + + igt_subtest_with_dynamic("compute-preempt-many-vram") { + igt_require(xe_has_vram(xe)); + + xe_for_each_engine(xe, hwe) { + if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE) + continue; + + igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class)) { + int child_count; + + /* + * Get half of vram, then divide by + * CONTEXT_MB * 2 (long and short) job + */ + child_count = vram_mb / 2 / CONTEXT_MB / 2; + + igt_debug("VRAM: %zd, child count: %d\n", + vram_mb, child_count); + + test_compute_preempt(xe, hwe, false, EXECENV_PREF_VRAM); + igt_fork(child, child_count) + test_compute_preempt(xe, hwe, false, EXECENV_PREF_VRAM); + igt_waitchildren(); + } + } + } + + igt_subtest_with_dynamic("compute-preempt-many-vram-evict") { + igt_require(xe_has_vram(xe)); + + xe_for_each_engine(xe, hwe) { + if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE) + continue; + + igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class)) { + int child_count; + + /* + * Get all vram + 20%, then divide by + * CONTEXT_MB * 2 (long and short) job + */ + child_count = vram_mb * 1.2 / 2 / CONTEXT_MB; + + igt_info("VRAM: %zd, child count: %d\n", + vram_mb, child_count); + + test_compute_preempt(xe, hwe, false, EXECENV_PREF_VRAM); + igt_fork(child, child_count) + test_compute_preempt(xe, hwe, false, EXECENV_PREF_VRAM); igt_waitchildren(); } } @@ -130,7 +196,7 @@ igt_main continue; igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class)) - test_compute_preempt(xe, hwe, true); + test_compute_preempt(xe, hwe, true, EXECENV_PREF_SYSTEM); } } -- 2.43.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/xe_compute_preempt: add compute preempt on vram bos 2025-06-04 11:50 ` [PATCH i-g-t 2/2] tests/xe_compute_preempt: add compute preempt on vram bos Zbigniew Kempczyński @ 2025-06-05 12:33 ` Francois Dugast 0 siblings, 0 replies; 10+ messages in thread From: Francois Dugast @ 2025-06-05 12:33 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On Wed, Jun 04, 2025 at 01:50:27PM +0200, Zbigniew Kempczyński wrote: > Add 'vram' and 'vram-evict' subtests which exercise preemption > scenarios on objects allocated in vram. First subtest uses half > of vram whereas second one allocates more than available vram > causing eviction. > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Francois Dugast <francois.dugast@intel.com> Reviewed-by: Francois Dugast <francois.dugast@intel.com> > --- > tests/intel/xe_compute_preempt.c | 86 ++++++++++++++++++++++++++++---- > 1 file changed, 76 insertions(+), 10 deletions(-) > > diff --git a/tests/intel/xe_compute_preempt.c b/tests/intel/xe_compute_preempt.c > index 3a3d7847ca..d4b6198a65 100644 > --- a/tests/intel/xe_compute_preempt.c > +++ b/tests/intel/xe_compute_preempt.c > @@ -35,16 +35,27 @@ > * Exercise multiple walker mid thread preemption scenario consuming > * whole ram only when there's swap on the machine > * > + * SUBTEST: compute-preempt-many-vram > + * GPU requirement: LNL, PTL > + * Description: > + * Exercise multiple walker mid thread preemption scenario on half of vram > + * > + * SUBTEST: compute-preempt-many-vram-evict > + * GPU requirement: LNL, PTL > + * Description: > + * Exercise multiple walker mid thread preemption scenario on 120% of vram size > + * > * SUBTEST: compute-threadgroup-preempt > * GPU requirement: LNL, PTL > * Description: > * Exercise compute walker threadgroup preemption scenario > */ > static void > -test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe, bool threadgroup_preemption) > +test_compute_preempt(int fd, struct drm_xe_engine_class_instance *hwe, bool threadgroup_preemption, > + enum execenv_alloc_prefs alloc_prefs) > { > igt_require_f(run_intel_compute_kernel_preempt(fd, hwe, threadgroup_preemption, > - EXECENV_PREF_SYSTEM), > + alloc_prefs), > "GPU not supported\n"); > } > > @@ -54,12 +65,13 @@ igt_main > { > int xe; > struct drm_xe_engine_class_instance *hwe; > - uint64_t ram_mb, swap_mb; > + uint64_t ram_mb, swap_mb, vram_mb; > > igt_fixture { > xe = drm_open_driver(DRIVER_XE); > ram_mb = igt_get_avail_ram_mb(); > swap_mb = igt_get_total_swap_mb(); > + vram_mb = xe_visible_vram_size(xe, 0) >> 20; > } > > igt_subtest_with_dynamic("compute-preempt") { > @@ -68,7 +80,7 @@ igt_main > continue; > > igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class)) > - test_compute_preempt(xe, hwe, false); > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); > } > } > > @@ -81,7 +93,7 @@ igt_main > int child_count; > > /* > - * Get half of ram / 2, then divide by > + * Get half of ram, then divide by > * CONTEXT_MB * 2 (long and short) job > */ > child_count = ram_mb / 2 / CONTEXT_MB / 2; > @@ -89,9 +101,9 @@ igt_main > igt_debug("RAM: %zd, child count: %d\n", > ram_mb, child_count); > > - test_compute_preempt(xe, hwe, false); > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); > igt_fork(child, child_count) > - test_compute_preempt(xe, hwe, false); > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); > igt_waitchildren(); > } > } > @@ -116,9 +128,63 @@ igt_main > igt_debug("RAM: %zd, child count: %d\n", > ram_mb, child_count); > > - test_compute_preempt(xe, hwe, false); > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); > igt_fork(child, child_count) > - test_compute_preempt(xe, hwe, false); > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_SYSTEM); > + igt_waitchildren(); > + } > + } > + } > + > + igt_subtest_with_dynamic("compute-preempt-many-vram") { > + igt_require(xe_has_vram(xe)); > + > + xe_for_each_engine(xe, hwe) { > + if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE) > + continue; > + > + igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class)) { > + int child_count; > + > + /* > + * Get half of vram, then divide by > + * CONTEXT_MB * 2 (long and short) job > + */ > + child_count = vram_mb / 2 / CONTEXT_MB / 2; > + > + igt_debug("VRAM: %zd, child count: %d\n", > + vram_mb, child_count); > + > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_VRAM); > + igt_fork(child, child_count) > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_VRAM); > + igt_waitchildren(); > + } > + } > + } > + > + igt_subtest_with_dynamic("compute-preempt-many-vram-evict") { > + igt_require(xe_has_vram(xe)); > + > + xe_for_each_engine(xe, hwe) { > + if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE) > + continue; > + > + igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class)) { > + int child_count; > + > + /* > + * Get all vram + 20%, then divide by > + * CONTEXT_MB * 2 (long and short) job > + */ > + child_count = vram_mb * 1.2 / 2 / CONTEXT_MB; > + > + igt_info("VRAM: %zd, child count: %d\n", > + vram_mb, child_count); > + > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_VRAM); > + igt_fork(child, child_count) > + test_compute_preempt(xe, hwe, false, EXECENV_PREF_VRAM); > igt_waitchildren(); > } > } > @@ -130,7 +196,7 @@ igt_main > continue; > > igt_dynamic_f("engine-%s", xe_engine_class_string(hwe->engine_class)) > - test_compute_preempt(xe, hwe, true); > + test_compute_preempt(xe, hwe, true, EXECENV_PREF_SYSTEM); > } > } > > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for Control compute-preempt bo allocation 2025-06-04 11:50 [PATCH i-g-t 0/2] Control compute-preempt bo allocation Zbigniew Kempczyński 2025-06-04 11:50 ` [PATCH i-g-t 1/2] lib/intel_compute: add alloc preference for objects used in compute Zbigniew Kempczyński 2025-06-04 11:50 ` [PATCH i-g-t 2/2] tests/xe_compute_preempt: add compute preempt on vram bos Zbigniew Kempczyński @ 2025-06-04 13:01 ` Patchwork 2025-06-04 13:08 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-06-04 13:01 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2665 bytes --] == Series Details == Series: Control compute-preempt bo allocation URL : https://patchwork.freedesktop.org/series/149833/ State : success == Summary == CI Bug Log - changes from IGT_8394 -> IGTPW_13242 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): bat-arlh-2 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13242 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][1] ([i915#12061]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@execlists: - bat-dg2-14: [INCOMPLETE][3] ([i915#14393]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/bat-dg2-14/igt@i915_selftest@live@execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/bat-dg2-14/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_contexts: - bat-dg2-9: [INCOMPLETE][5] ([i915#14313]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/bat-dg2-9/igt@i915_selftest@live@gt_contexts.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/bat-dg2-9/igt@i915_selftest@live@gt_contexts.html #### Warnings #### * igt@i915_selftest@live: - bat-dg2-9: [INCOMPLETE][7] ([i915#12061]) -> [DMESG-FAIL][8] ([i915#12061]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/bat-dg2-9/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/bat-dg2-9/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#14313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14313 [i915#14393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8394 -> IGTPW_13242 CI-20190529: 20190529 CI_DRM_16642: 6517275da428d10d60b2762385ca7daa3a382754 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13242: 3e0cb64ac57d4d8b267a53933b7373c6defb54f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8394: 8394 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/index.html [-- Attachment #2: Type: text/html, Size: 3493 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for Control compute-preempt bo allocation 2025-06-04 11:50 [PATCH i-g-t 0/2] Control compute-preempt bo allocation Zbigniew Kempczyński ` (2 preceding siblings ...) 2025-06-04 13:01 ` ✓ i915.CI.BAT: success for Control compute-preempt bo allocation Patchwork @ 2025-06-04 13:08 ` Patchwork 2025-06-04 15:12 ` ✓ i915.CI.Full: " Patchwork 2025-06-05 7:00 ` ✓ Xe.CI.Full: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-06-04 13:08 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 855 bytes --] == Series Details == Series: Control compute-preempt bo allocation URL : https://patchwork.freedesktop.org/series/149833/ State : success == Summary == CI Bug Log - changes from XEIGT_8394_BAT -> XEIGTPW_13242_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8394 -> IGTPW_13242 IGTPW_13242: 3e0cb64ac57d4d8b267a53933b7373c6defb54f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8394: 8394 xe-3191-6517275da428d10d60b2762385ca7daa3a382754: 6517275da428d10d60b2762385ca7daa3a382754 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/index.html [-- Attachment #2: Type: text/html, Size: 1400 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.Full: success for Control compute-preempt bo allocation 2025-06-04 11:50 [PATCH i-g-t 0/2] Control compute-preempt bo allocation Zbigniew Kempczyński ` (3 preceding siblings ...) 2025-06-04 13:08 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-06-04 15:12 ` Patchwork 2025-06-05 7:00 ` ✓ Xe.CI.Full: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2025-06-04 15:12 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 115989 bytes --] == Series Details == Series: Control compute-preempt bo allocation URL : https://patchwork.freedesktop.org/series/149833/ State : success == Summary == CI Bug Log - changes from IGT_8394_full -> IGTPW_13242_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between IGT_8394_full and IGTPW_13242_full: ### New IGT tests (3) ### * igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.20] s * igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.02] s * igt@kms_flip@2x-plain-flip-ts-check@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.95] s Known issues ------------ Here are the changes found in IGTPW_13242_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2-9: NOTRUN -> [SKIP][2] ([i915#8411]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@device_reset@cold-reset-bound.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#7697]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-9/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#4873]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-1/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-2/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][9] ([i915#13356]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-6/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-14/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-2/igt@gem_ccs@suspend-resume.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2-9: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#280]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][18] ([i915#7975] / [i915#8213]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][19] -> [FAIL][20] ([i915#5784]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-16/igt@gem_eio@unwedge-stress.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_eio@wait-wedge-immediate: - shard-mtlp: [PASS][21] -> [ABORT][22] ([i915#13723]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-mtlp-3/igt@gem_eio@wait-wedge-immediate.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-4/igt@gem_eio@wait-wedge-immediate.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fence@submit67: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-13/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2-9: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +7 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-active.html - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +8 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-active.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-19/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#3281]) +6 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][37] -> [ABORT][38] ([i915#7975] / [i915#8213]) +1 other test abort [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][41] -> [TIMEOUT][42] ([i915#5493]) +1 other test timeout [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-4/igt@gem_lmem_swapping@verify-ccs.html - shard-glk: NOTRUN -> [SKIP][44] ([i915#4613]) +5 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap@bad-object: - shard-dg2-9: NOTRUN -> [SKIP][46] ([i915#4083]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gem_mmap@bad-object.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-7/igt@gem_mmap@short-mmap.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4083]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-18/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-18/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-1/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-5/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_pread@snoop: - shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#3282]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gem_pread@snoop.html * igt@gem_pread@uncached: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-5/igt@gem_pread@uncached.html * igt@gem_pxp@create-regular-context-1: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#13398]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-8/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: [PASS][57] -> [TIMEOUT][58] ([i915#12917] / [i915#12964]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-6/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: [PASS][60] -> [TIMEOUT][61] ([i915#12964]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [TIMEOUT][62] ([i915#12917] / [i915#12964]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-5/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-6/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-3/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-dg2-9: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4079]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +11 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@softpin: - shard-rkl: [PASS][69] -> [DMESG-WARN][70] ([i915#12964]) +12 other tests dmesg-warn [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-4/igt@gem_softpin@softpin.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-6/igt@gem_softpin@softpin.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3281] / [i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-5/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-start-out: - shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#2856]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#2856]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +6 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-10/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_drm_fdinfo@busy-idle-check-all@ccs0: - shard-dg2-9: NOTRUN -> [SKIP][81] ([i915#11527]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@i915_drm_fdinfo@busy-idle-check-all@ccs0.html * igt@i915_drm_fdinfo@busy-idle@vcs0: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#14073]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@i915_drm_fdinfo@busy-idle@vcs0.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#14118]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][84] -> [DMESG-WARN][85] ([i915#13447]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][86] -> [ABORT][87] ([i915#13465] / [i915#13571]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-10/igt@i915_module_load@resize-bar.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#6590]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][89] ([i915#13790] / [i915#2681]) +1 other test warn [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: NOTRUN -> [INCOMPLETE][90] ([i915#12797]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#11681] / [i915#6621]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#11681] / [i915#6621]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-12/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#11681]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#5723]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][95] ([i915#4817] / [i915#7443]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][96] ([i915#4817]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk2/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#7707]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-10/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4212]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-4-mc-ccs: - shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#8709]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-4-mc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#8709]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#8709]) +7 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-glk: [PASS][102] -> [FAIL][103] ([i915#12177]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-glk9/igt@kms_atomic_transition@modeset-transition-nonblocking.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs: - shard-glk: [PASS][104] -> [FAIL][105] ([i915#11859]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-glk9/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][106] -> [FAIL][107] ([i915#5956]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][108] ([i915#5956]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-3.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][110] -> [FAIL][111] ([i915#11808]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#5286]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#5286]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5286]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +10 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][116] +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3638]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][118] +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#5190]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6187]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +8 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#6095]) +14 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#6095]) +64 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-2/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#12313]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#12313]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#12313]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][129] +394 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#12805]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][131] ([i915#12805]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#12805]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][133] ([i915#12805]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#12805]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#14098] / [i915#6095]) +50 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-dp-3: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#6095]) +12 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-d-dp-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][137] ([i915#12796]) +1 other test incomplete [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#6095]) +143 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#6095]) +39 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +9 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6095]) +14 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-6/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#12313]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-2/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#6095]) +140 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#13784]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#3742]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-9/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][147] +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-16/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +12 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-9: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-14/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#7118] / [i915#9424]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3116] / [i915#3299]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-17/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3299]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-4/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3299]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#7118]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_content_protection@srm.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#7116] / [i915#7118]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-3/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#13049]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][165] ([i915#13566]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#3555]) +4 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: NOTRUN -> [FAIL][170] ([i915#13566]) +1 other test fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [PASS][171] -> [FAIL][172] ([i915#13566]) +3 other tests fail [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#13046] / [i915#5354]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][177] +24 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][178] ([i915#13046] / [i915#5354]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#4103]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#4103]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#9067]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#4103]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9833]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2-9: NOTRUN -> [SKIP][184] ([i915#9833]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#13691]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13691]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3804]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3804]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][189] -> [SKIP][190] ([i915#1257]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-10/igt@kms_dp_aux_dev.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][191] ([i915#1257]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#13749]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#13707]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-3/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3840]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3840]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/igt@kms_dsc@dsc-with-bpc-formats.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-9: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [PASS][200] -> [FAIL][201] ([i915#4767]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-tglu-7/igt@kms_fbcon_fbt@fbc-suspend.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3469]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-9: NOTRUN -> [SKIP][203] ([i915#3469]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#1839]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][205] ([i915#9337]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-10/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#658]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3637] / [i915#9934]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3637] / [i915#9934]) +11 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-9/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9934]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9934]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#8381]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#9934]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#9934]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-16/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3637] / [i915#9934]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][215] ([i915#12964]) +14 other tests dmesg-warn [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_flip@blocking-absolute-wf_vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][216] ([i915#12745] / [i915#4839] / [i915#6113]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][217] ([i915#12745] / [i915#6113]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-tglu: [PASS][218] -> [FAIL][219] ([i915#13734]) +5 other tests fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-tglu-10/igt@kms_flip@plain-flip-ts-check-interruptible.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#2672]) +5 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#2672] / [i915#3555]) +5 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#2587] / [i915#2672] / [i915#3555]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672] / [i915#3555]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#2587] / [i915#2672]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#2672]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/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-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][232] ([i915#2672]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-dg1: [PASS][233] -> [DMESG-WARN][234] ([i915#4423]) +3 other tests dmesg-warn [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#5354]) +16 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][236] +76 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#1825]) +8 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [PASS][238] -> [SKIP][239] +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#5439]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#10055]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#3023]) +20 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][243] ([i915#8708]) +9 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg2-9: NOTRUN -> [SKIP][244] ([i915#5354]) +14 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#3458]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#9766]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][247] ([i915#3458]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#3458]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#1825]) +45 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-snb: NOTRUN -> [SKIP][251] +24 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][252] ([i915#8708]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][253] +28 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: [PASS][254] -> [SKIP][255] ([i915#3555] / [i915#8228]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8228]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-10/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#13688]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-3/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#13688]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#12388]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#12394]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#12339]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#6301]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-5/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][264] +7 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-3/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][265] ([i915#12756] / [i915#13409] / [i915#13476]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][266] ([i915#12756] / [i915#13476]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][267] ([i915#13026]) +1 other test incomplete [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk8/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][268] ([i915#10647] / [i915#12169]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][269] ([i915#10647]) +1 other test fail [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#13958]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg2-9: NOTRUN -> [SKIP][271] ([i915#13958]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#14259]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#14259]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][274] ([i915#14259]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#9809]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#6953] / [i915#9423]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#12247]) +5 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#12247]) +9 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#9423]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#12247]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-9: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#9423]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2-9: NOTRUN -> [SKIP][282] ([i915#12247]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#3555]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#6953]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#12247]) +5 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#9812]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#5354]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#9812]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-2/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#9685]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#9685]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#3828]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#4077]) +5 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][293] -> [SKIP][294] ([i915#9519]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#9519]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][296] -> [INCOMPLETE][297] ([i915#10553]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-glk2/igt@kms_pm_rpm@system-suspend-modeset.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#6524]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-4/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#6524]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg2-9: NOTRUN -> [SKIP][300] ([i915#11520]) +3 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#9808]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#11520]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#11520]) +7 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-10/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12316]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#11520]) +8 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#11520]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-15/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][307] ([i915#11520]) +11 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#11520]) +4 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2-9: NOTRUN -> [SKIP][309] ([i915#9683]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][310] ([i915#9683]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][311] ([i915#9683]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#9683]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#9683]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-12/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#9732]) +16 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-3/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#9688]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +26 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-dg2-9: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +8 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9732]) +4 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +4 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-12/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#1072] / [i915#9732]) +7 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-7/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#9685]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#5289]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#5289]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#5289]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#12755] / [i915#5190]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#5289]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-19/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#5289]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12755]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-9: NOTRUN -> [SKIP][329] ([i915#12755] / [i915#5190]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#3555]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][331] ([i915#13179]) +1 other test abort [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#8623]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [PASS][333] -> [INCOMPLETE][334] ([i915#12276]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-7/igt@kms_vblank@ts-continuation-suspend.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][335] ([i915#12276]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#11920]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][337] ([i915#11920]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#3555] / [i915#9906]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-5/igt@kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][339] ([i915#3555] / [i915#9906]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-3/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9906]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#2437]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#2436]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-1/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][344] ([i915#2436]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@polling@0-rcs0: - shard-tglu: [PASS][345] -> [FAIL][346] ([i915#10538]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-tglu-5/igt@perf@polling@0-rcs0.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-7/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][347] ([i915#4349]) +4 other tests fail [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2-9: NOTRUN -> [FAIL][348] ([i915#12549] / [i915#6806]) +1 other test fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: NOTRUN -> [FAIL][349] ([i915#4349]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#8516]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-5/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit: - shard-dg2-9: NOTRUN -> [SKIP][351] ([i915#14121]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@prime_mmap@test_aperture_limit.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#3291] / [i915#3708]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#3291] / [i915#3708]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-4/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#3708]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#9917]) +2 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [FAIL][356] ([i915#12910]) +9 other tests fail [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-tglu-8/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html * igt@sysfs_heartbeat_interval@precise@vcs0: - shard-rkl: [PASS][357] -> [FAIL][358] ([i915#14018]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-4/igt@sysfs_heartbeat_interval@precise@vcs0.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@sysfs_heartbeat_interval@precise@vcs0.html * igt@tools_test@sysfs_l3_parity: - shard-dg2-9: NOTRUN -> [SKIP][359] ([i915#4818]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-9/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][360] ([i915#5784]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-3/igt@gem_eio@reset-stress.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@gem_eio@reset-stress.html * igt@gem_exec_endless@dispatch@vcs0: - shard-dg2: [TIMEOUT][362] ([i915#3778] / [i915#7016]) -> [PASS][363] +1 other test pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-1/igt@gem_exec_endless@dispatch@vcs0.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-8/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: [ABORT][364] ([i915#7975] / [i915#8213]) -> [PASS][365] +1 other test pass [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: [TIMEOUT][366] ([i915#12917] / [i915#12964]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-5/igt@gem_pxp@create-regular-buffer.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@gem_pxp@create-regular-buffer.html * igt@gem_softpin@invalid: - shard-rkl: [DMESG-WARN][368] ([i915#12964]) -> [PASS][369] +7 other tests pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-3/igt@gem_softpin@invalid.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-6/igt@gem_softpin@invalid.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][370] ([i915#3591]) -> [PASS][371] +1 other test pass [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [DMESG-WARN][372] ([i915#4423]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-17/igt@i915_pm_rpm@system-suspend-execbuf.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-17/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][374] ([i915#7984]) -> [PASS][375] [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-mtlp-1/igt@i915_power@sanity.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-3/igt@i915_power@sanity.html * igt@i915_selftest@mock: - shard-snb: [ABORT][376] ([i915#11703]) -> [PASS][377] +1 other test pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-snb6/igt@i915_selftest@mock.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-snb2/igt@i915_selftest@mock.html * igt@kms_atomic_transition@modeset-transition: - shard-glk: [FAIL][378] ([i915#12238]) -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-glk8/igt@kms_atomic_transition@modeset-transition.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk2/igt@kms_atomic_transition@modeset-transition.html * igt@kms_atomic_transition@modeset-transition@2x-outputs: - shard-glk: [FAIL][380] ([i915#11859]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-glk2/igt@kms_atomic_transition@modeset-transition@2x-outputs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][382] ([i915#12796]) -> [PASS][383] +1 other test pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-rkl: [FAIL][384] ([i915#13566]) -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-rkl: [FAIL][386] ([i915#2346]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][388] ([i915#10826]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-snb5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-snb4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [FAIL][390] ([i915#13734]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: [FAIL][392] ([i915#6880]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_hdr@static-toggle: - shard-dg2: [SKIP][394] ([i915#3555] / [i915#8228]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-2/igt@kms_hdr@static-toggle.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-11/igt@kms_hdr@static-toggle.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][396] ([i915#9519]) -> [PASS][397] +1 other test pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][398] ([i915#12917] / [i915#12964]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-6/igt@kms_vblank@query-forked-hang.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_vblank@query-forked-hang.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][400] ([i915#4349]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@module-unload: - shard-mtlp: [INCOMPLETE][402] ([i915#13520]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-mtlp-8/igt@perf_pmu@module-unload.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-mtlp-4/igt@perf_pmu@module-unload.html * igt@sysfs_heartbeat_interval@precise@rcs0: - shard-rkl: [FAIL][404] ([i915#14018]) -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-4/igt@sysfs_heartbeat_interval@precise@rcs0.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@sysfs_heartbeat_interval@precise@rcs0.html #### Warnings #### * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: [SKIP][406] ([i915#3638] / [i915#4423]) -> [SKIP][407] ([i915#3638]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][408] ([i915#14098] / [i915#6095]) -> [SKIP][409] ([i915#6095]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][410] ([i915#6095]) -> [SKIP][411] ([i915#14098] / [i915#6095]) +3 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_content_protection@atomic: - shard-dg2: [FAIL][412] ([i915#7173]) -> [SKIP][413] ([i915#7118] / [i915#9424]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-11/igt@kms_content_protection@atomic.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@legacy: - shard-snb: [SKIP][414] -> [INCOMPLETE][415] ([i915#8816]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-snb4/igt@kms_content_protection@legacy.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-snb4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent: - shard-snb: [INCOMPLETE][416] ([i915#8816]) -> [SKIP][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-snb2/igt@kms_content_protection@uevent.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-snb2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][418] ([i915#13566]) -> [DMESG-WARN][419] ([i915#12964]) +1 other test dmesg-warn [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@2x-nonexisting-fb: - shard-dg1: [SKIP][420] ([i915#4423] / [i915#9934]) -> [SKIP][421] ([i915#9934]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-17/igt@kms_flip@2x-nonexisting-fb.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-17/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: [SKIP][422] ([i915#2672] / [i915#3555]) -> [SKIP][423] ([i915#2672] / [i915#3555] / [i915#4423]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: [SKIP][424] ([i915#2587] / [i915#2672]) -> [SKIP][425] ([i915#2587] / [i915#2672] / [i915#4423]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-dg1: [SKIP][426] -> [SKIP][427] ([i915#4423]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][428] ([i915#3458]) -> [SKIP][429] ([i915#10433] / [i915#3458]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: [SKIP][430] ([i915#10433] / [i915#3458]) -> [SKIP][431] ([i915#3458]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][432] ([i915#12713]) -> [SKIP][433] ([i915#13331]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][434] ([i915#4816]) -> [SKIP][435] ([i915#1839] / [i915#4816]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][436] ([i915#9295]) -> [SKIP][437] ([i915#3361]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8394/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13447]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447 [i915#13465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13465 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13571]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13571 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723 [i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14018 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8394 -> IGTPW_13242 CI-20190529: 20190529 CI_DRM_16642: 6517275da428d10d60b2762385ca7daa3a382754 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13242: 3e0cb64ac57d4d8b267a53933b7373c6defb54f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8394: 8394 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13242/index.html [-- Attachment #2: Type: text/html, Size: 147244 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.Full: success for Control compute-preempt bo allocation 2025-06-04 11:50 [PATCH i-g-t 0/2] Control compute-preempt bo allocation Zbigniew Kempczyński ` (4 preceding siblings ...) 2025-06-04 15:12 ` ✓ i915.CI.Full: " Patchwork @ 2025-06-05 7:00 ` Patchwork 2025-06-05 8:38 ` Zbigniew Kempczyński 5 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2025-06-05 7:00 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 61529 bytes --] == Series Details == Series: Control compute-preempt bo allocation URL : https://patchwork.freedesktop.org/series/149833/ State : success == Summary == CI Bug Log - changes from XEIGT_8394_FULL -> XEIGTPW_13242_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13242_FULL: ### IGT changes ### #### Possible regressions #### * {igt@xe_compute_preempt@compute-preempt-many-vram-evict} (NEW): - shard-lnl: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html New tests --------- New tests have been introduced between XEIGT_8394_FULL and XEIGTPW_13242_FULL: ### New IGT tests (4) ### * igt@xe_compute_preempt@compute-preempt-many-vram: - Statuses : 1 pass(s) 2 skip(s) - Exec time: [0.0, 2.80] s * igt@xe_compute_preempt@compute-preempt-many-vram-evict: - Statuses : 1 pass(s) 2 skip(s) - Exec time: [0.0, 5.04] s * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0, 5.04] s * igt@xe_compute_preempt@compute-preempt-many-vram@engine-drm_xe_engine_class_compute: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0, 2.80] s Known issues ------------ Here are the changes found in XEIGTPW_13242_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1125]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-8/igt@intel_hwmon@hwmon-read.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#873]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#873]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#873]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#316]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +12 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#607]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2191]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2314] / [Intel XE#2894]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1512]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2191]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#367]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2652] / [Intel XE#787]) +11 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +209 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#455] / [Intel XE#787]) +44 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#3442]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3432]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#3124]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#1727] / [Intel XE#3113]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][35] ([Intel XE#2705] / [Intel XE#4212]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#4417]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4416]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#4416]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2325]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#306]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-463/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-2/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#373]) +11 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][45] ([Intel XE#1178]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html - shard-bmg: NOTRUN -> [FAIL][46] ([Intel XE#1178]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#307]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#307]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][49] ([Intel XE#3304]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#1188]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1188]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#308]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1424]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#455]) +15 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#309]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2291]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2291]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1508]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1340]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#4494] / [i915#3804]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#2244]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4156]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2316]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-8/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#3321]) +4 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][70] ([Intel XE#301]) +3 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2316]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-7/igt@kms_flip@2x-plain-flip.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#2882]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a2-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][74] ([Intel XE#886]) +1 other test fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a2-dp2.html * igt@kms_flip@flip-vs-expired-vblank@a-dp4: - shard-dg2-set2: [PASS][75] -> [FAIL][76] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-lnl: NOTRUN -> [FAIL][77] ([Intel XE#4683]) +3 other tests fail [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] / [Intel XE#1745]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1401]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#352]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-7/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2312]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#651]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#651]) +38 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#656]) +12 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#4141]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2311]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2313]) +12 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#658]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1158]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2350]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#653]) +36 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#605]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-463/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1503]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-bmg: [PASS][94] -> [SKIP][95] ([Intel XE#1503]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_hdr@static-toggle-dpms.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#346]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#346]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#3012]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1122]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#3309]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@kms_pm_dc@dc5-retention-flops.html - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#3309]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1489]) +11 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2893]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2893] / [Intel XE#4608]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#4608]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#1489]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-pr-sprite-plane-move: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1406]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-7/igt@kms_psr@fbc-pr-sprite-plane-move.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2850] / [Intel XE#929]) +15 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#3414]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1127]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#3414] / [Intel XE#3904]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][115] ([Intel XE#2883]) +3 other tests fail [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#330]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-463/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2168]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@kms_vrr@cmrr.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1280] / [Intel XE#455]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1123]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1126]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_eu_stall@invalid-gt-id: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#4497]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@xe_eu_stall@invalid-gt-id.html * igt@xe_eudebug_online@interrupt-other-debuggable: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#4837]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-4/igt@xe_eudebug_online@interrupt-other-debuggable.html * igt@xe_eudebug_online@single-step-one: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#4837]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-3/igt@xe_eudebug_online@single-step-one.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#4837]) +14 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#688]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1392]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1392]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-dg2-set2: [PASS][128] -> [SKIP][129] ([Intel XE#1392]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-433/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2322]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#288]) +28 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2360]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#4943]) +11 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge.html * igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#4943]) +14 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-7/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#4915]) +294 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][136] ([Intel XE#4911]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2459] / [Intel XE#2596]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-1/igt@xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#560]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@xe_media_fill@media-fill.html * igt@xe_module_load@load: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2457]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@xe_module_load@load.html - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#378]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@xe_module_load@load.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2541] / [Intel XE#3573]) +7 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_oa@syncs-ufence-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-463/igt@xe_oa@syncs-ufence-wait-cfg.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#977]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#979]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#584]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-4/igt@xe_pm@s3-vm-bind-prefetch.html * igt@xe_pm@s4-basic: - shard-lnl: [PASS][147] -> [ABORT][148] ([Intel XE#1794]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-lnl-4/igt@xe_pm@s4-basic.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-2/igt@xe_pm@s4-basic.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#579]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#4733]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-invalid-size: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#944]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_query@multigpu-query-oa-units: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#944]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@xe_query@multigpu-query-oa-units.html * igt@xe_render_copy@render-stress-4-copies: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#4814]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@xe_render_copy@render-stress-4-copies.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#4130]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-435/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#4130]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-basic.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [FAIL][156] ([Intel XE#911]) -> [PASS][157] +3 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][158] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][160] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][162] ([Intel XE#2291]) -> [PASS][163] +6 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][164] ([Intel XE#4302]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][166] ([Intel XE#3009]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-6/igt@kms_dp_aux_dev.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-3/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][168] ([Intel XE#2316]) -> [PASS][169] +9 other tests pass [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: [FAIL][170] ([Intel XE#301]) -> [PASS][171] +3 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [FAIL][172] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][174] ([Intel XE#1503]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_hdr@invalid-hdr.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-3/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][176] ([Intel XE#3012]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [SKIP][178] ([Intel XE#1435]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][180] ([Intel XE#4459]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [SKIP][182] ([Intel XE#1392]) -> [PASS][183] +3 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-463/igt@xe_exec_basic@multigpu-once-null.html * igt@xe_exec_system_allocator@process-many-execqueues-free-race: - shard-bmg: [INCOMPLETE][184] -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-3/igt@xe_exec_system_allocator@process-many-execqueues-free-race.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-7/igt@xe_exec_system_allocator@process-many-execqueues-free-race.html * igt@xe_exec_system_allocator@threads-shared-vm-many-new-bo-map-nomemset: - shard-lnl: [FAIL][186] -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-new-bo-map-nomemset.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-new-bo-map-nomemset.html #### Warnings #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][188] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][189] ([Intel XE#2705] / [Intel XE#4212]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [SKIP][190] ([Intel XE#2341]) -> [FAIL][191] ([Intel XE#1178]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][192] ([Intel XE#1178]) -> [SKIP][193] ([Intel XE#2341]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-7/igt@kms_content_protection@lic-type-0.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent: - shard-bmg: [SKIP][194] ([Intel XE#2341]) -> [FAIL][195] ([Intel XE#1188]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_content_protection@uevent.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_content_protection@uevent.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][196] ([Intel XE#3321]) -> [SKIP][197] ([Intel XE#2316]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][198] ([Intel XE#2312]) -> [SKIP][199] ([Intel XE#2311]) +20 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][200] ([Intel XE#2311]) -> [SKIP][201] ([Intel XE#2312]) +16 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][202] ([Intel XE#4141]) -> [SKIP][203] ([Intel XE#2312]) +4 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][204] ([Intel XE#2312]) -> [SKIP][205] ([Intel XE#4141]) +20 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][206] ([Intel XE#2313]) -> [SKIP][207] ([Intel XE#2312]) +14 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][208] ([Intel XE#2312]) -> [SKIP][209] ([Intel XE#2313]) +22 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][210] ([Intel XE#3544]) -> [SKIP][211] ([Intel XE#3374] / [Intel XE#3544]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@xe_peer2peer@read: - shard-dg2-set2: [FAIL][212] ([Intel XE#1173]) -> [SKIP][213] ([Intel XE#1061]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8394/shard-dg2-436/igt@xe_peer2peer@read.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/shard-dg2-432/igt@xe_peer2peer@read.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4911 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8394 -> IGTPW_13242 IGTPW_13242: 3e0cb64ac57d4d8b267a53933b7373c6defb54f5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8394: 8394 xe-3191-6517275da428d10d60b2762385ca7daa3a382754: 6517275da428d10d60b2762385ca7daa3a382754 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/index.html [-- Attachment #2: Type: text/html, Size: 71911 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✓ Xe.CI.Full: success for Control compute-preempt bo allocation 2025-06-05 7:00 ` ✓ Xe.CI.Full: " Patchwork @ 2025-06-05 8:38 ` Zbigniew Kempczyński 0 siblings, 0 replies; 10+ messages in thread From: Zbigniew Kempczyński @ 2025-06-05 8:38 UTC (permalink / raw) To: igt-dev On Thu, Jun 05, 2025 at 07:00:39AM +0000, Patchwork wrote: > Patch Details > > Series: Control compute-preempt bo allocation > URL: https://patchwork.freedesktop.org/series/149833/ > State: success > Details: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13242/index.html > > CI Bug Log - changes from XEIGT_8394_FULL -> XEIGTPW_13242_FULL > > Summary > > SUCCESS > > No regressions found. > > Participating hosts (4 -> 3) > > Missing (1): shard-adlp > > Possible new issues > > Here are the unknown changes that may have been introduced in > XEIGTPW_13242_FULL: > > IGT changes > > Possible regressions > > * {igt@xe_compute_preempt@compute-preempt-many-vram-evict} (NEW): > * shard-lnl: NOTRUN -> SKIP +1 other test skip This skip is expected, as LNL doesn't have vram. -- Zbigniew > > New tests > > New tests have been introduced between XEIGT_8394_FULL and > XEIGTPW_13242_FULL: > > New IGT tests (4) > > * igt@xe_compute_preempt@compute-preempt-many-vram: > > * Statuses : 1 pass(s) 2 skip(s) > * Exec time: [0.0, 2.80] s > * igt@xe_compute_preempt@compute-preempt-many-vram-evict: > > * Statuses : 1 pass(s) 2 skip(s) > * Exec time: [0.0, 5.04] s > * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute: > > * Statuses : 1 pass(s) 1 skip(s) > * Exec time: [0.0, 5.04] s > * igt@xe_compute_preempt@compute-preempt-many-vram@engine-drm_xe_engine_class_compute: > > * Statuses : 1 pass(s) 1 skip(s) > * Exec time: [0.0, 2.80] s > > Known issues > > Here are the changes found in XEIGTPW_13242_FULL that come from known > issues: > > IGT changes > > Issues hit > > * igt@intel_hwmon@hwmon-read: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1125) +1 other test skip > * igt@kms_async_flips@invalid-async-flip: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#873) > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#873) > * shard-lnl: NOTRUN -> SKIP (Intel XE#873) > * igt@kms_big_fb@4-tiled-32bpp-rotate-270: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1407) +2 other tests skip > * shard-bmg: NOTRUN -> SKIP (Intel XE#2327) > * igt@kms_big_fb@linear-16bpp-rotate-270: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#316) +3 other tests skip > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1124) +2 other tests skip > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#1124) +1 other test skip > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1124) +12 other tests > skip > * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#607) > * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: > > * shard-bmg: PASS -> SKIP (Intel XE#2314 / Intel XE#2894) > * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#2191) > * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2314 / Intel XE#2894) > * shard-lnl: NOTRUN -> SKIP (Intel XE#1512) +1 other test skip > * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2191) +2 other tests > skip > * igt@kms_bw@linear-tiling-2-displays-1920x1080p: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#367) +1 other test skip > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#367) +1 other test skip > * igt@kms_bw@linear-tiling-3-displays-3840x2160p: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#367) > * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2652 / Intel XE#787) +11 > other tests skip > * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#2887) +5 other tests skip > * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#787) +209 other tests > skip > * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-2: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455 / Intel XE#787) +44 > other tests skip > * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2887) +6 other tests skip > * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3442) > * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#3432) > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: > > * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#1727 / Intel XE#3113 > / Intel XE#3124 / Intel XE#4345) > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: > > * shard-dg2-set2: PASS -> INCOMPLETE (Intel XE#3124) > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: > > * shard-dg2-set2: PASS -> DMESG-WARN (Intel XE#1727 / Intel > XE#3113) > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: > > * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#2705 / Intel > XE#4212) > * igt@kms_cdclk@mode-transition@pipe-d-dp-4: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4417) +3 other tests > skip > * igt@kms_cdclk@plane-scaling: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#4416) +3 other tests skip > * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4416) +3 other tests > skip > * igt@kms_chamelium_color@ctm-0-50: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2325) > * igt@kms_chamelium_color@ctm-green-to-red: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#306) > * igt@kms_chamelium_color@ctm-max: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#306) +1 other test skip > * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2252) +3 other tests skip > * shard-lnl: NOTRUN -> SKIP (Intel XE#373) +4 other tests skip > * igt@kms_chamelium_hpd@dp-hpd-fast: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#373) +11 other tests > skip > * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: > > * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1178) +1 other test fail > * shard-bmg: NOTRUN -> FAIL (Intel XE#1178) > * igt@kms_content_protection@dp-mst-lic-type-0: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#307) > * igt@kms_content_protection@dp-mst-lic-type-1: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#307) > * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: > > * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#3304) > * igt@kms_content_protection@uevent@pipe-a-dp-2: > > * shard-bmg: NOTRUN -> FAIL (Intel XE#1188) > * igt@kms_content_protection@uevent@pipe-a-dp-4: > > * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#1188) > * igt@kms_cursor_crc@cursor-onscreen-32x10: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2320) +4 other tests skip > * igt@kms_cursor_crc@cursor-random-512x512: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#308) > * igt@kms_cursor_crc@cursor-rapid-movement-128x42: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1424) +5 other tests skip > * igt@kms_cursor_crc@cursor-sliding-max-size: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#455) +15 other tests > skip > * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#309) +1 other test skip > * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2291) > * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: > > * shard-bmg: PASS -> SKIP (Intel XE#2291) +2 other tests skip > * igt@kms_dirtyfb@psr-dirtyfb-ioctl: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#1508) > * igt@kms_dither@fb-8bpc-vs-panel-6bpc: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#1340) +1 other test skip > * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4494 / i915#3804) > * igt@kms_dsc@dsc-fractional-bpp-with-bpc: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#2244) > * igt@kms_fbcon_fbt@fbc-suspend: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#4156) > * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2316) +1 other test skip > * igt@kms_flip@2x-flip-vs-expired-vblank: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1421) +3 other tests skip > * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: > > * shard-dg2-set2: PASS -> FAIL (Intel XE#301) +3 other tests fail > * igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3: > > * shard-bmg: NOTRUN -> FAIL (Intel XE#3321) +4 other tests fail > * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4: > > * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#301) +3 other tests fail > * igt@kms_flip@2x-plain-flip: > > * shard-bmg: PASS -> SKIP (Intel XE#2316) +4 other tests skip > * igt@kms_flip@2x-plain-flip-ts-check: > > * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#2882) > * igt@kms_flip@2x-plain-flip-ts-check@ac-hdmi-a2-dp2: > > * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#886) +1 other test fail > * igt@kms_flip@flip-vs-expired-vblank@a-dp4: > > * shard-dg2-set2: PASS -> FAIL (Intel XE#301 / Intel XE#3321) +1 > other test fail > * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: > > * shard-lnl: NOTRUN -> FAIL (Intel XE#4683) +3 other tests fail > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1401 / Intel XE#1745) > * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1401) > * igt@kms_force_connector_basic@prune-stale-modes: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#352) > * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2312) +4 other tests skip > * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#651) +4 other tests skip > * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#651) +38 other tests > skip > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#656) +12 other tests skip > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#4141) +4 other tests skip > * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-msflip-blt: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2311) +5 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2313) +12 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#658) > * igt@kms_frontbuffer_tracking@plane-fbc-rte: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1158) > * shard-bmg: NOTRUN -> SKIP (Intel XE#2350) > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#653) +36 other tests > skip > * igt@kms_getfb@getfb-reject-ccs: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#605) > * igt@kms_hdr@static-toggle: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1503) > * igt@kms_hdr@static-toggle-dpms: > > * shard-bmg: PASS -> SKIP (Intel XE#1503) > * igt@kms_joiner@invalid-modeset-big-joiner: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#346) > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#346) > * igt@kms_joiner@invalid-modeset-force-big-joiner: > > * shard-bmg: PASS -> SKIP (Intel XE#3012) > * igt@kms_pm_dc@dc3co-vpb-simulation: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1122) +1 other test skip > * igt@kms_pm_dc@dc5-retention-flops: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3309) > * shard-bmg: NOTRUN -> SKIP (Intel XE#3309) > * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1489) +11 other tests > skip > * shard-lnl: NOTRUN -> SKIP (Intel XE#2893) +3 other tests skip > * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#2893 / Intel XE#4608) > * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#4608) +2 other tests skip > * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#1489) +4 other tests skip > * igt@kms_psr@fbc-pr-sprite-plane-move: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1406) +2 other tests skip > * igt@kms_psr@fbc-psr-cursor-plane-onoff: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2850 / Intel XE#929) +15 > other tests skip > * igt@kms_psr@pr-cursor-plane-onoff: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2234 / Intel XE#2850) +5 > other tests skip > * igt@kms_rotation_crc@primary-rotation-90: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) +1 > other test skip > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#3414) +4 other tests > skip > * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1127) > * igt@kms_rotation_crc@sprite-rotation-90: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#3414 / Intel XE#3904) > * igt@kms_setmode@basic@pipe-b-hdmi-a-2-pipe-a-dp-2: > > * shard-dg2-set2: NOTRUN -> FAIL (Intel XE#2883) +3 other tests > fail > * igt@kms_tv_load_detect@load-detect: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#330) > * igt@kms_vrr@cmrr: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2168) > * igt@xe_compute_preempt@compute-preempt: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1280 / Intel XE#455) +3 > other tests skip > * igt@xe_copy_basic@mem-copy-linear-0xfffe: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1123) > * igt@xe_copy_basic@mem-set-linear-0x369: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1126) > * igt@xe_eu_stall@invalid-gt-id: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4497) > * igt@xe_eudebug_online@interrupt-other-debuggable: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#4837) +3 other tests skip > * igt@xe_eudebug_online@single-step-one: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#4837) +5 other tests skip > * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4837) +14 other tests > skip > * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#688) +3 other tests skip > * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#1392) > * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#1392) +5 other tests skip > * igt@xe_exec_basic@multigpu-once-basic-defer-bind: > > * shard-dg2-set2: PASS -> SKIP (Intel XE#1392) +5 other tests skip > * igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2322) +3 other tests skip > * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#288) +28 other tests > skip > * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2360) +1 other test skip > * igt@xe_exec_system_allocator@process-many-execqueues-mmap-free-huge: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#4943) +11 other tests skip > * igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#4943) +14 other tests skip > * igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4915) +294 other tests > skip > * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv: > > * shard-dg2-set2: NOTRUN -> INCOMPLETE (Intel XE#4911) > * igt@xe_media_fill@media-fill: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2459 / Intel XE#2596) > * shard-lnl: NOTRUN -> SKIP (Intel XE#560) > * igt@xe_module_load@load: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#2457) > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#378) > * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573) +7 > other tests skip > * igt@xe_oa@syncs-ufence-wait-cfg: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2541 / Intel XE#3573 / > Intel XE#4501) > * igt@xe_pat@pat-index-xe2: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#977) > * igt@xe_pat@pat-index-xelpg: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#979) > * igt@xe_pm@d3cold-basic-exec: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#2284 / Intel XE#366) +1 > other test skip > * igt@xe_pm@s3-vm-bind-prefetch: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#584) > * igt@xe_pm@s4-basic: > > * shard-lnl: PASS -> ABORT (Intel XE#1794) > * igt@xe_pm@vram-d3cold-threshold: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#579) > * igt@xe_pxp@pxp-termination-key-update-post-suspend: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4733) > * igt@xe_query@multigpu-query-invalid-size: > > * shard-bmg: NOTRUN -> SKIP (Intel XE#944) > * igt@xe_query@multigpu-query-oa-units: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#944) +6 other tests skip > * igt@xe_render_copy@render-stress-4-copies: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4814) > * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: > > * shard-dg2-set2: NOTRUN -> SKIP (Intel XE#4130) +1 other test skip > * igt@xe_sriov_auto_provisioning@selfconfig-basic: > > * shard-lnl: NOTRUN -> SKIP (Intel XE#4130) > > Possible fixes > > * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: > > * shard-lnl: FAIL (Intel XE#911) -> PASS +3 other tests pass > * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: > > * shard-bmg: SKIP (Intel XE#2314 / Intel XE#2894) -> PASS > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: > > * shard-dg2-set2: INCOMPLETE (Intel XE#1727 / Intel XE#3113 / Intel > XE#4212 / Intel XE#4522) -> PASS > * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: > > * shard-bmg: SKIP (Intel XE#2291) -> PASS +6 other tests pass > * igt@kms_display_modes@extended-mode-basic: > > * shard-bmg: SKIP (Intel XE#4302) -> PASS > * igt@kms_dp_aux_dev: > > * shard-bmg: SKIP (Intel XE#3009) -> PASS > * igt@kms_flip@2x-plain-flip-fb-recreate: > > * shard-bmg: SKIP (Intel XE#2316) -> PASS +9 other tests pass > * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: > > * shard-dg2-set2: FAIL (Intel XE#301) -> PASS +3 other tests pass > * igt@kms_flip@flip-vs-expired-vblank@c-dp4: > > * shard-dg2-set2: FAIL (Intel XE#301 / Intel XE#3321) -> PASS > * igt@kms_hdr@invalid-hdr: > > * shard-bmg: SKIP (Intel XE#1503) -> PASS > * igt@kms_joiner@basic-force-big-joiner: > > * shard-bmg: SKIP (Intel XE#3012) -> PASS > * igt@kms_setmode@invalid-clone-single-crtc: > > * shard-bmg: SKIP (Intel XE#1435) -> PASS > * igt@kms_vrr@cmrr@pipe-a-edp-1: > > * shard-lnl: FAIL (Intel XE#4459) -> PASS +1 other test pass > * igt@xe_exec_basic@multigpu-once-null: > > * shard-dg2-set2: SKIP (Intel XE#1392) -> PASS +3 other tests pass > * igt@xe_exec_system_allocator@process-many-execqueues-free-race: > > * shard-bmg: INCOMPLETE -> PASS > * igt@xe_exec_system_allocator@threads-shared-vm-many-new-bo-map-nomemset: > > * shard-lnl: FAIL -> PASS > > Warnings > > * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: > > * shard-dg2-set2: INCOMPLETE (Intel XE#1727 / Intel XE#2705 / Intel > XE#3113 / Intel XE#4212 / Intel XE#4522) -> INCOMPLETE (Intel > XE#2705 / Intel XE#4212) > * igt@kms_content_protection@atomic-dpms: > > * shard-bmg: SKIP (Intel XE#2341) -> FAIL (Intel XE#1178) > * igt@kms_content_protection@lic-type-0: > > * shard-bmg: FAIL (Intel XE#1178) -> SKIP (Intel XE#2341) > * igt@kms_content_protection@uevent: > > * shard-bmg: SKIP (Intel XE#2341) -> FAIL (Intel XE#1188) > * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: > > * shard-bmg: FAIL (Intel XE#3321) -> SKIP (Intel XE#2316) > * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: > > * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2311) +20 other > tests skip > * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: > > * shard-bmg: SKIP (Intel XE#2311) -> SKIP (Intel XE#2312) +16 other > tests skip > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: > > * shard-bmg: SKIP (Intel XE#4141) -> SKIP (Intel XE#2312) +4 other > tests skip > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: > > * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#4141) +20 other > tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: > > * shard-bmg: SKIP (Intel XE#2313) -> SKIP (Intel XE#2312) +14 other > tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: > > * shard-bmg: SKIP (Intel XE#2312) -> SKIP (Intel XE#2313) +22 other > tests skip > * igt@kms_hdr@brightness-with-hdr: > > * shard-bmg: SKIP (Intel XE#3544) -> SKIP (Intel XE#3374 / Intel > XE#3544) > * igt@xe_peer2peer@read: > > * shard-dg2-set2: FAIL (Intel XE#1173) -> SKIP (Intel XE#1061) +1 > other test skip > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > Build changes > > * IGT: IGT_8394 -> IGTPW_13242 > > IGTPW_13242: 3e0cb64ac57d4d8b267a53933b7373c6defb54f5 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8394: 8394 > xe-3191-6517275da428d10d60b2762385ca7daa3a382754: > 6517275da428d10d60b2762385ca7daa3a382754 ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-06-05 12:33 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-06-04 11:50 [PATCH i-g-t 0/2] Control compute-preempt bo allocation Zbigniew Kempczyński 2025-06-04 11:50 ` [PATCH i-g-t 1/2] lib/intel_compute: add alloc preference for objects used in compute Zbigniew Kempczyński 2025-06-05 12:24 ` Francois Dugast 2025-06-04 11:50 ` [PATCH i-g-t 2/2] tests/xe_compute_preempt: add compute preempt on vram bos Zbigniew Kempczyński 2025-06-05 12:33 ` Francois Dugast 2025-06-04 13:01 ` ✓ i915.CI.BAT: success for Control compute-preempt bo allocation Patchwork 2025-06-04 13:08 ` ✓ Xe.CI.BAT: " Patchwork 2025-06-04 15:12 ` ✓ i915.CI.Full: " Patchwork 2025-06-05 7:00 ` ✓ Xe.CI.Full: " Patchwork 2025-06-05 8:38 ` Zbigniew Kempczyński
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.