* [PATCH 0/2] UMD direct submission tests
@ 2024-11-18 20:59 Matthew Brost
2024-11-18 20:59 ` [PATCH 1/2] drm-uapi/xe: Update uAPI for UMD direct submission Matthew Brost
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Matthew Brost @ 2024-11-18 20:59 UTC (permalink / raw)
To: igt-dev
Public checkpoint on some experimental KMD work, do not review.
Matt
Matthew Brost (2):
drm-uapi/xe: Update uAPI for UMD direct submission
tests/xe: Add usermap test
include/drm-uapi/xe_drm.h | 153 ++++++-
lib/xe/xe_ioctl.c | 29 ++
lib/xe/xe_ioctl.h | 3 +
tests/intel/xe_exec_usermap.c | 800 ++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
5 files changed, 982 insertions(+), 4 deletions(-)
create mode 100644 tests/intel/xe_exec_usermap.c
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH 1/2] drm-uapi/xe: Update uAPI for UMD direct submission 2024-11-18 20:59 [PATCH 0/2] UMD direct submission tests Matthew Brost @ 2024-11-18 20:59 ` Matthew Brost 2024-11-18 20:59 ` [PATCH 2/2] tests/xe: Add usermap test Matthew Brost ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Matthew Brost @ 2024-11-18 20:59 UTC (permalink / raw) To: igt-dev Experimental uAPI being sent to list for public checkout. Do not review. Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- include/drm-uapi/xe_drm.h | 153 +++++++++++++++++++++++++++++++++++++- 1 file changed, 149 insertions(+), 4 deletions(-) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index 56163eb913..0c88ad760e 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -3,8 +3,8 @@ * Copyright © 2023 Intel Corporation */ -#ifndef _XE_DRM_H_ -#define _XE_DRM_H_ +#ifndef _UAPI_XE_DRM_H_ +#define _UAPI_XE_DRM_H_ #include "drm.h" @@ -102,6 +102,7 @@ extern "C" { #define DRM_XE_EXEC 0x09 #define DRM_XE_WAIT_USER_FENCE 0x0a #define DRM_XE_OBSERVATION 0x0b +#define DRM_XE_VM_CONVERT_FENCE 0x0c /* Must be kept compact -- no holes */ @@ -117,6 +118,7 @@ extern "C" { #define DRM_IOCTL_XE_EXEC DRM_IOW(DRM_COMMAND_BASE + DRM_XE_EXEC, struct drm_xe_exec) #define DRM_IOCTL_XE_WAIT_USER_FENCE DRM_IOWR(DRM_COMMAND_BASE + DRM_XE_WAIT_USER_FENCE, struct drm_xe_wait_user_fence) #define DRM_IOCTL_XE_OBSERVATION DRM_IOW(DRM_COMMAND_BASE + DRM_XE_OBSERVATION, struct drm_xe_observation_param) +#define DRM_IOCTL_XE_VM_CONVERT_FENCE DRM_IOW(DRM_COMMAND_BASE + DRM_XE_VM_CONVERT_FENCE, struct drm_xe_vm_convert_fence) /** * DOC: Xe IOCTL Extensions @@ -811,6 +813,32 @@ struct drm_xe_gem_create { /** * struct drm_xe_gem_mmap_offset - Input of &DRM_IOCTL_XE_GEM_MMAP_OFFSET + * + * The @flags can be: + * - %DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER - For user to query special offset + * for use in mmap ioctl. Writing to the returned mmap address will generate a + * PCI memory barrier with low overhead (avoiding IOCTL call as well as writing + * to VRAM which would also add overhead), acting like an MI_MEM_FENCE + * instruction. + * + * Note: The mmap size can be at most 4K, due to HW limitations. As a result + * this interface is only supported on CPU architectures that support 4K page + * size. The mmap_offset ioctl will detect this and gracefully return an + * error, where userspace is expected to have a different fallback method for + * triggering a barrier. + * + * Roughly the usage would be as follows: + * + * .. code-block:: C + * + * struct drm_xe_gem_mmap_offset mmo = { + * .handle = 0, // must be set to 0 + * .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + * }; + * + * err = ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo); + * map = mmap(NULL, size, PROT_WRITE, MAP_SHARED, fd, mmo.offset); + * map[i] = 0xdeadbeaf; // issue barrier */ struct drm_xe_gem_mmap_offset { /** @extensions: Pointer to the first extension struct, if any */ @@ -819,7 +847,8 @@ struct drm_xe_gem_mmap_offset { /** @handle: Handle for the object being mapped. */ __u32 handle; - /** @flags: Must be zero */ +#define DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER (1 << 0) + /** @flags: Flags */ __u32 flags; /** @offset: The fake offset to use for subsequent mmap call */ @@ -1084,6 +1113,61 @@ struct drm_xe_vm_bind { __u64 reserved[2]; }; +/** + * struct drm_xe_exec_queue_ext_usermap + */ +struct drm_xe_exec_queue_ext_usermap { + /** @base: base user extension */ + struct drm_xe_user_extension base; + + /** @flags: MBZ */ + __u32 flags; + + /** @version: Version of usermap */ +#define DRM_XE_EXEC_QUEUE_USERMAP_VERSION_XE2_REV0 0 + __u32 version; + + /** + * @ring_size: The ring size. 16k-128k valid, must be power of 2. User + * space has pad allocation / mapping to avoid prefetch faults. Prefetch + * size is platform dependent. + */ + __u32 ring_size; + + /** @pad: MBZ */ + __u32 pad; + + /** + * @ring_addr: Ring address mapped within the VM, should be mapped as + * UC. + */ + __u64 ring_addr; + + /** + * @indirect_ring_state_offset: The fake indirect ring state offset to + * use for subsequent mmap call. Always 4k in size. + */ + __u64 indirect_ring_state_offset; + + /** + * @doorbell_offset: The fake doorbell offset to use for subsequent mmap + * call. Always 4k in size. + */ + __u64 doorbell_offset; + + /** @doorbell_page_offset: The doorbell offset within the mmapped page */ + __u32 doorbell_page_offset; + + /** + * @indirect_ring_state_handle: Indirect ring state buffer object + * handle. Allocated by KMD and must be closed by user. + */ + __u32 indirect_ring_state_handle; + + /** @reserved: Reserved */ + __u64 reserved[2]; +}; + /** * struct drm_xe_exec_queue_create - Input of &DRM_IOCTL_XE_EXEC_QUEUE_CREATE * @@ -1111,6 +1195,7 @@ struct drm_xe_exec_queue_create { #define DRM_XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0 #define DRM_XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE 1 +#define DRM_XE_EXEC_QUEUE_EXTENSION_USERMAP 1 /** @extensions: Pointer to the first extension struct, if any */ __u64 extensions; @@ -1713,8 +1798,68 @@ struct drm_xe_oa_stream_info { __u64 reserved[3]; }; +/** + * struct drm_xe_semaphore - Semaphore + */ +struct drm_xe_semaphore { + /** + * @handle: Handle for the semaphore. Must be bound to the VM when + * passed into drm_xe_vm_convert_fence. + */ + __u32 handle; + + /** @offset: Offset in BO for semaphore, must QW aligned */ + __u32 offset; + + /** @seqno: Sequence number of semaphore */ + __u64 seqno; + + /** @token: Semaphore token - MBZ as not supported yet */ + __u64 token; + + /** @reserved: reserved for future use */ + __u64 reserved[2]; +}; + +/** + * struct drm_xe_vm_convert_fence - Convert semaphore to / from syncobj + * + * DRM_XE_SYNC_FLAG_SIGNAL set indicates semaphore -> syncobj + * DRM_XE_SYNC_FLAG_SIGNAL clear indicates syncobj -> semaphore + */ +struct drm_xe_vm_convert_fence { + /** + * @extensions: Pointer to the first extension struct, if any + */ + __u64 extensions; + + /** @vm_id: VM ID */ + __u32 vm_id; + + /** @flags: Flags - MBZ */ + __u32 flags; + + /** @pad: MBZ */ + __u32 pad; + + /** + * @num_syncs: Number of struct drm_xe_sync and struct drm_xe_semaphore + * in arrays. + */ + __u32 num_syncs; + + /** @syncs: Pointer to struct drm_xe_sync array. */ + __u64 syncs; + + /** @semaphores: Pointer to struct drm_xe_semaphore array. */ + __u64 semaphores; + + /** @reserved: reserved for future use */ + __u64 reserved[2]; +}; + #if defined(__cplusplus) } #endif -#endif /* _XE_DRM_H_ */ +#endif /* _UAPI_XE_DRM_H_ */ -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] tests/xe: Add usermap test 2024-11-18 20:59 [PATCH 0/2] UMD direct submission tests Matthew Brost 2024-11-18 20:59 ` [PATCH 1/2] drm-uapi/xe: Update uAPI for UMD direct submission Matthew Brost @ 2024-11-18 20:59 ` Matthew Brost 2024-11-19 3:38 ` ✗ GitLab.Pipeline: warning for UMD direct submission tests Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Matthew Brost @ 2024-11-18 20:59 UTC (permalink / raw) To: igt-dev Add usermap test for experimental UMD direction submission in the KMD. Being sent as public checkpoint. Do not review. Basic submission, dynamic memory (userptr invalidation, eviction), endless batches, and user sync to kernel syncs tested. Single batch, many batch, and threaded sections exists. Should be expanded to test cross process sync before upstreaming UMD submission. Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- lib/xe/xe_ioctl.c | 29 ++ lib/xe/xe_ioctl.h | 3 + tests/intel/xe_exec_usermap.c | 800 ++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 4 files changed, 833 insertions(+) create mode 100644 tests/intel/xe_exec_usermap.c diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 6d83889188..e9ccf388a3 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -226,6 +226,23 @@ void xe_vm_bind_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, __xe_vm_bind_sync(fd, vm, bo, offset, addr, size, DRM_XE_VM_BIND_OP_MAP); } +void xe_vm_bind_uc_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, + uint64_t addr, uint64_t size) +{ + struct drm_xe_sync sync = { + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, + .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .handle = syncobj_create(fd, 0), + }; + + igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, offset, addr, size, + DRM_XE_VM_BIND_OP_MAP, 0, &sync, 1, 0, + intel_get_pat_idx_uc(fd), 0), 0); + + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); + syncobj_destroy(fd, sync.handle); +} + void xe_vm_unbind_sync(int fd, uint32_t vm, uint64_t offset, uint64_t addr, uint64_t size) { @@ -436,6 +453,18 @@ void *xe_bo_map(int fd, uint32_t bo, size_t size) return __xe_bo_map(fd, bo, size, PROT_WRITE); } +void *xe_bo_map_fixed(int fd, uint32_t bo, size_t size, uint64_t addr) +{ + uint64_t mmo; + void *map; + + mmo = xe_bo_mmap_offset(fd, bo); + map = mmap((void *)addr, size, PROT_WRITE, MAP_SHARED | MAP_FIXED, fd, mmo); + igt_assert(map != MAP_FAILED); + + return map; +} + void *xe_bo_mmap_ext(int fd, uint32_t bo, size_t size, int prot) { return __xe_bo_map(fd, bo, size, prot); diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index 18cc2b72b2..7e332b00c4 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -56,6 +56,8 @@ void xe_vm_unbind_async(int fd, uint32_t vm, uint32_t exec_queue, struct drm_xe_sync *sync, uint32_t num_syncs); void xe_vm_bind_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, uint64_t addr, uint64_t size); +void xe_vm_bind_uc_sync(int fd, uint32_t vm, uint32_t bo, uint64_t offset, + uint64_t addr, uint64_t size); void xe_vm_unbind_sync(int fd, uint32_t vm, uint64_t offset, uint64_t addr, uint64_t size); void xe_vm_bind_array(int fd, uint32_t vm, uint32_t exec_queue, @@ -86,6 +88,7 @@ uint32_t xe_exec_queue_create_class(int fd, uint32_t vm, uint16_t class); void xe_exec_queue_destroy(int fd, uint32_t exec_queue); uint64_t xe_bo_mmap_offset(int fd, uint32_t bo); void *xe_bo_map(int fd, uint32_t bo, size_t size); +void *xe_bo_map_fixed(int fd, uint32_t bo, size_t size, long unsigned int addr); void *xe_bo_mmap_ext(int fd, uint32_t bo, size_t size, int prot); int __xe_exec(int fd, struct drm_xe_exec *exec); void xe_exec(int fd, struct drm_xe_exec *exec); diff --git a/tests/intel/xe_exec_usermap.c b/tests/intel/xe_exec_usermap.c new file mode 100644 index 0000000000..289489f763 --- /dev/null +++ b/tests/intel/xe_exec_usermap.c @@ -0,0 +1,800 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + * + * Authors: + * Matthew Brost <matthew.brost@intel.com> + */ + +/** + * TEST: Basic tests for exec usermap functionality + * Category: Core + * Mega feature: General Core features + * Sub-category: CMD submission + * Functionality: exec_queues + */ + +#include "igt.h" +#include "lib/igt_syncobj.h" +#include "lib/intel_reg.h" +#include "xe_drm.h" + +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" +#include "xe/xe_spin.h" +#include <string.h> + +#define odd(__i) (__i & 1) + +#define MAX_USERMAP 256 +#define DB_RING_VALID 0xacedbeef +#define BARRIER_VALUE 0xdeadbeef +#define TAIL_REG 5 + +#define TRIES_PER_SEC 1000 +#define TRY_SLEEP_ONE_MS 1000 + +static void ring_doorbell(uint32_t *db) +{ + igt_assert(READ_ONCE(*db) == DB_RING_VALID); +} + +#define HARDWARE_SEQNO_OFFSET 0x800 +#define WRITEBACK_SEQNO_OFFSET 0x840 +#define SPIN_OFFSET 0xc00 + +struct usermap { + struct drm_xe_exec_queue_ext_usermap ext; + struct drm_xe_engine_class_instance *hwe; + uint32_t exec_queue_id; + uint32_t vm; + uint32_t syncobj; + uint32_t ring_bo; + void *ring; + void *indirect; + void *doorbell; + uint64_t seqno_size; + uint32_t seqno_handle; + void *seqno_map; + uint64_t bo_size; + uint32_t bo; + void *bo_map; + uint32_t *db; + uint32_t tail; + uint64_t spin_addr; + uint64_t hardware_seqno_addr; + uint64_t *hardware_seqno; + uint64_t *writeback_seqno; + uint32_t *barrier; + uint32_t *spin; + uint32_t *tail_ptr; + uint64_t seqno_value; + void *userptr; + int fd; +}; + +#define USERPTR_SIZE (SZ_4K * 2) + +static void open_usermap(int fd, struct usermap *usermap, + struct drm_xe_engine_class_instance *hwe, uint32_t vm, + uint64_t bo_size) +{ + struct drm_xe_gem_mmap_offset mmo = { + .handle = 0, // must be set to 0 + .flags = DRM_XE_MMAP_OFFSET_FLAG_PCI_BARRIER, + }; + u64 ext = to_user_pointer(&usermap->ext); + uint32_t bo_flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM; + + usermap->ext.base.name = DRM_XE_EXEC_QUEUE_EXTENSION_USERMAP, + usermap->ext.version = DRM_XE_EXEC_QUEUE_USERMAP_VERSION_XE2_REV0; + + usermap->ring_bo = xe_bo_create(fd, vm, SZ_32K, + vram_if_possible(fd, hwe->gt_id), + bo_flags); + usermap->ring = aligned_alloc(SZ_32K, SZ_32K); + usermap->ring = xe_bo_map_fixed(fd, usermap->ring_bo, SZ_16K, + (uint64_t)usermap->ring); + xe_vm_bind_uc_sync(fd, vm, usermap->ring_bo, 0, + (uint64_t)usermap->ring, SZ_32K); + + usermap->ext.ring_addr = (uint64_t)usermap->ring; + usermap->ext.ring_size = SZ_16K; + + usermap->syncobj = syncobj_create(fd, 0); + usermap->exec_queue_id = xe_exec_queue_create(fd, vm, hwe, ext); + + usermap->indirect = mmap(NULL, SZ_4K, PROT_WRITE, MAP_SHARED, + fd, usermap->ext.indirect_ring_state_offset); + igt_assert(usermap->indirect != MAP_FAILED); + + usermap->doorbell = mmap(NULL, SZ_4K, PROT_WRITE, MAP_SHARED, + fd, usermap->ext.doorbell_offset); + igt_assert(usermap->doorbell != MAP_FAILED); + + usermap->db = usermap->doorbell + usermap->ext.doorbell_page_offset; + ring_doorbell(usermap->db); + + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_GEM_MMAP_OFFSET, &mmo), 0); + usermap->barrier = mmap(NULL, SZ_4K, PROT_WRITE, MAP_SHARED, fd, + mmo.offset); + igt_assert(usermap->barrier != MAP_FAILED); + + usermap->userptr = mmap(NULL, USERPTR_SIZE, PROT_READ | + PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0); + igt_assert(usermap->userptr != MAP_FAILED); + xe_vm_bind_userptr_async(fd, vm, 0, (uint64_t)usermap->userptr, + (uint64_t)usermap->userptr, USERPTR_SIZE, + NULL, 0); + + usermap->seqno_size = SZ_4K; + usermap->seqno_map = usermap->indirect; + usermap->seqno_handle = usermap->ext.indirect_ring_state_handle; + xe_vm_bind_sync(fd, vm, usermap->seqno_handle, 0, + (uint64_t)usermap->seqno_map, usermap->seqno_size); + + usermap->hwe = hwe; + usermap->vm = vm; + usermap->fd = fd; + usermap->hardware_seqno_addr = (u64)usermap->seqno_map + + HARDWARE_SEQNO_OFFSET; + usermap->hardware_seqno = usermap->seqno_map + HARDWARE_SEQNO_OFFSET; + usermap->writeback_seqno = usermap->seqno_map + WRITEBACK_SEQNO_OFFSET; + usermap->spin_addr = (u64)usermap->seqno_map + SPIN_OFFSET; + usermap->spin = usermap->seqno_map + SPIN_OFFSET; + usermap->tail_ptr = usermap->indirect + TAIL_REG * sizeof(uint32_t); + + if (bo_size) { + usermap->bo_size = bo_size; + usermap->bo_map = aligned_alloc(SZ_2M, bo_size); + usermap->bo = xe_bo_create(fd, vm, bo_size, + vram_if_possible(fd, hwe->gt_id), + bo_flags); + usermap->bo_map = xe_bo_map_fixed(fd, usermap->bo, bo_size, + (uint64_t)usermap->bo_map); + xe_vm_bind_sync(fd, vm, usermap->bo, 0, + (uint64_t)usermap->bo_map, bo_size); + } +} + +static void close_usermap(struct usermap *usermap, bool hang) +{ + if (!hang) { + xe_vm_unbind_sync(usermap->fd, usermap->vm, 0, + (uint64_t)usermap->userptr, USERPTR_SIZE); + xe_vm_unbind_sync(usermap->fd, usermap->vm, 0, + (uint64_t)usermap->seqno_map, + usermap->seqno_size); + } + + if (usermap->bo) { + if (!hang) + xe_vm_unbind_sync(usermap->fd, usermap->vm, 0, + (uint64_t)usermap->bo_map, + usermap->bo_size); + munmap(usermap->bo_map, usermap->bo_size); + gem_close(usermap->fd, usermap->bo); + } + + munmap(usermap->indirect, SZ_4K); + gem_close(usermap->fd, usermap->ext.indirect_ring_state_handle); + + if (!hang) + xe_vm_unbind_sync(usermap->fd, usermap->vm, 0, + (uint64_t)usermap->ring, + SZ_32K); + munmap(usermap->ring, usermap->ext.ring_size); + gem_close(usermap->fd, usermap->ring_bo); + + munmap(usermap->doorbell, SZ_4K); + + munmap(usermap->barrier, SZ_4K); + + munmap(usermap->userptr, USERPTR_SIZE); + + syncobj_destroy(usermap->fd, usermap->syncobj); + xe_exec_queue_destroy(usermap->fd, usermap->exec_queue_id); +} + +static void write_dw_instr_usermap(struct usermap *usermap, uint32_t instr) +{ + uint32_t *p_instr = usermap->ring + usermap->tail; + + *p_instr = instr; + usermap->tail = (usermap->tail + sizeof(uint32_t)) % + usermap->ext.ring_size; +} + +#define MS_TO_NS(v) (v * 1000000) +#define MI_BATCH_BUFFER_START_PPGTT (0x31 << 23 | 0x1 << 8 | 1) + +static void emit_spin_userptr_bo_usermap(struct usermap *usermap, + uint64_t offset, bool long_spin, + bool use_bo) +{ + uint64_t addr = (use_bo ? (uint64_t)usermap->bo_map : + (uint64_t)usermap->userptr) + offset; + struct xe_spin_opts opts = { + .addr = addr, + .ctx_ticks = duration_to_ctx_ticks(usermap->fd, + usermap->hwe->gt_id, + long_spin ? + MS_TO_NS(500) : + MS_TO_NS(2)), + .preempt = long_spin, + }; + struct xe_spin *spin = (struct xe_spin *)addr; + + xe_spin_init(spin, &opts); + + write_dw_instr_usermap(usermap, MI_BATCH_BUFFER_START_PPGTT); + write_dw_instr_usermap(usermap, addr); + write_dw_instr_usermap(usermap, addr >> 32); + write_dw_instr_usermap(usermap, MI_NOOP); +} + +#define SPIN_VALUE 0xdeadbeaf + +static void emit_spin_usermap(struct usermap *usermap) +{ + write_dw_instr_usermap(usermap, MI_SEMAPHORE_WAIT | MI_SEMAPHORE_POLL | + MI_SEMAPHORE_SAD_EQ_SDD); + write_dw_instr_usermap(usermap, SPIN_VALUE); + write_dw_instr_usermap(usermap, usermap->spin_addr); + write_dw_instr_usermap(usermap, usermap->spin_addr >> 32); +} + +static void release_spin_usermap(struct usermap *usermap) +{ + uint32_t spin_value = SPIN_VALUE; + + __atomic_store(usermap->spin, &spin_value, __ATOMIC_SEQ_CST); +} + +#define MI_FLUSH_QW (0x26 << 23 | 0x1 << 14 | 3) + +static void emit_hardware_seqno_usermap(struct usermap *usermap) +{ + if (usermap->hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER || + usermap->hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) { + write_dw_instr_usermap(usermap, GFX_OP_PIPE_CONTROL(6)); + write_dw_instr_usermap(usermap, PIPE_CONTROL_CS_STALL | + PIPE_CONTROL_QW_WRITE | + PIPE_CONTROL_FLUSH_ENABLE); + write_dw_instr_usermap(usermap, usermap->hardware_seqno_addr); + write_dw_instr_usermap(usermap, usermap->hardware_seqno_addr >> 32); + write_dw_instr_usermap(usermap, usermap->seqno_value); + write_dw_instr_usermap(usermap, usermap->seqno_value >> 32); + } else { + write_dw_instr_usermap(usermap, MI_FLUSH_QW); + write_dw_instr_usermap(usermap, usermap->hardware_seqno_addr); + write_dw_instr_usermap(usermap, usermap->hardware_seqno_addr >> 32); + write_dw_instr_usermap(usermap, usermap->seqno_value); + write_dw_instr_usermap(usermap, usermap->seqno_value >> 32); + write_dw_instr_usermap(usermap, MI_NOOP); + } + + write_dw_instr_usermap(usermap, MI_USER_INTERRUPT); + write_dw_instr_usermap(usermap, MI_ARB_ON_OFF | MI_ARB_ENABLE); + write_dw_instr_usermap(usermap, MI_ARB_CHECK); + write_dw_instr_usermap(usermap, MI_NOOP); +} + +static void barrier_usermap(struct usermap *usermap) +{ + igt_assert(READ_ONCE(*usermap->barrier) == BARRIER_VALUE); +} + +static uint64_t read_hardware_seqno_usermap(struct usermap *usermap) +{ + return READ_ONCE(*usermap->hardware_seqno); +} + +static uint64_t read_writeback_seqno_usermap(struct usermap *usermap) +{ + return READ_ONCE(*usermap->writeback_seqno); +} + +static uint32_t read_tail_seqno_usermap(struct usermap *usermap) +{ + return READ_ONCE(*usermap->tail_ptr); +} + +static int +__xe_vm_convert_fence(int fd, struct drm_xe_vm_convert_fence *convert_fence) +{ + int err = 0; + + if (igt_ioctl(fd, DRM_IOCTL_XE_VM_CONVERT_FENCE, convert_fence)) { + err = -errno; + igt_assume(err != 0); + } + errno = 0; + return err; +} + +static void +xe_vm_convert_fence(int fd, struct drm_xe_vm_convert_fence *convert_fence) +{ + igt_assert_eq(__xe_vm_convert_fence(fd, convert_fence), 0); +} + +#define MAX_INFLIGHT_JOB 128 + +static void submit_usermap(struct usermap *usermap, bool use_syncobj) +{ + usermap->seqno_value++; + + /* TODO: Ring flow control */ + + emit_hardware_seqno_usermap(usermap); + barrier_usermap(usermap); + + igt_assert(!(usermap->tail % 8)); + WRITE_ONCE(*usermap->tail_ptr, usermap->tail); + ring_doorbell(usermap->db); + + if (use_syncobj) { + struct drm_xe_semaphore semaphore = { + .handle = usermap->seqno_handle, + .offset = HARDWARE_SEQNO_OFFSET, + .seqno = usermap->seqno_value, + }; + struct drm_xe_sync sync = { + .type = DRM_XE_SYNC_TYPE_TIMELINE_SYNCOBJ, + .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .handle = usermap->syncobj, + .timeline_value = usermap->seqno_value, + }; + struct drm_xe_vm_convert_fence convert_fence = { + .vm_id = usermap->vm, + .num_syncs = 1, + .syncs = to_user_pointer(&sync), + .semaphores = to_user_pointer(&semaphore), + }; + + xe_vm_convert_fence(usermap->fd, &convert_fence); + } +} + +static void wait_tail_usermap(struct usermap *usermap, int tries) +{ + while (tries-- && read_tail_seqno_usermap(usermap) != usermap->tail) + usleep(TRY_SLEEP_ONE_MS); + + igt_assert(read_tail_seqno_usermap(usermap) == usermap->tail); +} + +static void wait_hardware_seqno_usermap(struct usermap *usermap, int tries) +{ + while (tries-- && read_hardware_seqno_usermap(usermap) != + usermap->seqno_value) + usleep(TRY_SLEEP_ONE_MS); + + igt_assert(read_hardware_seqno_usermap(usermap) == + usermap->seqno_value); + + wait_tail_usermap(usermap, tries); +} + +static void wait_writeback_seqno_usermap(struct usermap *usermap, int tries) +{ + while (tries-- && read_writeback_seqno_usermap(usermap) != + usermap->seqno_value) + usleep(TRY_SLEEP_ONE_MS); + + igt_assert(read_writeback_seqno_usermap(usermap) == + usermap->seqno_value); +} + +static void writeback_syncobj_usermap(struct usermap *usermap) +{ + struct drm_xe_semaphore semaphore = { + .handle = usermap->seqno_handle, + .offset = WRITEBACK_SEQNO_OFFSET, + .seqno = usermap->seqno_value, + }; + struct drm_xe_sync sync = { + .type = DRM_XE_SYNC_TYPE_TIMELINE_SYNCOBJ, + .handle = usermap->syncobj, + .timeline_value = usermap->seqno_value, + }; + struct drm_xe_vm_convert_fence convert_fence = { + .vm_id = usermap->vm, + .num_syncs = 1, + .syncs = to_user_pointer(&sync), + .semaphores = to_user_pointer(&semaphore), + }; + + xe_vm_convert_fence(usermap->fd, &convert_fence); + wait_writeback_seqno_usermap(usermap, TRIES_PER_SEC * 5); +} + +static void wait_syncobj_usermap(struct usermap *usermap, bool all_points) +{ + uint64_t point = all_points ? 1 : usermap->seqno_value; + + for (; point <= usermap->seqno_value; ++point) + igt_assert(syncobj_timeline_wait(usermap->fd, + &usermap->syncobj, + &point, 1, INT64_MAX, 0, + NULL)); +} + +static void assert_unsignaled_syncobj_usermap(struct usermap *usermap) +{ + uint64_t point = usermap->seqno_value; + + igt_assert(syncobj_timeline_wait_err(usermap->fd, + &usermap->syncobj, + &point, 1, MS_TO_NS(1), 0) == -ETIME); +} + +static void assert_seqno_neq_usermap(struct usermap *usermap) +{ + igt_assert(read_hardware_seqno_usermap(usermap) != + usermap->seqno_value); +} + +static void invalidate_userptr_usermap(struct usermap *usermap) +{ + usermap->userptr = mmap(usermap->userptr, USERPTR_SIZE, PROT_READ | + PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS | + MAP_FIXED, -1, 0); + igt_assert(usermap->userptr != MAP_FAILED); +} + +/** + * SUBTEST: spin-twice + * Description: Submit twice, insert spin in first batch + * Test category: functionality test + * + * SUBTEST: spin-hang + * Description: Hang on spinning batch + * Test category: functionality test + * + * SUBTEST: invalidate-long-spin + * Description: Invalidate long spinning preemptable batch + * Test category: functionality test + */ + +/** + * SUBTEST: submit-%s-once + * Description: Run %arg[1] test only once + * Test category: functionality test + * + * SUBTEST: submit-%s-twice + * Description: Run %arg[1] test twice + * Test category: functionality test + * + * SUBTEST: submit-%s-many + * Description: Run %arg[1] test many times + * Test category: stress test + * + * SUBTEST: submit-%s-execqueue-many + * Description: Run %arg[1] test many times to many execqueues + * Test category: stress test + * + * SUBTEST: threads-%s-many + * Description: Run %arg[1] test many times with thread per harware engine + * Test category: stress test + * + * SUBTEST: threads-%s-execqueue-many + * Description: Run %arg[1] test many times to many execqueues with thread per harware engine + * Test category: stress test + * + * SUBTEST: threads-shared-vm-%s-many + * Description: Run %arg[1] test many times with thread per harware engine and a shared vm + * Test category: stress test + * + * SUBTEST: threads-shared-vm-%s-execqueue-many + * Description: Run %arg[1] test many times to many execqueues with thread perharware engine and a shared vm + * Test category: stress test + * + * arg[1]: + * + * @basic: basic submit + * @syncobj: submit with syncobj + * @no-wait: submit no waiting until end + * @spin-userptr-invalidate: timed spinning batch on userptr which is invalidated + */ + +/** + * SUBTEST: threads-evict-execqueue-many + * Description: threads with BO allocations that evict + * Test category: stress test + * + * SUBTEST: threads-evict-spin-execqueue-many + * Description: threads with BO allocations that evict and a spinner on the BO + * Test category: stress test + */ + +#define SIMPLE_SUBMIT_FLAG_SPIN (0x1 << 0) +#define SIMPLE_SUBMIT_FLAG_NO_WAIT (0x1 << 1) +#define SIMPLE_SUBMIT_FLAG_INVALIDATE (0x1 << 2) +#define SIMPLE_SUBMIT_FLAG_SHARED_VM (0x1 << 3) +#define SIMPLE_SUBMIT_FLAG_SPIN_USERPTR_BO (0x1 << 4) +#define SIMPLE_SUBMIT_FLAG_LONG_SPIN_USERPTR_BO (0x1 << 5) +#define SIMPLE_SUBMIT_FLAG_EVICT (0x1 << 6) +#define SIMPLE_SUBMIT_FLAG_SYNCOBJ (0x1 << 7) +#define SIMPLE_SUBMIT_FLAG_SPIN_HANG (0x1 << 8) + +static void simple_submit(int fd, struct drm_xe_engine_class_instance *hwe, + uint32_t vm, uint64_t vram_size, int n_exec_queue, + int n_exec, unsigned int flags, + pthread_barrier_t *barrier) +{ + struct usermap *__usermaps; + uint64_t bo_size = !vram_size ? 0 : + ALIGN(vram_size / n_exec_queue, SZ_2M); + void *ptr; + int i; + bool has_vm = !!vm; + bool use_syncobj = flags & SIMPLE_SUBMIT_FLAG_SYNCOBJ; + + __usermaps = malloc(sizeof(*__usermaps) * n_exec_queue); + igt_assert(__usermaps); + memset(__usermaps, 0, sizeof(*__usermaps) * n_exec_queue); + + if (!has_vm) + vm = xe_vm_create(fd, 0, 0); + + for (i = 0; i < n_exec_queue; ++i) + open_usermap(fd, __usermaps + i, hwe, vm, bo_size); + + if (barrier) + pthread_barrier_wait(barrier); + + for (i = 0; i < n_exec; ++i) { + struct usermap *usermap = __usermaps + (i % n_exec_queue); + bool ls = flags & SIMPLE_SUBMIT_FLAG_LONG_SPIN_USERPTR_BO; + bool evict = flags & SIMPLE_SUBMIT_FLAG_EVICT; + uint64_t offset = evict ? i * SZ_2K : odd(i) * SZ_2K; + + if (flags & SIMPLE_SUBMIT_FLAG_SPIN) + emit_spin_usermap(usermap); + + if (flags & SIMPLE_SUBMIT_FLAG_SPIN_USERPTR_BO) + emit_spin_userptr_bo_usermap(usermap, offset, + ls, evict); + + submit_usermap(usermap, use_syncobj); + + if (flags & SIMPLE_SUBMIT_FLAG_SPIN) { + assert_seqno_neq_usermap(usermap); + if (use_syncobj) + assert_unsignaled_syncobj_usermap(usermap); + + if (flags & SIMPLE_SUBMIT_FLAG_SPIN_HANG) { + wait_syncobj_usermap(usermap, false); + assert_seqno_neq_usermap(usermap); + break; + } + + release_spin_usermap(usermap); + } + + if (!(flags & SIMPLE_SUBMIT_FLAG_NO_WAIT)) { + wait_hardware_seqno_usermap(usermap, TRIES_PER_SEC); + if (use_syncobj) + wait_syncobj_usermap(usermap, false); + } + + if (flags & SIMPLE_SUBMIT_FLAG_INVALIDATE && odd(i)) + invalidate_userptr_usermap(usermap); + else if (flags & SIMPLE_SUBMIT_FLAG_SPIN_USERPTR_BO && + flags & SIMPLE_SUBMIT_FLAG_INVALIDATE && !odd(i)) + wait_hardware_seqno_usermap(usermap, TRIES_PER_SEC); + } + + for (i = 0; i < n_exec_queue; ++i) { + if (use_syncobj && !(flags & SIMPLE_SUBMIT_FLAG_SPIN_HANG)) + writeback_syncobj_usermap(__usermaps + i); + + if (flags & SIMPLE_SUBMIT_FLAG_NO_WAIT) { + wait_hardware_seqno_usermap(__usermaps + i, + TRIES_PER_SEC); + if (use_syncobj) + wait_syncobj_usermap(__usermaps + i, true); + } + } + + for (i = 0; i < n_exec_queue; ++i) + close_usermap(__usermaps + i, + flags & SIMPLE_SUBMIT_FLAG_SPIN_HANG); + + if (!has_vm) + xe_vm_destroy(fd, vm); + + free(__usermaps); + free(ptr); +} + +struct thread_data { + pthread_t thread; + pthread_mutex_t *mutex; + pthread_cond_t *cond; + pthread_barrier_t *barrier; + uint32_t vm; + uint64_t vram_size; + int fd; + struct drm_xe_engine_class_instance *hwe; + int n_exec_queues; + int n_execs; + unsigned int flags; + bool *go; +}; + +static void *thread(void *data) +{ + struct thread_data *t = data; + + pthread_mutex_lock(t->mutex); + while (!*t->go) + pthread_cond_wait(t->cond, t->mutex); + pthread_mutex_unlock(t->mutex); + + simple_submit(t->fd, t->hwe, t->vm, t->vram_size, t->n_exec_queues, + t->n_execs, t->flags, t->barrier); + + return NULL; +} + +#define oversubscribe(vram_size, n_engines) \ + ALIGN(((8 * vram_size) / 7) / n_engines, SZ_2M) + +static void +threads(int fd, int n_exec_queues, int n_execs, unsigned int flags) +{ + struct drm_xe_engine_class_instance *hwe; + struct thread_data *threads_data; + int n_engines = 0, i = 0; + pthread_mutex_t mutex; + pthread_cond_t cond; + pthread_barrier_t barrier; + uint32_t vm = 0; + uint64_t vram_size = 0; + bool go = false; + + if (flags & SIMPLE_SUBMIT_FLAG_SHARED_VM) + vm = xe_vm_create(fd, 0, 0); + + xe_for_each_engine(fd, hwe) + ++n_engines; + + if (flags & SIMPLE_SUBMIT_FLAG_EVICT) + vram_size = oversubscribe(xe_visible_vram_size(fd, 0), + n_engines); + + threads_data = calloc(n_engines, sizeof(*threads_data)); + igt_assert(threads_data); + + pthread_mutex_init(&mutex, 0); + pthread_cond_init(&cond, 0); + pthread_barrier_init(&barrier, 0, n_engines); + + xe_for_each_engine(fd, hwe) { + threads_data[i].mutex = &mutex; + threads_data[i].cond = &cond; + threads_data[i].barrier = &barrier; + threads_data[i].vm = vm; + threads_data[i].vram_size = vram_size; + threads_data[i].fd = fd; + threads_data[i].hwe= hwe; + threads_data[i].n_exec_queues = n_exec_queues; + threads_data[i].n_execs = n_execs; + threads_data[i].flags = flags; + threads_data[i].go = &go; + pthread_create(&threads_data[i].thread, 0, thread, + &threads_data[i]); + ++i; + } + + pthread_mutex_lock(&mutex); + go = true; + pthread_cond_broadcast(&cond); + pthread_mutex_unlock(&mutex); + + for (i = 0; i < n_engines; ++i) + pthread_join(threads_data[i].thread, NULL); + + if (flags & SIMPLE_SUBMIT_FLAG_SHARED_VM) + xe_vm_destroy(fd, vm); + free(threads_data); +} + +igt_main +{ + struct drm_xe_engine_class_instance *hwe; + const struct section { + const char *name; + unsigned int flags; + } sections[] = { + { "basic", 0 }, + { "syncobj", SIMPLE_SUBMIT_FLAG_SYNCOBJ }, + { "no-wait", SIMPLE_SUBMIT_FLAG_NO_WAIT }, + { "spin-userptr-invalidate", SIMPLE_SUBMIT_FLAG_INVALIDATE | + SIMPLE_SUBMIT_FLAG_SPIN_USERPTR_BO | + SIMPLE_SUBMIT_FLAG_NO_WAIT | + SIMPLE_SUBMIT_FLAG_SYNCOBJ }, + { NULL }, + }; + int fd; + + igt_fixture + fd = drm_open_driver(DRIVER_XE); + + igt_subtest("spin-twice") + xe_for_each_engine(fd, hwe) + simple_submit(fd, hwe, 0, 0, 2, 2, + SIMPLE_SUBMIT_FLAG_SPIN, + NULL); + + igt_subtest("spin-hang") + xe_for_each_engine(fd, hwe) + simple_submit(fd, hwe, 0, 0, 1, 1, + SIMPLE_SUBMIT_FLAG_SPIN | + SIMPLE_SUBMIT_FLAG_SPIN_HANG | + SIMPLE_SUBMIT_FLAG_SYNCOBJ, + NULL); + + igt_subtest("invalidate-long-spin") + xe_for_each_engine(fd, hwe) + simple_submit(fd, hwe, 0, 0, 1, 2, + SIMPLE_SUBMIT_FLAG_NO_WAIT | + SIMPLE_SUBMIT_FLAG_SYNCOBJ | + SIMPLE_SUBMIT_FLAG_INVALIDATE | + SIMPLE_SUBMIT_FLAG_SPIN_USERPTR_BO | + SIMPLE_SUBMIT_FLAG_LONG_SPIN_USERPTR_BO, + NULL); + + for (const struct section *s = sections; s->name; s++) { + igt_subtest_f("submit-%s-once", s->name) + xe_for_each_engine(fd, hwe) + simple_submit(fd, hwe, 0, 0, 1, 1, s->flags, + NULL); + + igt_subtest_f("submit-%s-twice", s->name) + xe_for_each_engine(fd, hwe) + simple_submit(fd, hwe, 0, 0, 1, 2, s->flags, + NULL); + + igt_subtest_f("submit-%s-many", s->name) + xe_for_each_engine(fd, hwe) + simple_submit(fd, hwe, 0, 0, 1, 512, s->flags, + NULL); + + igt_subtest_f("submit-%s-execqueue-many", s->name) + xe_for_each_engine(fd, hwe) + simple_submit(fd, hwe, 0, 0, 32, 512, s->flags, + NULL); + + igt_subtest_f("threads-%s-many", s->name) + threads(fd, 2, 512, s->flags); + + igt_subtest_f("threads-%s-execqueue-many", s->name) + threads(fd, 32, 512, s->flags); + + igt_subtest_f("threads-shared-vm-%s-many", s->name) + threads(fd, 2, 512, s->flags | + SIMPLE_SUBMIT_FLAG_SHARED_VM); + + igt_subtest_f("threads-shared-vm-%s-execqueue-many", s->name) + threads(fd, 32, 512, s->flags | + SIMPLE_SUBMIT_FLAG_SHARED_VM); + } + + igt_subtest("threads-evict-execqueue-many") + threads(fd, 16, 64, SIMPLE_SUBMIT_FLAG_SYNCOBJ | + SIMPLE_SUBMIT_FLAG_NO_WAIT | + SIMPLE_SUBMIT_FLAG_EVICT); + + igt_subtest("threads-evict-spin-execqueue-many") + threads(fd, 16, 64, SIMPLE_SUBMIT_FLAG_SYNCOBJ | + SIMPLE_SUBMIT_FLAG_NO_WAIT | + SIMPLE_SUBMIT_FLAG_SPIN_USERPTR_BO | + SIMPLE_SUBMIT_FLAG_EVICT); + + igt_fixture + drm_close_driver(fd); +} diff --git a/tests/meson.build b/tests/meson.build index 2724c7a9a6..376323338f 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -293,6 +293,7 @@ intel_xe_progs = [ 'xe_exec_sip', 'xe_exec_store', 'xe_exec_threads', + 'xe_exec_usermap', 'xe_exercise_blt', 'xe_fault_injection', 'xe_gpgpu_fill', -- 2.34.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✗ GitLab.Pipeline: warning for UMD direct submission tests 2024-11-18 20:59 [PATCH 0/2] UMD direct submission tests Matthew Brost 2024-11-18 20:59 ` [PATCH 1/2] drm-uapi/xe: Update uAPI for UMD direct submission Matthew Brost 2024-11-18 20:59 ` [PATCH 2/2] tests/xe: Add usermap test Matthew Brost @ 2024-11-19 3:38 ` Patchwork 2024-11-19 3:53 ` ✓ CI.xeBAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-19 3:38 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev == Series Details == Series: UMD direct submission tests URL : https://patchwork.freedesktop.org/series/141518/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1312734 for the overview. build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/66780762): /usr/bin/arm-linux-gnueabihf-gcc -Ilib/76b5a35@@igt-xe_xe_ioctl_c@sta -Ilib -I../lib -I../include -I../include/drm-uapi -I../include/drm-uapi-experimental -I../include/linux-uapi -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/arm-linux-gnueabihf -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-conversion -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -D_LARGEFILE64_SOURCE=1 -fPIC -pthread '-DIGT_DATADIR="/usr/local/share/igt-gpu-tools"' '-DIGT_SRCDIR="/builds/gfx-ci/igt-ci-tags/tests"' '-DIGT_LOG_DOMAIN="xe/xe_ioctl"' -MD -MQ 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o' -MF 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o.d' -o 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o' -c ../lib/xe/xe_ioctl.c ../lib/xe/xe_ioctl.c:456:7: error: conflicting types for ‘xe_bo_map_fixed’ void *xe_bo_map_fixed(int fd, uint32_t bo, size_t size, uint64_t addr) ^~~~~~~~~~~~~~~ In file included from ../lib/xe/xe_ioctl.c:46: ../lib/xe/xe_ioctl.h:91:7: note: previous declaration of ‘xe_bo_map_fixed’ was here void *xe_bo_map_fixed(int fd, uint32_t bo, size_t size, long unsigned int addr); ^~~~~~~~~~~~~~~ ../lib/xe/xe_ioctl.c: In function ‘xe_bo_map_fixed’: ../lib/xe/xe_ioctl.c:462:13: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast] map = mmap((void *)addr, size, PROT_WRITE, MAP_SHARED | MAP_FIXED, fd, mmo); ^ cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1731987196:step_script section_start:1731987196:cleanup_file_variables Cleaning up project directory and file based variables section_end:1731987197:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/66780764): /usr/bin/mips-linux-gnu-gcc -Ilib/76b5a35@@igt-xe_xe_ioctl_c@sta -Ilib -I../lib -I../include -I../include/drm-uapi -I../include/drm-uapi-experimental -I../include/linux-uapi -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/mips-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/mips-linux-gnu -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-conversion -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -D_LARGEFILE64_SOURCE=1 -fPIC -pthread '-DIGT_DATADIR="/usr/local/share/igt-gpu-tools"' '-DIGT_SRCDIR="/builds/gfx-ci/igt-ci-tags/tests"' '-DIGT_LOG_DOMAIN="xe/xe_ioctl"' -MD -MQ 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o' -MF 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o.d' -o 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o' -c ../lib/xe/xe_ioctl.c ../lib/xe/xe_ioctl.c:456:7: error: conflicting types for ‘xe_bo_map_fixed’ void *xe_bo_map_fixed(int fd, uint32_t bo, size_t size, uint64_t addr) ^~~~~~~~~~~~~~~ In file included from ../lib/xe/xe_ioctl.c:46: ../lib/xe/xe_ioctl.h:91:7: note: previous declaration of ‘xe_bo_map_fixed’ was here void *xe_bo_map_fixed(int fd, uint32_t bo, size_t size, long unsigned int addr); ^~~~~~~~~~~~~~~ ../lib/xe/xe_ioctl.c: In function ‘xe_bo_map_fixed’: ../lib/xe/xe_ioctl.c:462:13: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast] map = mmap((void *)addr, size, PROT_WRITE, MAP_SHARED | MAP_FIXED, fd, mmo); ^ cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1731987189:step_script section_start:1731987189:cleanup_file_variables Cleaning up project directory and file based variables section_end:1731987190:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1312734 ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for UMD direct submission tests 2024-11-18 20:59 [PATCH 0/2] UMD direct submission tests Matthew Brost ` (2 preceding siblings ...) 2024-11-19 3:38 ` ✗ GitLab.Pipeline: warning for UMD direct submission tests Patchwork @ 2024-11-19 3:53 ` Patchwork 2024-11-19 4:09 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-11-19 17:16 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-19 3:53 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3065 bytes --] == Series Details == Series: UMD direct submission tests URL : https://patchwork.freedesktop.org/series/141518/ State : success == Summary == CI Bug Log - changes from XEIGT_8115_BAT -> XEIGTPW_12131_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12131_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/bat-adlp-vf/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#2229]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [SKIP][3] ([Intel XE#1192]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html * igt@xe_pat@pat-index-xelp@render: - bat-adlp-vf: [DMESG-WARN][5] ([Intel XE#358]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/bat-adlp-vf/igt@xe_pat@pat-index-xelp@render.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][7] ([Intel XE#1192]) -> [SKIP][8] ([Intel XE#2229] / [Intel XE#455]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8115 -> IGTPW_12131 * Linux: xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4 -> xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6 IGTPW_12131: 12131 IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4 xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/index.html [-- Attachment #2: Type: text/html, Size: 4035 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.BAT: failure for UMD direct submission tests 2024-11-18 20:59 [PATCH 0/2] UMD direct submission tests Matthew Brost ` (3 preceding siblings ...) 2024-11-19 3:53 ` ✓ CI.xeBAT: success " Patchwork @ 2024-11-19 4:09 ` Patchwork 2024-11-19 17:16 ` ✗ CI.xeFULL: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-19 4:09 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4460 bytes --] == Series Details == Series: UMD direct submission tests URL : https://patchwork.freedesktop.org/series/141518/ State : failure == Summary == CI Bug Log - changes from IGT_8115 -> IGTPW_12131 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12131 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12131, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12131: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@module-reload: - bat-rpls-4: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-rpls-4/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/bat-rpls-4/igt@i915_pm_rpm@module-reload.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@workarounds: - {bat-mtlp-9}: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/bat-mtlp-9/igt@i915_selftest@live@workarounds.html Known issues ------------ Here are the changes found in IGTPW_12131 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-twl-1: [PASS][5] -> [DMESG-WARN][6] ([i915#1982]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-twl-1/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/bat-twl-1/igt@i915_module_load@load.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][7] -> [SKIP][8] ([i915#9197]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@runner@aborted: - bat-dg2-13: NOTRUN -> [FAIL][9] ([i915#12658]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/bat-dg2-13/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-6: [ABORT][10] ([i915#12829]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-6/igt@i915_selftest@live.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/bat-mtlp-6/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [ABORT][12] -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8115/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/bat-mtlp-6/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12658 [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8115 -> IGTPW_12131 * Linux: CI_DRM_15716 -> CI_DRM_15717 CI-20190529: 20190529 CI_DRM_15716: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15717: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12131: 12131 IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12131/index.html [-- Attachment #2: Type: text/html, Size: 5274 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for UMD direct submission tests 2024-11-18 20:59 [PATCH 0/2] UMD direct submission tests Matthew Brost ` (4 preceding siblings ...) 2024-11-19 4:09 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-11-19 17:16 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-11-19 17:16 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 145373 bytes --] == Series Details == Series: UMD direct submission tests URL : https://patchwork.freedesktop.org/series/141518/ State : failure == Summary == CI Bug Log - changes from XEIGT_8115_full -> XEIGTPW_12131_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12131_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12131_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12131_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [PASS][1] -> [DMESG-FAIL][2] +6 other tests dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_cursor_crc@cursor-suspend: - shard-bmg: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_cursor_crc@cursor-suspend.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][8] +3 other tests dmesg-warn [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-41: - shard-lnl: [PASS][9] -> [DMESG-WARN][10] +1 other test dmesg-warn [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-5/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html * igt@xe_exec_reset@parallel-close-fd: - shard-bmg: [PASS][11] -> [ABORT][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_exec_reset@parallel-close-fd.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@xe_exec_reset@parallel-close-fd.html * igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0: - shard-bmg: [PASS][13] -> [DMESG-WARN][14] +60 other tests dmesg-warn [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html * igt@xe_exec_threads@threads-bal-shared-vm-basic: - shard-lnl: NOTRUN -> [DMESG-WARN][15] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@xe_exec_threads@threads-bal-shared-vm-basic.html * {igt@xe_exec_usermap@submit-basic-once} (NEW): - shard-dg2-set2: NOTRUN -> [FAIL][16] +11 other tests fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@xe_exec_usermap@submit-basic-once.html * {igt@xe_exec_usermap@submit-basic-twice} (NEW): - shard-lnl: NOTRUN -> [FAIL][17] +30 other tests fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@xe_exec_usermap@submit-basic-twice.html * {igt@xe_exec_usermap@submit-spin-userptr-invalidate-execqueue-many} (NEW): - shard-bmg: NOTRUN -> [DMESG-FAIL][18] +6 other tests dmesg-fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@xe_exec_usermap@submit-spin-userptr-invalidate-execqueue-many.html * {igt@xe_exec_usermap@submit-syncobj-execqueue-many} (NEW): - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][19] [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@xe_exec_usermap@submit-syncobj-execqueue-many.html * {igt@xe_exec_usermap@threads-shared-vm-spin-userptr-invalidate-execqueue-many} (NEW): - shard-bmg: NOTRUN -> [FAIL][20] +32 other tests fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@xe_exec_usermap@threads-shared-vm-spin-userptr-invalidate-execqueue-many.html * igt@xe_module_load@unload: - shard-lnl: [PASS][21] -> [ABORT][22] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_module_load@unload.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@xe_module_load@unload.html * igt@xe_vm@bind-once: - shard-bmg: NOTRUN -> [DMESG-WARN][23] +17 other tests dmesg-warn [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@xe_vm@bind-once.html #### Warnings #### * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-dg2-set2: [SKIP][24] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][25] +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [FAIL][26] ([Intel XE#1695]) -> [DMESG-FAIL][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [FAIL][28] ([Intel XE#2333]) -> [DMESG-FAIL][29] +3 other tests dmesg-fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_lease@lease-revoke: - shard-dg2-set2: [SKIP][30] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][31] +1 other test dmesg-warn [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_lease@lease-revoke.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_lease@lease-revoke.html * igt@xe_module_load@reload-no-display: - shard-bmg: [DMESG-WARN][32] ([Intel XE#3467]) -> [DMESG-WARN][33] [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@xe_module_load@reload-no-display.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@xe_module_load@reload-no-display.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [SKIP][34] ([Intel XE#1130]) -> [DMESG-WARN][35] +2 other tests dmesg-warn [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-unbind-all.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-unbind-all.html New tests --------- New tests have been introduced between XEIGT_8115_full and XEIGTPW_12131_full: ### New IGT tests (37) ### * igt@xe_exec_usermap@invalidate-long-spin: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@spin-hang: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_exec_usermap@spin-twice: - Statuses : 1 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-basic-execqueue-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_usermap@submit-basic-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-basic-once: - Statuses : 3 fail(s) - Exec time: [0.01, 0.03] s * igt@xe_exec_usermap@submit-basic-twice: - Statuses : 3 fail(s) - Exec time: [0.01, 0.02] s * igt@xe_exec_usermap@submit-no-wait-execqueue-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-no-wait-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-no-wait-once: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-no-wait-twice: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-spin-userptr-invalidate-execqueue-many: - Statuses : 1 dmesg-fail(s) 1 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-spin-userptr-invalidate-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-spin-userptr-invalidate-once: - Statuses : 3 fail(s) - Exec time: [0.01] s * igt@xe_exec_usermap@submit-spin-userptr-invalidate-twice: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_usermap@submit-syncobj-execqueue-many: - Statuses : 1 dmesg-fail(s) 2 fail(s) - Exec time: [0.01] s * igt@xe_exec_usermap@submit-syncobj-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_usermap@submit-syncobj-once: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s * igt@xe_exec_usermap@submit-syncobj-twice: - Statuses : 1 dmesg-fail(s) - Exec time: [0.01] s * igt@xe_exec_usermap@threads-basic-execqueue-many: - Statuses : 3 fail(s) - Exec time: [0.02, 0.04] s * igt@xe_exec_usermap@threads-basic-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_usermap@threads-evict-execqueue-many: - Statuses : 3 fail(s) - Exec time: [0.02, 0.04] s * igt@xe_exec_usermap@threads-evict-spin-execqueue-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.05] s * igt@xe_exec_usermap@threads-no-wait-execqueue-many: - Statuses : 3 fail(s) - Exec time: [0.01, 0.02] s * igt@xe_exec_usermap@threads-no-wait-many: - Statuses : 3 fail(s) - Exec time: [0.01, 0.02] s * igt@xe_exec_usermap@threads-shared-vm-basic-execqueue-many: - Statuses : 3 fail(s) - Exec time: [0.01, 0.03] s * igt@xe_exec_usermap@threads-shared-vm-basic-many: - Statuses : 1 fail(s) 1 skip(s) - Exec time: [0.0, 0.03] s * igt@xe_exec_usermap@threads-shared-vm-no-wait-execqueue-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_usermap@threads-shared-vm-no-wait-many: - Statuses : 3 fail(s) - Exec time: [0.02, 0.04] s * igt@xe_exec_usermap@threads-shared-vm-spin-userptr-invalidate-execqueue-many: - Statuses : 3 fail(s) - Exec time: [0.01, 0.02] s * igt@xe_exec_usermap@threads-shared-vm-spin-userptr-invalidate-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_usermap@threads-shared-vm-syncobj-execqueue-many: - Statuses : 1 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_usermap@threads-shared-vm-syncobj-many: - Statuses : 3 fail(s) - Exec time: [0.01, 0.02] s * igt@xe_exec_usermap@threads-spin-userptr-invalidate-execqueue-many: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_exec_usermap@threads-spin-userptr-invalidate-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.02] s * igt@xe_exec_usermap@threads-syncobj-execqueue-many: - Statuses : 3 fail(s) - Exec time: [0.02, 0.04] s * igt@xe_exec_usermap@threads-syncobj-many: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.04] s Known issues ------------ Here are the changes found in XEIGTPW_12131_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getstats: - shard-dg2-set2: [PASS][36] -> [SKIP][37] ([Intel XE#2423]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@core_getstats.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@core_getstats.html * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [PASS][38] -> [SKIP][39] ([Intel XE#1885]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@core_hotunplug@hotunplug-rescan.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][40] -> [SKIP][41] ([Intel XE#3453]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@unaligned-write: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#2134]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@fbdev@unaligned-write.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#873]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#664]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-1/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_interruptible@legacy-setmode: - shard-bmg: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#1727]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_atomic_interruptible@legacy-setmode.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@kms_atomic_interruptible@legacy-setmode.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#2423] / [i915#2575]) +63 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2370]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2327]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [PASS][50] -> [DMESG-WARN][51] ([Intel XE#3468]) +3 other tests dmesg-warn [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#316]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1467]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-4/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1124]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#607]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1124]) +11 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1124]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2314] / [Intel XE#2894]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#367]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2191]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#367]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#787]) +125 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2887]) +7 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#3432]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][68] ([Intel XE#3468]) +1 other test dmesg-warn [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][69] ([Intel XE#1195]) +1 other test incomplete [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][70] -> [INCOMPLETE][71] ([Intel XE#1195]) +2 other tests incomplete [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#3432]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2669]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2887]) +16 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#616]) +8 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#1152]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-0-50: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#306]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2325]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#373]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@dp-hpd: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2252]) +7 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#373]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][82] ([Intel XE#1178]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2390]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#307]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#3278]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#1178]) +1 other test fail [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2320]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1424]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2321]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#455]) +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#309]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2286]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][93] ([Intel XE#877]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#323]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2244]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2244]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#701]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#701]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#2373]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_feature_discovery@display-2x.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1135]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1421]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [PASS][103] -> [FAIL][104] ([Intel XE#2882]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [PASS][105] -> [FAIL][106] ([Intel XE#3321] / [Intel XE#3486]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: [PASS][107] -> [FAIL][108] ([Intel XE#3487]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip: - shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#2316]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@2x-plain-flip.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2316]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@busy-flip: - shard-dg2-set2: [PASS][112] -> [SKIP][113] ([Intel XE#2423] / [i915#2575]) +142 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_flip@busy-flip.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_flip@busy-flip.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: [PASS][114] -> [FAIL][115] ([Intel XE#301]) +6 other tests fail [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [PASS][116] -> [FAIL][117] ([Intel XE#3486]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4: - shard-dg2-set2: [PASS][118] -> [FAIL][119] ([Intel XE#301] / [Intel XE#3486]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html * igt@kms_flip@plain-flip-fb-recreate: - shard-bmg: [PASS][120] -> [INCOMPLETE][121] ([Intel XE#2635]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][122] -> [SKIP][123] ([Intel XE#2136]) +49 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][124] ([Intel XE#1195] / [Intel XE#1727]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2136] / [Intel XE#2351]) +24 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1401]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2293]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#352]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#2351]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@basic.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2136]) +61 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#651]) +9 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#2136] / [Intel XE#2351]) +18 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [DMESG-FAIL][137] ([Intel XE#3468]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#656]) +21 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: NOTRUN -> [FAIL][139] ([Intel XE#2333]) +10 other tests fail [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#651]) +9 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2312]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2311]) +33 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2313]) +24 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#653]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_getfb@getfb2-handle-not-fb: - shard-lnl: [PASS][145] -> [DMESG-WARN][146] ([Intel XE#3466]) +55 other tests dmesg-warn [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-6/igt@kms_getfb@getfb2-handle-not-fb.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@kms_getfb@getfb2-handle-not-fb.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2-set2: NOTRUN -> [FAIL][147] ([Intel XE#3312] / [Intel XE#3404]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][148] ([Intel XE#3312]) +1 other test fail [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][149] ([Intel XE#3312]) +1 other test fail [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6.html * igt@kms_hdr@static-swap: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1503]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-8/igt@kms_hdr@static-swap.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#2927]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2501]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2486]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: [PASS][154] -> [INCOMPLETE][155] ([Intel XE#1195] / [Intel XE#3468]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3: - shard-bmg: [PASS][156] -> [INCOMPLETE][157] ([Intel XE#3468]) +1 other test incomplete [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-3.html * igt@kms_plane@pixel-format@pipe-a-plane-0: - shard-lnl: [PASS][158] -> [INCOMPLETE][159] ([Intel XE#3466]) +1 other test incomplete [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_plane@pixel-format@pipe-a-plane-0.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_plane@pixel-format@pipe-a-plane-0.html * igt@kms_plane@plane-position-hole-dpms: - shard-bmg: [PASS][160] -> [DMESG-WARN][161] ([Intel XE#877]) +3 other tests dmesg-warn [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_plane@plane-position-hole-dpms.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#599]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@tiling-y: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#2493]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2493]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#2763]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2763]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-lnl: NOTRUN -> [DMESG-WARN][168] ([Intel XE#2566] / [Intel XE#3466]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#2763]) +11 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#870]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_rpm@i2c: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2446]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@legacy-planes: - shard-dg2-set2: [PASS][172] -> [SKIP][173] ([Intel XE#2446]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_pm_rpm@legacy-planes.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@legacy-planes-dpms: - shard-lnl: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#2932]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-5/igt@kms_pm_rpm@legacy-planes-dpms.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@kms_pm_rpm@legacy-planes-dpms.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#1489]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#2893]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#1489]) +9 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#1406]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-cursor-plane-move@edp-1: - shard-lnl: [PASS][180] -> [FAIL][181] ([Intel XE#2808]) +1 other test fail [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-6/igt@kms_psr@fbc-psr-cursor-plane-move@edp-1.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-1/igt@kms_psr@fbc-psr-cursor-plane-move@edp-1.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@pr-primary-page-flip: - shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_psr@pr-primary-page-flip.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#2939]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-180: - shard-bmg: [PASS][185] -> [INCOMPLETE][186] ([Intel XE#2870]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-180.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_rotation_crc@primary-rotation-180.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#3414]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#2330]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#1127]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#2426]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-suspend@pipe-c-edp-1: - shard-lnl: NOTRUN -> [DMESG-WARN][191] ([Intel XE#3466]) +6 other tests dmesg-warn [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_vblank@ts-continuation-suspend@pipe-c-edp-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#1499]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-invalid-parameters: - shard-lnl: NOTRUN -> [SKIP][193] ([Intel XE#756]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-bmg: NOTRUN -> [SKIP][194] ([Intel XE#1091] / [Intel XE#2849]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#1091] / [Intel XE#2849]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#2504]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#2905]) +6 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-2/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug@basic-vm-bind-discovery: - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2905]) +12 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-discovery.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram: - shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#2905]) +5 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-sram.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][200] ([Intel XE#1600]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-threads-large: - shard-bmg: [PASS][201] -> [TIMEOUT][202] ([Intel XE#1473] / [Intel XE#2472]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@xe_evict@evict-threads-large.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@xe_evict@evict-threads-large.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#688]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#2322]) +10 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#1392]) +5 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#288]) +8 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_fault_mode@twice-userptr-imm: - shard-lnl: [PASS][207] -> [DMESG-FAIL][208] ([Intel XE#3466]) +3 other tests dmesg-fail [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-8/igt@xe_exec_fault_mode@twice-userptr-imm.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@xe_exec_fault_mode@twice-userptr-imm.html * igt@xe_exec_sip_eudebug@wait-writesip-nodebug: - shard-bmg: [PASS][209] -> [DMESG-WARN][210] ([Intel XE#3514]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html * {igt@xe_exec_usermap@submit-syncobj-twice} (NEW): - shard-lnl: NOTRUN -> [DMESG-FAIL][211] ([Intel XE#3466]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@xe_exec_usermap@submit-syncobj-twice.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-bmg: NOTRUN -> [DMESG-WARN][212] ([Intel XE#3467]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-dg2-set2: [PASS][213] -> [DMESG-WARN][214] ([Intel XE#3467]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init: - shard-bmg: [PASS][215] -> [DMESG-WARN][216] ([Intel XE#3467]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: NOTRUN -> [DMESG-WARN][217] ([Intel XE#3343]) +1 other test dmesg-warn [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#1130]) +128 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-dg2-set2: [PASS][219] -> [SKIP][220] ([Intel XE#2229]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][221] -> [SKIP][222] ([Intel XE#1192]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-1/igt@xe_live_ktest@xe_dma_buf.html - shard-dg2-set2: [PASS][223] -> [SKIP][224] ([Intel XE#1192]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@xe_live_ktest@xe_dma_buf.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_migrate: - shard-lnl: [PASS][225] -> [SKIP][226] ([Intel XE#1192]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_live_ktest@xe_migrate.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html * igt@xe_noexec_ping_pong: - shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#379]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@xe_noexec_ping_pong.html * igt@xe_oa@mmio-triggered-reports: - shard-bmg: [PASS][228] -> [FAIL][229] ([Intel XE#2249]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_oa@mmio-triggered-reports.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html - shard-lnl: NOTRUN -> [FAIL][230] ([Intel XE#2249]) +1 other test fail [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@mmio-triggered-reports@rcs-0: - shard-bmg: NOTRUN -> [FAIL][231] ([Intel XE#2249]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@xe_oa@mmio-triggered-reports@rcs-0.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#2541]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][233] ([Intel XE#2284]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][234] -> [SKIP][235] ([Intel XE#1130]) +260 other tests skip [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_pm@s2idle-exec-after.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_pm@s2idle-exec-after.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-lnl: NOTRUN -> [DMESG-WARN][236] ([Intel XE#1616] / [Intel XE#3466]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: NOTRUN -> [DMESG-WARN][237] ([Intel XE#569]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [PASS][238] -> [DMESG-WARN][239] ([Intel XE#569]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_pm@s3-multiple-execs.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [PASS][240] -> [ABORT][241] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@xe_pm@s4-basic-exec.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-2/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][242] ([Intel XE#2284] / [Intel XE#366]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pm@s4-multiple-execs: - shard-bmg: NOTRUN -> [DMESG-WARN][243] ([Intel XE#3468]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-1/igt@xe_pm@s4-multiple-execs.html - shard-dg2-set2: [PASS][244] -> [DMESG-WARN][245] ([Intel XE#3468]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s4-multiple-execs.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@xe_pm@s4-multiple-execs.html * igt@xe_query@multigpu-query-invalid-size: - shard-bmg: NOTRUN -> [SKIP][246] ([Intel XE#944]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][247] ([Intel XE#944]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@xe_query@multigpu-query-topology-l3-bank-mask.html - shard-dg2-set2: NOTRUN -> [SKIP][248] ([Intel XE#944]) [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@xe_query@multigpu-query-topology-l3-bank-mask.html #### Possible fixes #### * igt@core_hotunplug@hotreplug-lateclose: - shard-bmg: [INCOMPLETE][249] -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@core_hotunplug@hotreplug-lateclose.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-1/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_hotunplug@unbind-rebind: - shard-dg2-set2: [SKIP][251] ([Intel XE#1885]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@core_hotunplug@unbind-rebind.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@core_hotunplug@unbind-rebind.html * igt@fbdev@write: - shard-dg2-set2: [SKIP][253] ([Intel XE#2134]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@fbdev@write.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@fbdev@write.html * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2: - shard-bmg: [DMESG-WARN][255] ([Intel XE#877]) -> [PASS][256] +1 other test pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing@pipe-a-dp-2.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-lnl: [INCOMPLETE][257] ([Intel XE#3225]) -> [PASS][258] +3 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-FAIL][259] ([Intel XE#1727]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][261] ([Intel XE#301]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1: - shard-lnl: [FAIL][263] ([Intel XE#886]) -> [PASS][264] +2 other tests pass [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [DMESG-WARN][265] ([Intel XE#3468]) -> [PASS][266] +161 other tests pass [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@plain-flip-interruptible@d-hdmi-a3: - shard-bmg: [DMESG-WARN][267] -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@plain-flip-interruptible@d-hdmi-a3.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_flip@plain-flip-interruptible@d-hdmi-a3.html * igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4: - shard-bmg: [DMESG-FAIL][269] ([Intel XE#2705]) -> [PASS][270] +2 other tests pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-4.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][271] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][272] +5 other tests pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][273] ([Intel XE#2136]) -> [PASS][274] +17 other tests pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64: - shard-bmg: [DMESG-FAIL][275] ([Intel XE#3468]) -> [PASS][276] +31 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-64.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [INCOMPLETE][277] ([Intel XE#1727]) -> [PASS][278] +3 other tests pass [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_pm_backlight@basic-brightness: - shard-lnl: [DMESG-WARN][279] -> [PASS][280] +3 other tests pass [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@kms_pm_backlight@basic-brightness.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][281] ([Intel XE#1430]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: [SKIP][283] ([Intel XE#2446]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [SKIP][285] ([Intel XE#2423] / [i915#2575]) -> [PASS][286] +51 other tests pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-180.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html * igt@xe_evict@evict-mixed-threads-small: - shard-bmg: [DMESG-WARN][287] ([Intel XE#2705]) -> [PASS][288] +4 other tests pass [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@xe_evict@evict-mixed-threads-small.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@xe_evict@evict-mixed-threads-small.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [SKIP][289] ([Intel XE#1130]) -> [PASS][290] +99 other tests pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_basic@many-null-rebind.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_compute_mode@many-rebind: - shard-lnl: [DMESG-WARN][291] ([Intel XE#3514]) -> [PASS][292] +32 other tests pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_exec_compute_mode@many-rebind.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-4/igt@xe_exec_compute_mode@many-rebind.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm: - shard-lnl: [DMESG-FAIL][293] ([Intel XE#3466]) -> [PASS][294] +7 other tests pass [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-3/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-1/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind: - shard-bmg: [DMESG-WARN][295] ([Intel XE#1727]) -> [PASS][296] +19 other tests pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html * igt@xe_exec_threads@threads-bal-fd-userptr: - shard-dg2-set2: [FAIL][297] -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_exec_threads@threads-bal-fd-userptr.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@xe_exec_threads@threads-bal-fd-userptr.html * igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early: - shard-bmg: [DMESG-WARN][299] ([Intel XE#3467]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [TIMEOUT][301] ([Intel XE#2961] / [Intel XE#3191]) -> [PASS][302] +1 other test pass [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_live_ktest@xe_bo.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_live_ktest@xe_bo.html * igt@xe_module_load@unload: - shard-dg2-set2: [DMESG-WARN][303] ([Intel XE#3467]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_module_load@unload.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_module_load@unload.html * igt@xe_oa@stress-open-close: - shard-lnl: [DMESG-WARN][305] ([Intel XE#3466]) -> [PASS][306] +85 other tests pass [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-7/igt@xe_oa@stress-open-close.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@xe_oa@stress-open-close.html * igt@xe_pm@s2idle-mocs: - shard-lnl: [DMESG-WARN][307] ([Intel XE#2932]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@xe_pm@s2idle-mocs.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-3/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s2idle-multiple-execs: - shard-bmg: [DMESG-WARN][309] ([Intel XE#1616]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@xe_pm@s2idle-multiple-execs.html * igt@xe_pm@s3-basic: - shard-bmg: [DMESG-WARN][311] ([Intel XE#569]) -> [PASS][312] +1 other test pass [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_pm@s3-basic.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-4/igt@xe_pm@s3-basic.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][313] ([Intel XE#569]) -> [PASS][314] +1 other test pass [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: [DMESG-WARN][315] ([Intel XE#2280]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@xe_pm@s4-vm-bind-unbind-all.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-2/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_vm@large-split-misaligned-binds-8388608: - shard-dg2-set2: [DMESG-WARN][317] ([Intel XE#1727]) -> [PASS][318] +5 other tests pass [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_vm@large-split-misaligned-binds-8388608.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@xe_vm@large-split-misaligned-binds-8388608.html #### Warnings #### * igt@kms_addfb_basic@legacy-format: - shard-dg2-set2: [DMESG-WARN][319] ([Intel XE#1727]) -> [SKIP][320] ([Intel XE#2423] / [i915#2575]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_addfb_basic@legacy-format.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_addfb_basic@legacy-format.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2-set2: [SKIP][321] ([Intel XE#2423] / [i915#2575]) -> [SKIP][322] ([Intel XE#455]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][323] ([Intel XE#316]) -> [SKIP][324] ([Intel XE#2136]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#316]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg2-set2: [DMESG-WARN][327] ([Intel XE#1727]) -> [SKIP][328] ([Intel XE#2136]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [INCOMPLETE][330] ([Intel XE#1195] / [Intel XE#3225] / [Intel XE#402]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][331] ([Intel XE#1124]) -> [SKIP][332] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][333] ([Intel XE#607]) -> [SKIP][334] ([Intel XE#2136] / [Intel XE#2351]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][335] ([Intel XE#610]) -> [SKIP][336] ([Intel XE#2136]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][337] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][338] ([Intel XE#1124]) +3 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [SKIP][339] ([Intel XE#2136]) -> [SKIP][340] ([Intel XE#1124]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][341] ([Intel XE#1124]) -> [SKIP][342] ([Intel XE#2136]) +11 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][343] ([Intel XE#619]) -> [SKIP][344] ([Intel XE#2136] / [Intel XE#2351]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][345] ([Intel XE#2136]) -> [SKIP][346] ([Intel XE#610]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [SKIP][348] ([Intel XE#2191]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: [SKIP][349] ([Intel XE#2191]) -> [SKIP][350] ([Intel XE#2423] / [i915#2575]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][351] ([Intel XE#2423] / [i915#2575]) -> [SKIP][352] ([Intel XE#367]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][353] ([Intel XE#367]) -> [SKIP][354] ([Intel XE#2423] / [i915#2575]) +7 other tests skip [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][355] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][356] ([Intel XE#2136]) +14 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][357] ([Intel XE#2136]) -> [SKIP][358] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][359] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][360] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [SKIP][361] ([Intel XE#2136]) -> [INCOMPLETE][362] ([Intel XE#1195]) +1 other test incomplete [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][363] ([Intel XE#2907]) -> [SKIP][364] ([Intel XE#2136]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-dg2-set2: [SKIP][365] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][366] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][367] ([Intel XE#2136]) -> [SKIP][368] ([Intel XE#2907]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][369] ([Intel XE#306]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_chamelium_color@gamma.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-dg2-set2: [SKIP][371] ([Intel XE#2423] / [i915#2575]) -> [SKIP][372] ([Intel XE#373]) +7 other tests skip [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: [SKIP][373] ([Intel XE#373]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575]) +16 other tests skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic: - shard-bmg: [INCOMPLETE][375] ([Intel XE#2715]) -> [FAIL][376] ([Intel XE#1178]) +1 other test fail [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-2/igt@kms_content_protection@atomic.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-3/igt@kms_content_protection@atomic.html - shard-dg2-set2: [SKIP][377] ([Intel XE#2423] / [i915#2575]) -> [FAIL][378] ([Intel XE#1178]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_content_protection@atomic.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][379] ([Intel XE#1178]) -> [SKIP][380] ([Intel XE#2341]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-set2: [SKIP][381] ([Intel XE#307]) -> [SKIP][382] ([Intel XE#2423] / [i915#2575]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][383] ([Intel XE#2423] / [i915#2575]) -> [SKIP][384] ([Intel XE#307]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_content_protection@dp-mst-type-1.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [FAIL][385] ([Intel XE#1178]) -> [SKIP][386] ([Intel XE#2423] / [i915#2575]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_content_protection@lic-type-0.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][387] ([Intel XE#455]) -> [SKIP][388] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_content_protection@lic-type-1.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-bmg: [DMESG-FAIL][389] ([Intel XE#3468]) -> [FAIL][390] ([Intel XE#1188]) +1 other test fail [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_content_protection@uevent.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][391] ([Intel XE#308]) -> [SKIP][392] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-suspend: - shard-dg2-set2: [SKIP][393] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][394] ([Intel XE#1195]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_edge_walk@256x256-top-edge: - shard-bmg: [DMESG-FAIL][395] ([Intel XE#3468]) -> [DMESG-WARN][396] ([Intel XE#3468]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_cursor_edge_walk@256x256-top-edge.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-top-edge.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][397] ([Intel XE#323]) -> [SKIP][398] ([Intel XE#2423] / [i915#2575]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_feature_discovery@display-4x: - shard-dg2-set2: [SKIP][399] ([Intel XE#2423] / [i915#2575]) -> [SKIP][400] ([Intel XE#1138]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_feature_discovery@display-4x.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][401] ([Intel XE#1135]) -> [SKIP][402] ([Intel XE#2423] / [i915#2575]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_feature_discovery@psr2.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-bmg: [DMESG-WARN][403] ([Intel XE#3468]) -> [SKIP][404] ([Intel XE#2316]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-bmg: [DMESG-WARN][405] ([Intel XE#3468]) -> [FAIL][406] ([Intel XE#2882]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2: - shard-bmg: [DMESG-WARN][407] ([Intel XE#3468]) -> [FAIL][408] ([Intel XE#3486]) [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html * igt@kms_flip@flip-vs-suspend: - shard-dg2-set2: [INCOMPLETE][409] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597] / [Intel XE#3468]) -> [SKIP][410] ([Intel XE#2423] / [i915#2575]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_flip@flip-vs-suspend.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: [SKIP][411] ([Intel XE#2136]) -> [INCOMPLETE][412] ([Intel XE#1195] / [Intel XE#1727]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2-set2: [SKIP][413] ([Intel XE#2136]) -> [SKIP][414] ([Intel XE#455]) +2 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][415] ([Intel XE#455]) -> [SKIP][416] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][417] ([Intel XE#455]) -> [SKIP][418] ([Intel XE#2136]) +6 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][419] ([i915#5274]) -> [SKIP][420] ([Intel XE#2423] / [i915#2575]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][421] ([Intel XE#2311]) -> [SKIP][422] ([Intel XE#2312]) +8 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [INCOMPLETE][423] ([Intel XE#2050] / [Intel XE#3468]) -> [FAIL][424] ([Intel XE#2333]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [DMESG-FAIL][425] ([Intel XE#3468]) -> [SKIP][426] ([Intel XE#2312]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [INCOMPLETE][427] ([Intel XE#1195]) -> [SKIP][428] ([Intel XE#2136]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [DMESG-FAIL][429] ([Intel XE#3468]) -> [FAIL][430] ([Intel XE#2333]) +16 other tests fail [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][431] ([Intel XE#651]) -> [SKIP][432] ([Intel XE#2136]) +36 other tests skip [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#651]) +17 other tests skip [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][435] ([Intel XE#651]) -> [SKIP][436] ([Intel XE#2136] / [Intel XE#2351]) +16 other tests skip [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][437] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][438] ([Intel XE#651]) +7 other tests skip [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][439] ([Intel XE#658]) -> [SKIP][440] ([Intel XE#2136] / [Intel XE#2351]) [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][441] ([Intel XE#2313]) -> [SKIP][442] ([Intel XE#2312]) +5 other tests skip [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-slowdraw: - shard-dg2-set2: [SKIP][443] ([Intel XE#653]) -> [SKIP][444] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: [SKIP][445] ([Intel XE#1158]) -> [SKIP][446] ([Intel XE#2136]) [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][447] ([Intel XE#653]) -> [SKIP][448] ([Intel XE#2136]) +40 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][449] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][450] ([Intel XE#653]) +6 other tests skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2-set2: [SKIP][451] ([Intel XE#2136]) -> [SKIP][452] ([Intel XE#653]) +16 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][453] ([Intel XE#605]) -> [SKIP][454] ([Intel XE#2423] / [i915#2575]) [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2-set2: [DMESG-WARN][455] ([Intel XE#3468]) -> [SKIP][456] ([Intel XE#2423] / [i915#2575]) [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_hdr@static-toggle-suspend.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: [SKIP][457] ([Intel XE#2925]) -> [SKIP][458] ([Intel XE#2136]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: [SKIP][459] ([Intel XE#2423] / [i915#2575]) -> [SKIP][460] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][461] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][462] ([Intel XE#2423] / [i915#2575]) +1 other test skip [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-dg2-set2: [SKIP][463] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][464] ([Intel XE#2566]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][465] ([Intel XE#2136]) -> [SKIP][466] ([Intel XE#2938]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][467] ([Intel XE#870]) -> [SKIP][468] ([Intel XE#2136]) +2 other tests skip [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-psr: - shard-dg2-set2: [SKIP][469] ([Intel XE#1129]) -> [SKIP][470] ([Intel XE#2136] / [Intel XE#2351]) [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_pm_dc@dc6-psr.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-set2: [DMESG-WARN][471] ([Intel XE#3468]) -> [SKIP][472] ([Intel XE#2446]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_pm_rpm@modeset-lpsp-stress.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][473] ([Intel XE#2136]) -> [SKIP][474] ([Intel XE#1489]) +5 other tests skip [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: [SKIP][475] ([Intel XE#1489]) -> [SKIP][476] ([Intel XE#2136]) +16 other tests skip [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-a-edp-1: - shard-lnl: [DMESG-WARN][477] -> [DMESG-WARN][478] ([Intel XE#3466]) +1 other test dmesg-warn [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-a-edp-1.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb@pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: [SKIP][479] ([Intel XE#1122]) -> [SKIP][480] ([Intel XE#2136]) +2 other tests skip [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][481] ([Intel XE#2136]) -> [SKIP][482] ([Intel XE#1122]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr2_su@page_flip-xrgb8888.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-dpms: - shard-dg2-set2: [SKIP][483] ([Intel XE#2136]) -> [SKIP][484] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@fbc-pr-dpms.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-psr-sprite-blt@edp-1: - shard-lnl: [DMESG-WARN][485] ([Intel XE#3514]) -> [DMESG-WARN][486] ([Intel XE#3466]) +1 other test dmesg-warn [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@kms_psr@fbc-psr-sprite-blt@edp-1.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-6/igt@kms_psr@fbc-psr-sprite-blt@edp-1.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: [SKIP][487] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][488] ([Intel XE#2136]) +16 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][489] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][490] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@pr-sprite-plane-onoff.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][491] ([Intel XE#2351]) -> [SKIP][492] ([Intel XE#2850] / [Intel XE#929]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-dpms: - shard-dg2-set2: [SKIP][493] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][494] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_psr@psr-dpms.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_psr@psr-dpms.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][495] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][496] ([Intel XE#2351]) [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_psr@psr-sprite-plane-onoff.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][497] ([Intel XE#2939]) -> [SKIP][498] ([Intel XE#2136] / [Intel XE#2351]) [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][499] ([Intel XE#3414]) -> [SKIP][500] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@kms_rotation_crc@bad-tiling.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][501] ([Intel XE#1127]) -> [SKIP][502] ([Intel XE#2423] / [i915#2575]) +1 other test skip [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][503] ([Intel XE#2423] / [i915#2575]) -> [SKIP][504] ([Intel XE#3414]) +1 other test skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-270.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][505] ([Intel XE#362]) -> [SKIP][506] ([Intel XE#2423] / [i915#2575]) [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][507] ([Intel XE#1500]) -> [SKIP][508] ([Intel XE#362]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: [SKIP][509] ([Intel XE#330]) -> [SKIP][510] ([Intel XE#2423] / [i915#2575]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][511] ([Intel XE#2168]) -> [SKIP][512] ([Intel XE#2423] / [i915#2575]) [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@kms_vrr@lobf.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@kms_vrr@lobf.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][513] ([Intel XE#2423] / [i915#2575]) -> [SKIP][514] ([Intel XE#1091] / [Intel XE#2849]) [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][515] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][516] ([Intel XE#1130]) +1 other test skip [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][517] ([Intel XE#1123]) -> [SKIP][518] ([Intel XE#1130]) +1 other test skip [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][519] ([Intel XE#1126]) -> [SKIP][520] ([Intel XE#1130]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x3fff.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][521] ([Intel XE#1130]) -> [SKIP][522] ([Intel XE#1126]) [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-dg2-set2: [SKIP][523] ([Intel XE#2905]) -> [SKIP][524] ([Intel XE#1130]) +21 other tests skip [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_eudebug_online@preempt-breakpoint.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#2905]) +11 other tests skip [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_eudebug_online@resume-dss.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@xe_eudebug_online@resume-dss.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][527] ([Intel XE#1473]) -> [SKIP][528] ([Intel XE#1130]) +1 other test skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch: - shard-dg2-set2: [SKIP][529] ([Intel XE#1130]) -> [SKIP][530] ([Intel XE#288]) +22 other tests skip [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-race: - shard-dg2-set2: [SKIP][531] ([Intel XE#288]) -> [SKIP][532] ([Intel XE#1130]) +48 other tests skip [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][533] ([Intel XE#1130]) -> [SKIP][534] ([Intel XE#2360]) +2 other tests skip [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-dg2-set2: [SKIP][535] ([Intel XE#1130]) -> [DMESG-WARN][536] ([Intel XE#3343]) +1 other test dmesg-warn [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-dg2-set2: [DMESG-WARN][537] ([Intel XE#3343]) -> [SKIP][538] ([Intel XE#1130]) +1 other test skip [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-dg2-set2: [SKIP][539] ([Intel XE#1130]) -> [DMESG-WARN][540] ([Intel XE#3467]) +2 other tests dmesg-warn [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc: - shard-bmg: [DMESG-FAIL][541] ([Intel XE#3467]) -> [FAIL][542] ([Intel XE#3499]) +1 other test fail [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html - shard-dg2-set2: [DMESG-WARN][543] ([Intel XE#3467]) -> [SKIP][544] ([Intel XE#1130]) +2 other tests skip [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html * igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind: - shard-bmg: [DMESG-WARN][545] -> [DMESG-WARN][546] ([Intel XE#3467]) [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][547] ([Intel XE#1130]) -> [SKIP][548] ([Intel XE#560]) [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_media_fill@media-fill.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-436/igt@xe_media_fill@media-fill.html * igt@xe_mmap@small-bar: - shard-dg2-set2: [SKIP][549] ([Intel XE#512]) -> [SKIP][550] ([Intel XE#1130]) [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_mmap@small-bar.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_mmap@small-bar.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][551] ([Intel XE#2541]) -> [SKIP][552] ([Intel XE#1130]) +9 other tests skip [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_oa@invalid-oa-metric-set-id: - shard-dg2-set2: [SKIP][553] ([Intel XE#1130]) -> [SKIP][554] ([Intel XE#2541]) +2 other tests skip [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_oa@invalid-oa-metric-set-id.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-464/igt@xe_oa@invalid-oa-metric-set-id.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][555] ([Intel XE#2839] / [Intel XE#977]) -> [SKIP][556] ([Intel XE#1130]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_pat@pat-index-xe2.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_pat@pat-index-xe2.html * igt@xe_peer2peer@write: - shard-dg2-set2: [FAIL][557] ([Intel XE#1173]) -> [SKIP][558] ([Intel XE#1061]) [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_peer2peer@write.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][559] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][560] ([Intel XE#1130]) +2 other tests skip [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][561] ([Intel XE#2284]) -> [SKIP][562] ([Intel XE#1130]) [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_pm@d3cold-mocs.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s2idle-basic-exec: - shard-dg2-set2: [DMESG-WARN][563] ([Intel XE#1727]) -> [SKIP][564] ([Intel XE#1130]) +1 other test skip [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_pm@s2idle-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][565] ([Intel XE#569]) -> [SKIP][566] ([Intel XE#1130]) +1 other test skip [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][567] ([Intel XE#2280]) -> [SKIP][568] ([Intel XE#1130]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-463/igt@xe_pm@s4-vm-bind-unbind-all.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_pm@s4-vm-bind-unbind-all.html - shard-lnl: [DMESG-WARN][569] ([Intel XE#2280]) -> [ABORT][570] ([Intel XE#1794]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][571] ([Intel XE#579]) -> [SKIP][572] ([Intel XE#1130]) [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-dg2-set2: [SKIP][573] ([Intel XE#1130]) -> [SKIP][574] ([Intel XE#944]) +1 other test skip [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_query@multigpu-query-invalid-cs-cycles.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-433/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: [SKIP][575] ([Intel XE#944]) -> [SKIP][576] ([Intel XE#1130]) +7 other tests skip [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_query@multigpu-query-uc-fw-version-guc.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][577] ([Intel XE#1130]) -> [SKIP][578] ([Intel XE#3342]) [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-435/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: [SKIP][579] ([Intel XE#1130]) -> [DMESG-WARN][580] ([Intel XE#2919]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-466/igt@xe_wedged@basic-wedged.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-463/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [ABORT][581] ([Intel XE#3421]) -> [SKIP][582] ([Intel XE#1130]) [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-434/igt@xe_wedged@wedged-at-any-timeout.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: [ABORT][583] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][584] ([Intel XE#1130]) [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8115/shard-dg2-464/igt@xe_wedged@wedged-mode-toggle.html [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/shard-dg2-466/igt@xe_wedged@wedged-mode-toggle.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#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [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#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [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#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [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#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2808]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2808 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2870 [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#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#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191 [Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3404]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3404 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467 [Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468 [Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [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#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [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 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8115 -> IGTPW_12131 * Linux: xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4 -> xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6 IGTPW_12131: 12131 IGT_8115: 4942fc57c20f9cb2195e70991c4e4df03dd3db21 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2248-6abefc8e3bf638090d5277bc3e6fd02bb25579a4: 6abefc8e3bf638090d5277bc3e6fd02bb25579a4 xe-2249-1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6: 1fe9a6cc7d136c9a34c47ccd6ee5a2b7d02c0bd6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12131/index.html [-- Attachment #2: Type: text/html, Size: 182628 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-11-19 17:16 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-18 20:59 [PATCH 0/2] UMD direct submission tests Matthew Brost 2024-11-18 20:59 ` [PATCH 1/2] drm-uapi/xe: Update uAPI for UMD direct submission Matthew Brost 2024-11-18 20:59 ` [PATCH 2/2] tests/xe: Add usermap test Matthew Brost 2024-11-19 3:38 ` ✗ GitLab.Pipeline: warning for UMD direct submission tests Patchwork 2024-11-19 3:53 ` ✓ CI.xeBAT: success " Patchwork 2024-11-19 4:09 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-11-19 17:16 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox