* [PATCH v2 0/2] tests/msm: Add PERFCNTR_CONFIG ioctl
@ 2026-07-08 16:12 Rob Clark
2026-07-08 16:12 ` [PATCH v2 1/2] drm-uapi: Sync msm_drm.h Rob Clark
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Rob Clark @ 2026-07-08 16:12 UTC (permalink / raw)
To: igt-dev; +Cc: freedreno, linux-arm-msm, Rob Clark
Now that the new UABI is merged for v7.2, here are tests.
Rob Clark (2):
drm-uapi: Sync msm_drm.h
tests/msm: Add perfcntrs test
include/drm-uapi/msm_drm.h | 204 ++++++++++++++++++++++++++++++++++---
tests/msm/meson.build | 1 +
tests/msm/msm_perfcntrs.c | 196 +++++++++++++++++++++++++++++++++++
3 files changed, 385 insertions(+), 16 deletions(-)
create mode 100644 tests/msm/msm_perfcntrs.c
--
2.55.0
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH v2 1/2] drm-uapi: Sync msm_drm.h 2026-07-08 16:12 [PATCH v2 0/2] tests/msm: Add PERFCNTR_CONFIG ioctl Rob Clark @ 2026-07-08 16:12 ` Rob Clark 2026-07-10 9:52 ` Kamil Konieczny 2026-07-10 10:12 ` Kamil Konieczny 2026-07-08 16:12 ` [PATCH v2 2/2] tests/msm: Add perfcntrs test Rob Clark ` (4 subsequent siblings) 5 siblings, 2 replies; 10+ messages in thread From: Rob Clark @ 2026-07-08 16:12 UTC (permalink / raw) To: igt-dev; +Cc: freedreno, linux-arm-msm, Rob Clark Pull in updated UABI header with PERFCNTR_CONFIG ioctl. Sync with: commit 44c460d2cc8b87c08360fe60f861660c8045ef90 Merge: 9bb8af2770b7 9a967125427e Author: Dave Airlie <airlied@redhat.com> Merge tag 'drm-msm-next-2026-05-30' of https://gitlab.freedesktop.org/drm/msm into drm-next Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41158> --- include/drm-uapi/msm_drm.h | 204 ++++++++++++++++++++++++++++++++++--- 1 file changed, 188 insertions(+), 16 deletions(-) diff --git a/include/drm-uapi/msm_drm.h b/include/drm-uapi/msm_drm.h index 2377147b6af0..7f2e594be4eb 100644 --- a/include/drm-uapi/msm_drm.h +++ b/include/drm-uapi/msm_drm.h @@ -90,6 +90,34 @@ struct drm_msm_timespec { #define MSM_PARAM_RAYTRACING 0x11 /* RO */ #define MSM_PARAM_UBWC_SWIZZLE 0x12 /* RO */ #define MSM_PARAM_MACROTILE_MODE 0x13 /* RO */ +#define MSM_PARAM_UCHE_TRAP_BASE 0x14 /* RO */ +/* PRR (Partially Resident Region) is required for sparse residency: */ +#define MSM_PARAM_HAS_PRR 0x15 /* RO */ +/* MSM_PARAM_EN_VM_BIND is set to 1 to enable VM_BIND ops. + * + * With VM_BIND enabled, userspace is required to allocate iova and use the + * VM_BIND ops for map/unmap ioctls. MSM_INFO_SET_IOVA and MSM_INFO_GET_IOVA + * will be rejected. (The latter does not have a sensible meaning when a BO + * can have multiple and/or partial mappings.) + * + * With VM_BIND enabled, userspace does not include a submit_bo table in the + * SUBMIT ioctl (this will be rejected), the resident set is determined by + * the the VM_BIND ops. + * + * Enabling VM_BIND will fail on devices which do not have per-process pgtables. + * And it is not allowed to disable VM_BIND once it has been enabled. + * + * Enabling VM_BIND should be done (attempted) prior to allocating any BOs or + * submitqueues of type MSM_SUBMITQUEUE_VM_BIND. + * + * Relatedly, when VM_BIND mode is enabled, the kernel will not try to recover + * from GPU faults or failed async VM_BIND ops, in particular because it is + * difficult to communicate to userspace which op failed so that userspace + * could rewind and try again. When the VM is marked unusable, the SUBMIT + * ioctl will throw -EPIPE. + */ +#define MSM_PARAM_EN_VM_BIND 0x16 /* WO, once */ +#define MSM_PARAM_AQE 0x17 /* RO */ /* For backwards compat. The original support for preemption was based on * a single ring per priority level so # of priority levels equals the # @@ -113,6 +141,19 @@ struct drm_msm_param { #define MSM_BO_SCANOUT 0x00000001 /* scanout capable */ #define MSM_BO_GPU_READONLY 0x00000002 +/* Private buffers do not need to be explicitly listed in the SUBMIT + * ioctl, unless referenced by a drm_msm_gem_submit_cmd. Private + * buffers may NOT be imported/exported or used for scanout (or any + * other situation where buffers can be indefinitely pinned, but + * cases other than scanout are all kernel owned BOs which are not + * visible to userspace). + * + * In exchange for those constraints, all private BOs associated with + * a single context (drm_file) share a single dma_resv, and if there + * has been no eviction since the last submit, there are no per-BO + * bookeeping to do, significantly cutting the SUBMIT overhead. + */ +#define MSM_BO_NO_SHARE 0x00000004 #define MSM_BO_CACHE_MASK 0x000f0000 /* cache modes */ #define MSM_BO_CACHED 0x00010000 @@ -122,6 +163,7 @@ struct drm_msm_param { #define MSM_BO_FLAGS (MSM_BO_SCANOUT | \ MSM_BO_GPU_READONLY | \ + MSM_BO_NO_SHARE | \ MSM_BO_CACHE_MASK) struct drm_msm_gem_new { @@ -179,6 +221,17 @@ struct drm_msm_gem_cpu_fini { * Cmdstream Submission: */ +#define MSM_SYNCOBJ_RESET 0x00000001 /* Reset syncobj after wait. */ +#define MSM_SYNCOBJ_FLAGS ( \ + MSM_SYNCOBJ_RESET | \ + 0) + +struct drm_msm_syncobj { + __u32 handle; /* in, syncobj handle. */ + __u32 flags; /* in, from MSM_SUBMIT_SYNCOBJ_FLAGS */ + __u64 point; /* in, timepoint for timeline syncobjs. */ +}; + /* The value written into the cmdstream is logically: * * ((relocbuf->gpuaddr + reloc_offset) << shift) | or @@ -220,7 +273,10 @@ struct drm_msm_gem_submit_cmd { __u32 size; /* in, cmdstream size */ __u32 pad; __u32 nr_relocs; /* in, number of submit_reloc's */ - __u64 relocs; /* in, ptr to array of submit_reloc's */ + union { + __u64 relocs; /* in, ptr to array of submit_reloc's */ + __u64 iova; /* cmdstream address (for VM_BIND contexts) */ + }; }; /* Each buffer referenced elsewhere in the cmdstream submit (ie. the @@ -268,17 +324,6 @@ struct drm_msm_gem_submit_bo { MSM_SUBMIT_FENCE_SN_IN | \ 0) -#define MSM_SUBMIT_SYNCOBJ_RESET 0x00000001 /* Reset syncobj after wait. */ -#define MSM_SUBMIT_SYNCOBJ_FLAGS ( \ - MSM_SUBMIT_SYNCOBJ_RESET | \ - 0) - -struct drm_msm_gem_submit_syncobj { - __u32 handle; /* in, syncobj handle. */ - __u32 flags; /* in, from MSM_SUBMIT_SYNCOBJ_FLAGS */ - __u64 point; /* in, timepoint for timeline syncobjs. */ -}; - /* Each cmdstream submit consists of a table of buffers involved, and * one or more cmdstream buffers. This allows for conditional execution * (context-restore), and IB buffers needed for per tile/bin draw cmds. @@ -292,13 +337,80 @@ struct drm_msm_gem_submit { __u64 cmds; /* in, ptr to array of submit_cmd's */ __s32 fence_fd; /* in/out fence fd (see MSM_SUBMIT_FENCE_FD_IN/OUT) */ __u32 queueid; /* in, submitqueue id */ - __u64 in_syncobjs; /* in, ptr to array of drm_msm_gem_submit_syncobj */ - __u64 out_syncobjs; /* in, ptr to array of drm_msm_gem_submit_syncobj */ + __u64 in_syncobjs; /* in, ptr to array of drm_msm_syncobj */ + __u64 out_syncobjs; /* in, ptr to array of drm_msm_syncobj */ __u32 nr_in_syncobjs; /* in, number of entries in in_syncobj */ __u32 nr_out_syncobjs; /* in, number of entries in out_syncobj. */ __u32 syncobj_stride; /* in, stride of syncobj arrays. */ __u32 pad; /*in, reserved for future use, always 0. */ +}; + +#define MSM_VM_BIND_OP_UNMAP 0 +#define MSM_VM_BIND_OP_MAP 1 +#define MSM_VM_BIND_OP_MAP_NULL 2 +#define MSM_VM_BIND_OP_DUMP 1 +#define MSM_VM_BIND_OP_FLAGS ( \ + MSM_VM_BIND_OP_DUMP | \ + 0) + +/** + * struct drm_msm_vm_bind_op - bind/unbind op to run + */ +struct drm_msm_vm_bind_op { + /** @op: one of MSM_VM_BIND_OP_x */ + __u32 op; + /** @handle: GEM object handle, MBZ for UNMAP or MAP_NULL */ + __u32 handle; + /** @obj_offset: Offset into GEM object, MBZ for UNMAP or MAP_NULL */ + __u64 obj_offset; + /** @iova: Address to operate on */ + __u64 iova; + /** @range: Number of bites to to map/unmap */ + __u64 range; + /** @flags: Bitmask of MSM_VM_BIND_OP_FLAG_x */ + __u32 flags; + /** @pad: MBZ */ + __u32 pad; +}; + +#define MSM_VM_BIND_FENCE_FD_IN 0x00000001 +#define MSM_VM_BIND_FENCE_FD_OUT 0x00000002 +#define MSM_VM_BIND_FLAGS ( \ + MSM_VM_BIND_FENCE_FD_IN | \ + MSM_VM_BIND_FENCE_FD_OUT | \ + 0) + +/** + * struct drm_msm_vm_bind - Input of &DRM_IOCTL_MSM_VM_BIND + */ +struct drm_msm_vm_bind { + /** @flags: in, bitmask of MSM_VM_BIND_x */ + __u32 flags; + /** @nr_ops: the number of bind ops in this ioctl */ + __u32 nr_ops; + /** @fence_fd: in/out fence fd (see MSM_VM_BIND_FENCE_FD_IN/OUT) */ + __s32 fence_fd; + /** @queue_id: in, submitqueue id */ + __u32 queue_id; + /** @in_syncobjs: in, ptr to array of drm_msm_gem_syncobj */ + __u64 in_syncobjs; + /** @out_syncobjs: in, ptr to array of drm_msm_gem_syncobj */ + __u64 out_syncobjs; + /** @nr_in_syncobjs: in, number of entries in in_syncobj */ + __u32 nr_in_syncobjs; + /** @nr_out_syncobjs: in, number of entries in out_syncobj */ + __u32 nr_out_syncobjs; + /** @syncobj_stride: in, stride of syncobj arrays */ + __u32 syncobj_stride; + /** @op_stride: sizeof each struct drm_msm_vm_bind_op in @ops */ + __u32 op_stride; + union { + /** @op: used if num_ops == 1 */ + struct drm_msm_vm_bind_op op; + /** @ops: userptr to array of drm_msm_vm_bind_op if num_ops > 1 */ + __u64 ops; + }; }; #define MSM_WAIT_FENCE_BOOST 0x00000001 @@ -344,10 +456,20 @@ struct drm_msm_gem_madvise { /* * Draw queues allow the user to set specific submission parameter. Command * submissions specify a specific submitqueue to use. ID 0 is reserved for - * backwards compatibility as a "default" submitqueue + * backwards compatibility as a "default" submitqueue. + * + * Because VM_BIND async updates happen on the CPU, they must run on a + * virtual queue created with the flag MSM_SUBMITQUEUE_VM_BIND. If we had + * a way to do pgtable updates on the GPU, we could drop this restriction. */ -#define MSM_SUBMITQUEUE_FLAGS (0) +#define MSM_SUBMITQUEUE_ALLOW_PREEMPT 0x00000001 +#define MSM_SUBMITQUEUE_VM_BIND 0x00000002 /* virtual queue for VM_BIND ops */ + +#define MSM_SUBMITQUEUE_FLAGS ( \ + MSM_SUBMITQUEUE_ALLOW_PREEMPT | \ + MSM_SUBMITQUEUE_VM_BIND | \ + 0) /* * The submitqueue priority should be between 0 and MSM_PARAM_PRIORITIES-1, @@ -369,6 +491,52 @@ struct drm_msm_submitqueue_query { __u32 pad; }; +#define MSM_PERFCNTR_STREAM 0x00000001 +#define MSM_PERFCNTR_UPDATE 0x00000002 +#define MSM_PERFCNTR_FLAGS ( \ + MSM_PERFCNTR_STREAM | \ + MSM_PERFCNTR_UPDATE | \ + 0) + +struct drm_msm_perfcntr_group { + char group_name[16]; + __u32 nr_countables; + __u32 pad; /* mbz */ + __u64 countables; /* pointer to an array of nr_countables u32 */ +}; + +/* + * Note, for MSM_PERFCNTR_STREAM, the ioctl returns an fd to read recorded + * counters. This only works because the ioctl is DRM_IOW(), if we returned + * a out param in the ioctl struct the copy_to_user() (in drm_ioctl()) + * could fault, causing us to leak the fd. + * + * If the ioctl returns with error E2BIG, that means more counters/countables + * are requested than are currently available. If MSM_PERFCNTR_UPDATE flag + * is set, drm_msm_perfcntr_group::nr_countables will be updated to return + * the actual # of counters available. + * + * The data read from the has the following format for each sampling period: + * + * uint64_t timestamp; // CP_ALWAYS_ON_COUNTER captured at sample time + * uint32_t seqno; // increments by 1 each period, reset to 0 on discontinuity + * uint32_t mbz; // pad out counters to 64b + * struct { + * uint64_t counter[nr_countables]; + * } groups[nr_groups]; + * + * The ordering of groups and counters matches the order in PERFCNTR_CONFIG + * ioctl. + */ +struct drm_msm_perfcntr_config { + __u32 flags; /* bitmask of MSM_PERFCNTR_x */ + __u32 nr_groups; /* # of entries in groups array */ + __u64 groups; /* pointer to array of drm_msm_perfcntr_group */ + __u64 period; /* sampling period in ns */ + __u32 bufsz_shift; /* sample buffer size in bytes is 1<<bufsz_shift */ + __u32 group_stride; /* sizeof(struct drm_msm_perfcntr_group) */ +}; + #define DRM_MSM_GET_PARAM 0x00 #define DRM_MSM_SET_PARAM 0x01 #define DRM_MSM_GEM_NEW 0x02 @@ -384,6 +552,8 @@ struct drm_msm_submitqueue_query { #define DRM_MSM_SUBMITQUEUE_NEW 0x0A #define DRM_MSM_SUBMITQUEUE_CLOSE 0x0B #define DRM_MSM_SUBMITQUEUE_QUERY 0x0C +#define DRM_MSM_VM_BIND 0x0D +#define DRM_MSM_PERFCNTR_CONFIG 0x0E #define DRM_IOCTL_MSM_GET_PARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GET_PARAM, struct drm_msm_param) #define DRM_IOCTL_MSM_SET_PARAM DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SET_PARAM, struct drm_msm_param) @@ -397,6 +567,8 @@ struct drm_msm_submitqueue_query { #define DRM_IOCTL_MSM_SUBMITQUEUE_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_NEW, struct drm_msm_submitqueue) #define DRM_IOCTL_MSM_SUBMITQUEUE_CLOSE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_CLOSE, __u32) #define DRM_IOCTL_MSM_SUBMITQUEUE_QUERY DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_QUERY, struct drm_msm_submitqueue_query) +#define DRM_IOCTL_MSM_VM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_VM_BIND, struct drm_msm_vm_bind) +#define DRM_IOCTL_MSM_PERFCNTR_CONFIG DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_PERFCNTR_CONFIG, struct drm_msm_perfcntr_config) #if defined(__cplusplus) } -- 2.55.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] drm-uapi: Sync msm_drm.h 2026-07-08 16:12 ` [PATCH v2 1/2] drm-uapi: Sync msm_drm.h Rob Clark @ 2026-07-10 9:52 ` Kamil Konieczny 2026-07-10 10:12 ` Kamil Konieczny 1 sibling, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2026-07-10 9:52 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev, freedreno, linux-arm-msm Hi Rob, On 2026-07-08 at 09:12:23 -0700, Rob Clark wrote: please make subject explicit with which commit you syncing, like: [PATCH v2 1/2] drm-uapi/msm: Sync with drm-next up to a7b378c94937 > Pull in updated UABI header with PERFCNTR_CONFIG ioctl. Sync with: > > commit 44c460d2cc8b87c08360fe60f861660c8045ef90 > Merge: 9bb8af2770b7 9a967125427e > Author: Dave Airlie <airlied@redhat.com> > > Merge tag 'drm-msm-next-2026-05-30' of https://gitlab.freedesktop.org/drm/msm into drm-next Here also imho just write down which new commits appear, like: Sync msm drm uapi with drm-next up to commit a7b378c94937, this will bring following changes: a7b378c94937 ("drm/msm: Add PERFCNTR_CONFIG ioctl") 64ac64bb6206 ("drm/msm/adreno: Expose a PARAM to check AQE support") 2e6a8a1fe2b2 ("drm/msm: Add VM_BIND ioctl") > > Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com> > Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41158> imho better to place this in main description and without '<' '>' with this LGTM Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil PS. no need for resend, I can edit it at merge. > --- > include/drm-uapi/msm_drm.h | 204 ++++++++++++++++++++++++++++++++++--- > 1 file changed, 188 insertions(+), 16 deletions(-) > > diff --git a/include/drm-uapi/msm_drm.h b/include/drm-uapi/msm_drm.h > index 2377147b6af0..7f2e594be4eb 100644 > --- a/include/drm-uapi/msm_drm.h > +++ b/include/drm-uapi/msm_drm.h > @@ -90,6 +90,34 @@ struct drm_msm_timespec { > #define MSM_PARAM_RAYTRACING 0x11 /* RO */ > #define MSM_PARAM_UBWC_SWIZZLE 0x12 /* RO */ > #define MSM_PARAM_MACROTILE_MODE 0x13 /* RO */ > +#define MSM_PARAM_UCHE_TRAP_BASE 0x14 /* RO */ > +/* PRR (Partially Resident Region) is required for sparse residency: */ > +#define MSM_PARAM_HAS_PRR 0x15 /* RO */ > +/* MSM_PARAM_EN_VM_BIND is set to 1 to enable VM_BIND ops. > + * > + * With VM_BIND enabled, userspace is required to allocate iova and use the > + * VM_BIND ops for map/unmap ioctls. MSM_INFO_SET_IOVA and MSM_INFO_GET_IOVA > + * will be rejected. (The latter does not have a sensible meaning when a BO > + * can have multiple and/or partial mappings.) > + * > + * With VM_BIND enabled, userspace does not include a submit_bo table in the > + * SUBMIT ioctl (this will be rejected), the resident set is determined by > + * the the VM_BIND ops. > + * > + * Enabling VM_BIND will fail on devices which do not have per-process pgtables. > + * And it is not allowed to disable VM_BIND once it has been enabled. > + * > + * Enabling VM_BIND should be done (attempted) prior to allocating any BOs or > + * submitqueues of type MSM_SUBMITQUEUE_VM_BIND. > + * > + * Relatedly, when VM_BIND mode is enabled, the kernel will not try to recover > + * from GPU faults or failed async VM_BIND ops, in particular because it is > + * difficult to communicate to userspace which op failed so that userspace > + * could rewind and try again. When the VM is marked unusable, the SUBMIT > + * ioctl will throw -EPIPE. > + */ > +#define MSM_PARAM_EN_VM_BIND 0x16 /* WO, once */ > +#define MSM_PARAM_AQE 0x17 /* RO */ > > /* For backwards compat. The original support for preemption was based on > * a single ring per priority level so # of priority levels equals the # > @@ -113,6 +141,19 @@ struct drm_msm_param { > > #define MSM_BO_SCANOUT 0x00000001 /* scanout capable */ > #define MSM_BO_GPU_READONLY 0x00000002 > +/* Private buffers do not need to be explicitly listed in the SUBMIT > + * ioctl, unless referenced by a drm_msm_gem_submit_cmd. Private > + * buffers may NOT be imported/exported or used for scanout (or any > + * other situation where buffers can be indefinitely pinned, but > + * cases other than scanout are all kernel owned BOs which are not > + * visible to userspace). > + * > + * In exchange for those constraints, all private BOs associated with > + * a single context (drm_file) share a single dma_resv, and if there > + * has been no eviction since the last submit, there are no per-BO > + * bookeeping to do, significantly cutting the SUBMIT overhead. > + */ > +#define MSM_BO_NO_SHARE 0x00000004 > #define MSM_BO_CACHE_MASK 0x000f0000 > /* cache modes */ > #define MSM_BO_CACHED 0x00010000 > @@ -122,6 +163,7 @@ struct drm_msm_param { > > #define MSM_BO_FLAGS (MSM_BO_SCANOUT | \ > MSM_BO_GPU_READONLY | \ > + MSM_BO_NO_SHARE | \ > MSM_BO_CACHE_MASK) > > struct drm_msm_gem_new { > @@ -179,6 +221,17 @@ struct drm_msm_gem_cpu_fini { > * Cmdstream Submission: > */ > > +#define MSM_SYNCOBJ_RESET 0x00000001 /* Reset syncobj after wait. */ > +#define MSM_SYNCOBJ_FLAGS ( \ > + MSM_SYNCOBJ_RESET | \ > + 0) > + > +struct drm_msm_syncobj { > + __u32 handle; /* in, syncobj handle. */ > + __u32 flags; /* in, from MSM_SUBMIT_SYNCOBJ_FLAGS */ > + __u64 point; /* in, timepoint for timeline syncobjs. */ > +}; > + > /* The value written into the cmdstream is logically: > * > * ((relocbuf->gpuaddr + reloc_offset) << shift) | or > @@ -220,7 +273,10 @@ struct drm_msm_gem_submit_cmd { > __u32 size; /* in, cmdstream size */ > __u32 pad; > __u32 nr_relocs; /* in, number of submit_reloc's */ > - __u64 relocs; /* in, ptr to array of submit_reloc's */ > + union { > + __u64 relocs; /* in, ptr to array of submit_reloc's */ > + __u64 iova; /* cmdstream address (for VM_BIND contexts) */ > + }; > }; > > /* Each buffer referenced elsewhere in the cmdstream submit (ie. the > @@ -268,17 +324,6 @@ struct drm_msm_gem_submit_bo { > MSM_SUBMIT_FENCE_SN_IN | \ > 0) > > -#define MSM_SUBMIT_SYNCOBJ_RESET 0x00000001 /* Reset syncobj after wait. */ > -#define MSM_SUBMIT_SYNCOBJ_FLAGS ( \ > - MSM_SUBMIT_SYNCOBJ_RESET | \ > - 0) > - > -struct drm_msm_gem_submit_syncobj { > - __u32 handle; /* in, syncobj handle. */ > - __u32 flags; /* in, from MSM_SUBMIT_SYNCOBJ_FLAGS */ > - __u64 point; /* in, timepoint for timeline syncobjs. */ > -}; > - > /* Each cmdstream submit consists of a table of buffers involved, and > * one or more cmdstream buffers. This allows for conditional execution > * (context-restore), and IB buffers needed for per tile/bin draw cmds. > @@ -292,13 +337,80 @@ struct drm_msm_gem_submit { > __u64 cmds; /* in, ptr to array of submit_cmd's */ > __s32 fence_fd; /* in/out fence fd (see MSM_SUBMIT_FENCE_FD_IN/OUT) */ > __u32 queueid; /* in, submitqueue id */ > - __u64 in_syncobjs; /* in, ptr to array of drm_msm_gem_submit_syncobj */ > - __u64 out_syncobjs; /* in, ptr to array of drm_msm_gem_submit_syncobj */ > + __u64 in_syncobjs; /* in, ptr to array of drm_msm_syncobj */ > + __u64 out_syncobjs; /* in, ptr to array of drm_msm_syncobj */ > __u32 nr_in_syncobjs; /* in, number of entries in in_syncobj */ > __u32 nr_out_syncobjs; /* in, number of entries in out_syncobj. */ > __u32 syncobj_stride; /* in, stride of syncobj arrays. */ > __u32 pad; /*in, reserved for future use, always 0. */ > +}; > + > +#define MSM_VM_BIND_OP_UNMAP 0 > +#define MSM_VM_BIND_OP_MAP 1 > +#define MSM_VM_BIND_OP_MAP_NULL 2 > > +#define MSM_VM_BIND_OP_DUMP 1 > +#define MSM_VM_BIND_OP_FLAGS ( \ > + MSM_VM_BIND_OP_DUMP | \ > + 0) > + > +/** > + * struct drm_msm_vm_bind_op - bind/unbind op to run > + */ > +struct drm_msm_vm_bind_op { > + /** @op: one of MSM_VM_BIND_OP_x */ > + __u32 op; > + /** @handle: GEM object handle, MBZ for UNMAP or MAP_NULL */ > + __u32 handle; > + /** @obj_offset: Offset into GEM object, MBZ for UNMAP or MAP_NULL */ > + __u64 obj_offset; > + /** @iova: Address to operate on */ > + __u64 iova; > + /** @range: Number of bites to to map/unmap */ > + __u64 range; > + /** @flags: Bitmask of MSM_VM_BIND_OP_FLAG_x */ > + __u32 flags; > + /** @pad: MBZ */ > + __u32 pad; > +}; > + > +#define MSM_VM_BIND_FENCE_FD_IN 0x00000001 > +#define MSM_VM_BIND_FENCE_FD_OUT 0x00000002 > +#define MSM_VM_BIND_FLAGS ( \ > + MSM_VM_BIND_FENCE_FD_IN | \ > + MSM_VM_BIND_FENCE_FD_OUT | \ > + 0) > + > +/** > + * struct drm_msm_vm_bind - Input of &DRM_IOCTL_MSM_VM_BIND > + */ > +struct drm_msm_vm_bind { > + /** @flags: in, bitmask of MSM_VM_BIND_x */ > + __u32 flags; > + /** @nr_ops: the number of bind ops in this ioctl */ > + __u32 nr_ops; > + /** @fence_fd: in/out fence fd (see MSM_VM_BIND_FENCE_FD_IN/OUT) */ > + __s32 fence_fd; > + /** @queue_id: in, submitqueue id */ > + __u32 queue_id; > + /** @in_syncobjs: in, ptr to array of drm_msm_gem_syncobj */ > + __u64 in_syncobjs; > + /** @out_syncobjs: in, ptr to array of drm_msm_gem_syncobj */ > + __u64 out_syncobjs; > + /** @nr_in_syncobjs: in, number of entries in in_syncobj */ > + __u32 nr_in_syncobjs; > + /** @nr_out_syncobjs: in, number of entries in out_syncobj */ > + __u32 nr_out_syncobjs; > + /** @syncobj_stride: in, stride of syncobj arrays */ > + __u32 syncobj_stride; > + /** @op_stride: sizeof each struct drm_msm_vm_bind_op in @ops */ > + __u32 op_stride; > + union { > + /** @op: used if num_ops == 1 */ > + struct drm_msm_vm_bind_op op; > + /** @ops: userptr to array of drm_msm_vm_bind_op if num_ops > 1 */ > + __u64 ops; > + }; > }; > > #define MSM_WAIT_FENCE_BOOST 0x00000001 > @@ -344,10 +456,20 @@ struct drm_msm_gem_madvise { > /* > * Draw queues allow the user to set specific submission parameter. Command > * submissions specify a specific submitqueue to use. ID 0 is reserved for > - * backwards compatibility as a "default" submitqueue > + * backwards compatibility as a "default" submitqueue. > + * > + * Because VM_BIND async updates happen on the CPU, they must run on a > + * virtual queue created with the flag MSM_SUBMITQUEUE_VM_BIND. If we had > + * a way to do pgtable updates on the GPU, we could drop this restriction. > */ > > -#define MSM_SUBMITQUEUE_FLAGS (0) > +#define MSM_SUBMITQUEUE_ALLOW_PREEMPT 0x00000001 > +#define MSM_SUBMITQUEUE_VM_BIND 0x00000002 /* virtual queue for VM_BIND ops */ > + > +#define MSM_SUBMITQUEUE_FLAGS ( \ > + MSM_SUBMITQUEUE_ALLOW_PREEMPT | \ > + MSM_SUBMITQUEUE_VM_BIND | \ > + 0) > > /* > * The submitqueue priority should be between 0 and MSM_PARAM_PRIORITIES-1, > @@ -369,6 +491,52 @@ struct drm_msm_submitqueue_query { > __u32 pad; > }; > > +#define MSM_PERFCNTR_STREAM 0x00000001 > +#define MSM_PERFCNTR_UPDATE 0x00000002 > +#define MSM_PERFCNTR_FLAGS ( \ > + MSM_PERFCNTR_STREAM | \ > + MSM_PERFCNTR_UPDATE | \ > + 0) > + > +struct drm_msm_perfcntr_group { > + char group_name[16]; > + __u32 nr_countables; > + __u32 pad; /* mbz */ > + __u64 countables; /* pointer to an array of nr_countables u32 */ > +}; > + > +/* > + * Note, for MSM_PERFCNTR_STREAM, the ioctl returns an fd to read recorded > + * counters. This only works because the ioctl is DRM_IOW(), if we returned > + * a out param in the ioctl struct the copy_to_user() (in drm_ioctl()) > + * could fault, causing us to leak the fd. > + * > + * If the ioctl returns with error E2BIG, that means more counters/countables > + * are requested than are currently available. If MSM_PERFCNTR_UPDATE flag > + * is set, drm_msm_perfcntr_group::nr_countables will be updated to return > + * the actual # of counters available. > + * > + * The data read from the has the following format for each sampling period: > + * > + * uint64_t timestamp; // CP_ALWAYS_ON_COUNTER captured at sample time > + * uint32_t seqno; // increments by 1 each period, reset to 0 on discontinuity > + * uint32_t mbz; // pad out counters to 64b > + * struct { > + * uint64_t counter[nr_countables]; > + * } groups[nr_groups]; > + * > + * The ordering of groups and counters matches the order in PERFCNTR_CONFIG > + * ioctl. > + */ > +struct drm_msm_perfcntr_config { > + __u32 flags; /* bitmask of MSM_PERFCNTR_x */ > + __u32 nr_groups; /* # of entries in groups array */ > + __u64 groups; /* pointer to array of drm_msm_perfcntr_group */ > + __u64 period; /* sampling period in ns */ > + __u32 bufsz_shift; /* sample buffer size in bytes is 1<<bufsz_shift */ > + __u32 group_stride; /* sizeof(struct drm_msm_perfcntr_group) */ > +}; > + > #define DRM_MSM_GET_PARAM 0x00 > #define DRM_MSM_SET_PARAM 0x01 > #define DRM_MSM_GEM_NEW 0x02 > @@ -384,6 +552,8 @@ struct drm_msm_submitqueue_query { > #define DRM_MSM_SUBMITQUEUE_NEW 0x0A > #define DRM_MSM_SUBMITQUEUE_CLOSE 0x0B > #define DRM_MSM_SUBMITQUEUE_QUERY 0x0C > +#define DRM_MSM_VM_BIND 0x0D > +#define DRM_MSM_PERFCNTR_CONFIG 0x0E > > #define DRM_IOCTL_MSM_GET_PARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GET_PARAM, struct drm_msm_param) > #define DRM_IOCTL_MSM_SET_PARAM DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SET_PARAM, struct drm_msm_param) > @@ -397,6 +567,8 @@ struct drm_msm_submitqueue_query { > #define DRM_IOCTL_MSM_SUBMITQUEUE_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_NEW, struct drm_msm_submitqueue) > #define DRM_IOCTL_MSM_SUBMITQUEUE_CLOSE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_CLOSE, __u32) > #define DRM_IOCTL_MSM_SUBMITQUEUE_QUERY DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_QUERY, struct drm_msm_submitqueue_query) > +#define DRM_IOCTL_MSM_VM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_VM_BIND, struct drm_msm_vm_bind) > +#define DRM_IOCTL_MSM_PERFCNTR_CONFIG DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_PERFCNTR_CONFIG, struct drm_msm_perfcntr_config) > > #if defined(__cplusplus) > } > -- > 2.55.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] drm-uapi: Sync msm_drm.h 2026-07-08 16:12 ` [PATCH v2 1/2] drm-uapi: Sync msm_drm.h Rob Clark 2026-07-10 9:52 ` Kamil Konieczny @ 2026-07-10 10:12 ` Kamil Konieczny 1 sibling, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2026-07-10 10:12 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev, freedreno, linux-arm-msm Hi Rob, On 2026-07-08 at 09:12:23 -0700, Rob Clark wrote: > Pull in updated UABI header with PERFCNTR_CONFIG ioctl. Sync with: > > commit 44c460d2cc8b87c08360fe60f861660c8045ef90 > Merge: 9bb8af2770b7 9a967125427e > Author: Dave Airlie <airlied@redhat.com> > > Merge tag 'drm-msm-next-2026-05-30' of https://gitlab.freedesktop.org/drm/msm into drm-next > > Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com> > Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41158> Sorry, I sent acked-by but I wanted to write r-b instead, so Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil PS. series is merged. > --- > include/drm-uapi/msm_drm.h | 204 ++++++++++++++++++++++++++++++++++--- > 1 file changed, 188 insertions(+), 16 deletions(-) > > diff --git a/include/drm-uapi/msm_drm.h b/include/drm-uapi/msm_drm.h > index 2377147b6af0..7f2e594be4eb 100644 > --- a/include/drm-uapi/msm_drm.h > +++ b/include/drm-uapi/msm_drm.h > @@ -90,6 +90,34 @@ struct drm_msm_timespec { > #define MSM_PARAM_RAYTRACING 0x11 /* RO */ > #define MSM_PARAM_UBWC_SWIZZLE 0x12 /* RO */ > #define MSM_PARAM_MACROTILE_MODE 0x13 /* RO */ > +#define MSM_PARAM_UCHE_TRAP_BASE 0x14 /* RO */ > +/* PRR (Partially Resident Region) is required for sparse residency: */ > +#define MSM_PARAM_HAS_PRR 0x15 /* RO */ > +/* MSM_PARAM_EN_VM_BIND is set to 1 to enable VM_BIND ops. > + * > + * With VM_BIND enabled, userspace is required to allocate iova and use the > + * VM_BIND ops for map/unmap ioctls. MSM_INFO_SET_IOVA and MSM_INFO_GET_IOVA > + * will be rejected. (The latter does not have a sensible meaning when a BO > + * can have multiple and/or partial mappings.) > + * > + * With VM_BIND enabled, userspace does not include a submit_bo table in the > + * SUBMIT ioctl (this will be rejected), the resident set is determined by > + * the the VM_BIND ops. > + * > + * Enabling VM_BIND will fail on devices which do not have per-process pgtables. > + * And it is not allowed to disable VM_BIND once it has been enabled. > + * > + * Enabling VM_BIND should be done (attempted) prior to allocating any BOs or > + * submitqueues of type MSM_SUBMITQUEUE_VM_BIND. > + * > + * Relatedly, when VM_BIND mode is enabled, the kernel will not try to recover > + * from GPU faults or failed async VM_BIND ops, in particular because it is > + * difficult to communicate to userspace which op failed so that userspace > + * could rewind and try again. When the VM is marked unusable, the SUBMIT > + * ioctl will throw -EPIPE. > + */ > +#define MSM_PARAM_EN_VM_BIND 0x16 /* WO, once */ > +#define MSM_PARAM_AQE 0x17 /* RO */ > > /* For backwards compat. The original support for preemption was based on > * a single ring per priority level so # of priority levels equals the # > @@ -113,6 +141,19 @@ struct drm_msm_param { > > #define MSM_BO_SCANOUT 0x00000001 /* scanout capable */ > #define MSM_BO_GPU_READONLY 0x00000002 > +/* Private buffers do not need to be explicitly listed in the SUBMIT > + * ioctl, unless referenced by a drm_msm_gem_submit_cmd. Private > + * buffers may NOT be imported/exported or used for scanout (or any > + * other situation where buffers can be indefinitely pinned, but > + * cases other than scanout are all kernel owned BOs which are not > + * visible to userspace). > + * > + * In exchange for those constraints, all private BOs associated with > + * a single context (drm_file) share a single dma_resv, and if there > + * has been no eviction since the last submit, there are no per-BO > + * bookeeping to do, significantly cutting the SUBMIT overhead. > + */ > +#define MSM_BO_NO_SHARE 0x00000004 > #define MSM_BO_CACHE_MASK 0x000f0000 > /* cache modes */ > #define MSM_BO_CACHED 0x00010000 > @@ -122,6 +163,7 @@ struct drm_msm_param { > > #define MSM_BO_FLAGS (MSM_BO_SCANOUT | \ > MSM_BO_GPU_READONLY | \ > + MSM_BO_NO_SHARE | \ > MSM_BO_CACHE_MASK) > > struct drm_msm_gem_new { > @@ -179,6 +221,17 @@ struct drm_msm_gem_cpu_fini { > * Cmdstream Submission: > */ > > +#define MSM_SYNCOBJ_RESET 0x00000001 /* Reset syncobj after wait. */ > +#define MSM_SYNCOBJ_FLAGS ( \ > + MSM_SYNCOBJ_RESET | \ > + 0) > + > +struct drm_msm_syncobj { > + __u32 handle; /* in, syncobj handle. */ > + __u32 flags; /* in, from MSM_SUBMIT_SYNCOBJ_FLAGS */ > + __u64 point; /* in, timepoint for timeline syncobjs. */ > +}; > + > /* The value written into the cmdstream is logically: > * > * ((relocbuf->gpuaddr + reloc_offset) << shift) | or > @@ -220,7 +273,10 @@ struct drm_msm_gem_submit_cmd { > __u32 size; /* in, cmdstream size */ > __u32 pad; > __u32 nr_relocs; /* in, number of submit_reloc's */ > - __u64 relocs; /* in, ptr to array of submit_reloc's */ > + union { > + __u64 relocs; /* in, ptr to array of submit_reloc's */ > + __u64 iova; /* cmdstream address (for VM_BIND contexts) */ > + }; > }; > > /* Each buffer referenced elsewhere in the cmdstream submit (ie. the > @@ -268,17 +324,6 @@ struct drm_msm_gem_submit_bo { > MSM_SUBMIT_FENCE_SN_IN | \ > 0) > > -#define MSM_SUBMIT_SYNCOBJ_RESET 0x00000001 /* Reset syncobj after wait. */ > -#define MSM_SUBMIT_SYNCOBJ_FLAGS ( \ > - MSM_SUBMIT_SYNCOBJ_RESET | \ > - 0) > - > -struct drm_msm_gem_submit_syncobj { > - __u32 handle; /* in, syncobj handle. */ > - __u32 flags; /* in, from MSM_SUBMIT_SYNCOBJ_FLAGS */ > - __u64 point; /* in, timepoint for timeline syncobjs. */ > -}; > - > /* Each cmdstream submit consists of a table of buffers involved, and > * one or more cmdstream buffers. This allows for conditional execution > * (context-restore), and IB buffers needed for per tile/bin draw cmds. > @@ -292,13 +337,80 @@ struct drm_msm_gem_submit { > __u64 cmds; /* in, ptr to array of submit_cmd's */ > __s32 fence_fd; /* in/out fence fd (see MSM_SUBMIT_FENCE_FD_IN/OUT) */ > __u32 queueid; /* in, submitqueue id */ > - __u64 in_syncobjs; /* in, ptr to array of drm_msm_gem_submit_syncobj */ > - __u64 out_syncobjs; /* in, ptr to array of drm_msm_gem_submit_syncobj */ > + __u64 in_syncobjs; /* in, ptr to array of drm_msm_syncobj */ > + __u64 out_syncobjs; /* in, ptr to array of drm_msm_syncobj */ > __u32 nr_in_syncobjs; /* in, number of entries in in_syncobj */ > __u32 nr_out_syncobjs; /* in, number of entries in out_syncobj. */ > __u32 syncobj_stride; /* in, stride of syncobj arrays. */ > __u32 pad; /*in, reserved for future use, always 0. */ > +}; > + > +#define MSM_VM_BIND_OP_UNMAP 0 > +#define MSM_VM_BIND_OP_MAP 1 > +#define MSM_VM_BIND_OP_MAP_NULL 2 > > +#define MSM_VM_BIND_OP_DUMP 1 > +#define MSM_VM_BIND_OP_FLAGS ( \ > + MSM_VM_BIND_OP_DUMP | \ > + 0) > + > +/** > + * struct drm_msm_vm_bind_op - bind/unbind op to run > + */ > +struct drm_msm_vm_bind_op { > + /** @op: one of MSM_VM_BIND_OP_x */ > + __u32 op; > + /** @handle: GEM object handle, MBZ for UNMAP or MAP_NULL */ > + __u32 handle; > + /** @obj_offset: Offset into GEM object, MBZ for UNMAP or MAP_NULL */ > + __u64 obj_offset; > + /** @iova: Address to operate on */ > + __u64 iova; > + /** @range: Number of bites to to map/unmap */ > + __u64 range; > + /** @flags: Bitmask of MSM_VM_BIND_OP_FLAG_x */ > + __u32 flags; > + /** @pad: MBZ */ > + __u32 pad; > +}; > + > +#define MSM_VM_BIND_FENCE_FD_IN 0x00000001 > +#define MSM_VM_BIND_FENCE_FD_OUT 0x00000002 > +#define MSM_VM_BIND_FLAGS ( \ > + MSM_VM_BIND_FENCE_FD_IN | \ > + MSM_VM_BIND_FENCE_FD_OUT | \ > + 0) > + > +/** > + * struct drm_msm_vm_bind - Input of &DRM_IOCTL_MSM_VM_BIND > + */ > +struct drm_msm_vm_bind { > + /** @flags: in, bitmask of MSM_VM_BIND_x */ > + __u32 flags; > + /** @nr_ops: the number of bind ops in this ioctl */ > + __u32 nr_ops; > + /** @fence_fd: in/out fence fd (see MSM_VM_BIND_FENCE_FD_IN/OUT) */ > + __s32 fence_fd; > + /** @queue_id: in, submitqueue id */ > + __u32 queue_id; > + /** @in_syncobjs: in, ptr to array of drm_msm_gem_syncobj */ > + __u64 in_syncobjs; > + /** @out_syncobjs: in, ptr to array of drm_msm_gem_syncobj */ > + __u64 out_syncobjs; > + /** @nr_in_syncobjs: in, number of entries in in_syncobj */ > + __u32 nr_in_syncobjs; > + /** @nr_out_syncobjs: in, number of entries in out_syncobj */ > + __u32 nr_out_syncobjs; > + /** @syncobj_stride: in, stride of syncobj arrays */ > + __u32 syncobj_stride; > + /** @op_stride: sizeof each struct drm_msm_vm_bind_op in @ops */ > + __u32 op_stride; > + union { > + /** @op: used if num_ops == 1 */ > + struct drm_msm_vm_bind_op op; > + /** @ops: userptr to array of drm_msm_vm_bind_op if num_ops > 1 */ > + __u64 ops; > + }; > }; > > #define MSM_WAIT_FENCE_BOOST 0x00000001 > @@ -344,10 +456,20 @@ struct drm_msm_gem_madvise { > /* > * Draw queues allow the user to set specific submission parameter. Command > * submissions specify a specific submitqueue to use. ID 0 is reserved for > - * backwards compatibility as a "default" submitqueue > + * backwards compatibility as a "default" submitqueue. > + * > + * Because VM_BIND async updates happen on the CPU, they must run on a > + * virtual queue created with the flag MSM_SUBMITQUEUE_VM_BIND. If we had > + * a way to do pgtable updates on the GPU, we could drop this restriction. > */ > > -#define MSM_SUBMITQUEUE_FLAGS (0) > +#define MSM_SUBMITQUEUE_ALLOW_PREEMPT 0x00000001 > +#define MSM_SUBMITQUEUE_VM_BIND 0x00000002 /* virtual queue for VM_BIND ops */ > + > +#define MSM_SUBMITQUEUE_FLAGS ( \ > + MSM_SUBMITQUEUE_ALLOW_PREEMPT | \ > + MSM_SUBMITQUEUE_VM_BIND | \ > + 0) > > /* > * The submitqueue priority should be between 0 and MSM_PARAM_PRIORITIES-1, > @@ -369,6 +491,52 @@ struct drm_msm_submitqueue_query { > __u32 pad; > }; > > +#define MSM_PERFCNTR_STREAM 0x00000001 > +#define MSM_PERFCNTR_UPDATE 0x00000002 > +#define MSM_PERFCNTR_FLAGS ( \ > + MSM_PERFCNTR_STREAM | \ > + MSM_PERFCNTR_UPDATE | \ > + 0) > + > +struct drm_msm_perfcntr_group { > + char group_name[16]; > + __u32 nr_countables; > + __u32 pad; /* mbz */ > + __u64 countables; /* pointer to an array of nr_countables u32 */ > +}; > + > +/* > + * Note, for MSM_PERFCNTR_STREAM, the ioctl returns an fd to read recorded > + * counters. This only works because the ioctl is DRM_IOW(), if we returned > + * a out param in the ioctl struct the copy_to_user() (in drm_ioctl()) > + * could fault, causing us to leak the fd. > + * > + * If the ioctl returns with error E2BIG, that means more counters/countables > + * are requested than are currently available. If MSM_PERFCNTR_UPDATE flag > + * is set, drm_msm_perfcntr_group::nr_countables will be updated to return > + * the actual # of counters available. > + * > + * The data read from the has the following format for each sampling period: > + * > + * uint64_t timestamp; // CP_ALWAYS_ON_COUNTER captured at sample time > + * uint32_t seqno; // increments by 1 each period, reset to 0 on discontinuity > + * uint32_t mbz; // pad out counters to 64b > + * struct { > + * uint64_t counter[nr_countables]; > + * } groups[nr_groups]; > + * > + * The ordering of groups and counters matches the order in PERFCNTR_CONFIG > + * ioctl. > + */ > +struct drm_msm_perfcntr_config { > + __u32 flags; /* bitmask of MSM_PERFCNTR_x */ > + __u32 nr_groups; /* # of entries in groups array */ > + __u64 groups; /* pointer to array of drm_msm_perfcntr_group */ > + __u64 period; /* sampling period in ns */ > + __u32 bufsz_shift; /* sample buffer size in bytes is 1<<bufsz_shift */ > + __u32 group_stride; /* sizeof(struct drm_msm_perfcntr_group) */ > +}; > + > #define DRM_MSM_GET_PARAM 0x00 > #define DRM_MSM_SET_PARAM 0x01 > #define DRM_MSM_GEM_NEW 0x02 > @@ -384,6 +552,8 @@ struct drm_msm_submitqueue_query { > #define DRM_MSM_SUBMITQUEUE_NEW 0x0A > #define DRM_MSM_SUBMITQUEUE_CLOSE 0x0B > #define DRM_MSM_SUBMITQUEUE_QUERY 0x0C > +#define DRM_MSM_VM_BIND 0x0D > +#define DRM_MSM_PERFCNTR_CONFIG 0x0E > > #define DRM_IOCTL_MSM_GET_PARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GET_PARAM, struct drm_msm_param) > #define DRM_IOCTL_MSM_SET_PARAM DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SET_PARAM, struct drm_msm_param) > @@ -397,6 +567,8 @@ struct drm_msm_submitqueue_query { > #define DRM_IOCTL_MSM_SUBMITQUEUE_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_NEW, struct drm_msm_submitqueue) > #define DRM_IOCTL_MSM_SUBMITQUEUE_CLOSE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_CLOSE, __u32) > #define DRM_IOCTL_MSM_SUBMITQUEUE_QUERY DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_QUERY, struct drm_msm_submitqueue_query) > +#define DRM_IOCTL_MSM_VM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_VM_BIND, struct drm_msm_vm_bind) > +#define DRM_IOCTL_MSM_PERFCNTR_CONFIG DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_PERFCNTR_CONFIG, struct drm_msm_perfcntr_config) > > #if defined(__cplusplus) > } > -- > 2.55.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 2/2] tests/msm: Add perfcntrs test 2026-07-08 16:12 [PATCH v2 0/2] tests/msm: Add PERFCNTR_CONFIG ioctl Rob Clark 2026-07-08 16:12 ` [PATCH v2 1/2] drm-uapi: Sync msm_drm.h Rob Clark @ 2026-07-08 16:12 ` Rob Clark 2026-07-10 10:06 ` Kamil Konieczny 2026-07-08 17:54 ` ✗ Xe.CI.BAT: failure for tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: Rob Clark @ 2026-07-08 16:12 UTC (permalink / raw) To: igt-dev; +Cc: freedreno, linux-arm-msm, Rob Clark Add tests for new PERFCNTR_CONFIG ioctl. Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com> --- tests/msm/meson.build | 1 + tests/msm/msm_perfcntrs.c | 196 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 197 insertions(+) create mode 100644 tests/msm/msm_perfcntrs.c diff --git a/tests/msm/meson.build b/tests/msm/meson.build index 2ba5b4db2279..0a7f35662c03 100644 --- a/tests/msm/meson.build +++ b/tests/msm/meson.build @@ -1,6 +1,7 @@ msm_progs = [ 'msm_bo', 'msm_mapping', + 'msm_perfcntrs', 'msm_recovery', 'msm_shrink', 'msm_submit', diff --git a/tests/msm/msm_perfcntrs.c b/tests/msm/msm_perfcntrs.c new file mode 100644 index 000000000000..42f77456939e --- /dev/null +++ b/tests/msm/msm_perfcntrs.c @@ -0,0 +1,196 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries. + */ + +#include <errno.h> + +#include "igt.h" +#include "igt_core.h" +#include "igt_msm.h" +#include "msm_drm.h" + +static int +__configure_counters(struct msm_device *dev, bool global, unsigned nr_groups, + const char **groups, unsigned count) +{ + uint32_t countables[count]; + struct drm_msm_perfcntr_group group[nr_groups]; + struct drm_msm_perfcntr_config req = { + .flags = global ? MSM_PERFCNTR_STREAM : 0, + .nr_groups = nr_groups, + .groups = VOID2U64(group), + .period = global ? NSEC_PER_SEC : 0, + .bufsz_shift = global ? 10 : 0, + .group_stride = sizeof(struct drm_msm_perfcntr_group), + }; + + memset(group, 0, sizeof(group)); + /* selecting countable 0 for each counter is fine: */ + memset(countables, 0, sizeof(countables)); + + for (unsigned i = 0; i < nr_groups; i++) { + strcpy(group[i].group_name, groups[i]); + group[i].nr_countables = count; + group[i].countables = global ? VOID2U64(countables) : 0; + } + + return drmIoctl(dev->fd, DRM_IOCTL_MSM_PERFCNTR_CONFIG, &req); +} + +static int +configure_counters(struct msm_device *dev, bool global, unsigned count) +{ + /* CP group is present on all gens.. SP would be another good candidate */ + const char *groups[] = {"CP"}; + return __configure_counters(dev, global, 1, groups, count); +} + +static unsigned +get_available_counters(struct msm_device *dev, bool global) +{ + for (unsigned i = 0; ; i++) { + int ret = configure_counters(dev, global, i + 1); + igt_warn("%u: ret=%d\n", i, ret); + if (ret < 0) + return i; + if (global) + close(ret); + } +} + + +int igt_main() +{ + /* device instance for global counter collection: */ + struct msm_device *dev_global = NULL; + /* device instances for local counter reservation: */ + struct msm_device *dev_local_1 = NULL; + struct msm_device *dev_local_2 = NULL; + unsigned num_counters; + + igt_fixture() { + dev_global = igt_msm_dev_open(); + dev_local_1 = igt_msm_dev_open(); + dev_local_2 = igt_msm_dev_open(); + + num_counters = get_available_counters(dev_global, true); + igt_info("num_counters=%u\n", num_counters); + } + + igt_describe("Multiple process should be able to reserve the same " + "counters for local counter collection"); + igt_subtest("perfcntrs-local-coexist") { + igt_require(num_counters > 0); + + igt_assert_eq(0, configure_counters(dev_local_1, false, num_counters)); + igt_assert_eq(0, configure_counters(dev_local_2, false, num_counters)); + + /* release the reservations: */ + configure_counters(dev_local_1, false, 0); + configure_counters(dev_local_2, false, 0); + } + + igt_describe("non-conflict global and local counters"); + igt_subtest("perfcntrs-non-conflict-global-local") { + int num_local = num_counters - 2; + int stream_fd; + + igt_require(num_counters > 2); + + igt_assert_eq(0, configure_counters(dev_local_1, false, num_local)); + igt_assert_eq(0, configure_counters(dev_local_2, false, num_local)); + + stream_fd = configure_counters(dev_global, true, 2); + igt_assert_lte(0, stream_fd); + close(stream_fd); + + /* release the reservations: */ + configure_counters(dev_local_1, false, 0); + configure_counters(dev_local_2, false, 0); + } + + igt_describe("conflict, local first"); + igt_subtest("conflict-local-first") { + int num_local = num_counters - 1; + int stream_fd; + + igt_require(num_counters > 2); + + igt_assert_eq(0, configure_counters(dev_local_1, false, num_local)); + igt_assert_eq(0, configure_counters(dev_local_2, false, num_local)); + + stream_fd = configure_counters(dev_global, true, 2); + igt_assert_lt(stream_fd, 0); + + /* release the reservation for dev_local_1: */ + configure_counters(dev_local_1, false, 0); + + /* should still fail: */ + stream_fd = configure_counters(dev_global, true, 2); + igt_assert_lt(stream_fd, 0); + + /* release the reservation for dev_local_2: */ + configure_counters(dev_local_2, false, 0); + + /* now should succeed: */ + stream_fd = configure_counters(dev_global, true, 2); + igt_assert_lte(0, stream_fd); + close(stream_fd); + } + + igt_describe("conflict, global first"); + igt_subtest("conflict-global-first") { + int num_local = num_counters - 1; + int stream_fd; + + igt_require(num_counters > 2); + + stream_fd = configure_counters(dev_global, true, 2); + igt_assert_lte(0, stream_fd); + + /* Should fail because two counters already allocated for global collection: */ + igt_assert_neq(0, configure_counters(dev_local_1, false, num_local)); + + /* release global counters: */ + close(stream_fd); + + /* Now reservation should succeed: */ + igt_assert_eq(0, configure_counters(dev_local_1, false, num_local)); + + /* release the reservations: */ + configure_counters(dev_local_1, false, 0); + } + + igt_describe("multiple groups"); + igt_subtest("multiple-groups") { + const char *groups[] = {"CP", "SP"}; + + igt_require(num_counters > 0); + + igt_assert_eq(0, + __configure_counters(dev_local_1, false, ARRAY_SIZE(groups), groups, 1)); + + /* release the reservations: */ + configure_counters(dev_local_1, false, 0); + } + + igt_describe("duplicate groups"); + igt_subtest("duplicate-groups") { + const char *groups[] = {"CP", "CP"}; + + igt_require(num_counters > 0); + + igt_assert_neq(0, + __configure_counters(dev_local_1, false, ARRAY_SIZE(groups), groups, 1)); + + /* release the reservations: */ + configure_counters(dev_local_1, false, 0); + } + + igt_fixture() { + igt_msm_dev_close(dev_global); + igt_msm_dev_close(dev_local_1); + igt_msm_dev_close(dev_local_2); + } +} -- 2.55.0 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/2] tests/msm: Add perfcntrs test 2026-07-08 16:12 ` [PATCH v2 2/2] tests/msm: Add perfcntrs test Rob Clark @ 2026-07-10 10:06 ` Kamil Konieczny 0 siblings, 0 replies; 10+ messages in thread From: Kamil Konieczny @ 2026-07-10 10:06 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev, freedreno, linux-arm-msm Hi Rob, On 2026-07-08 at 09:12:24 -0700, Rob Clark wrote: > Add tests for new PERFCNTR_CONFIG ioctl. > > Signed-off-by: Rob Clark <rob.clark@oss.qualcomm.com> > --- > tests/msm/meson.build | 1 + > tests/msm/msm_perfcntrs.c | 196 ++++++++++++++++++++++++++++++++++++++ > 2 files changed, 197 insertions(+) > create mode 100644 tests/msm/msm_perfcntrs.c > > diff --git a/tests/msm/meson.build b/tests/msm/meson.build > index 2ba5b4db2279..0a7f35662c03 100644 > --- a/tests/msm/meson.build > +++ b/tests/msm/meson.build > @@ -1,6 +1,7 @@ > msm_progs = [ > 'msm_bo', > 'msm_mapping', > + 'msm_perfcntrs', > 'msm_recovery', > 'msm_shrink', > 'msm_submit', > diff --git a/tests/msm/msm_perfcntrs.c b/tests/msm/msm_perfcntrs.c > new file mode 100644 > index 000000000000..42f77456939e > --- /dev/null > +++ b/tests/msm/msm_perfcntrs.c > @@ -0,0 +1,196 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries. > + */ > + > +#include <errno.h> > + > +#include "igt.h" > +#include "igt_core.h" > +#include "igt_msm.h" > +#include "msm_drm.h" > + > +static int > +__configure_counters(struct msm_device *dev, bool global, unsigned nr_groups, > + const char **groups, unsigned count) > +{ > + uint32_t countables[count]; > + struct drm_msm_perfcntr_group group[nr_groups]; > + struct drm_msm_perfcntr_config req = { > + .flags = global ? MSM_PERFCNTR_STREAM : 0, > + .nr_groups = nr_groups, > + .groups = VOID2U64(group), > + .period = global ? NSEC_PER_SEC : 0, > + .bufsz_shift = global ? 10 : 0, > + .group_stride = sizeof(struct drm_msm_perfcntr_group), > + }; > + > + memset(group, 0, sizeof(group)); > + /* selecting countable 0 for each counter is fine: */ > + memset(countables, 0, sizeof(countables)); > + > + for (unsigned i = 0; i < nr_groups; i++) { checkpatch suggest using 'unsigned int'. > + strcpy(group[i].group_name, groups[i]); > + group[i].nr_countables = count; > + group[i].countables = global ? VOID2U64(countables) : 0; > + } > + > + return drmIoctl(dev->fd, DRM_IOCTL_MSM_PERFCNTR_CONFIG, &req); > +} > + > +static int > +configure_counters(struct msm_device *dev, bool global, unsigned count) > +{ > + /* CP group is present on all gens.. SP would be another good candidate */ > + const char *groups[] = {"CP"}; > + return __configure_counters(dev, global, 1, groups, count); > +} > + > +static unsigned > +get_available_counters(struct msm_device *dev, bool global) > +{ > + for (unsigned i = 0; ; i++) { > + int ret = configure_counters(dev, global, i + 1); > + igt_warn("%u: ret=%d\n", i, ret); Why warn here? It will make your test fail, imho you should use igt_info() instead. > + if (ret < 0) > + return i; and this imho: if (ret < 0) { igt_warn("Unexpected error\n"); return i; } > + if (global) > + close(ret); > + } > +} > + > + One newline is enough. I will merge this as is with whitespace/style fixes with the help of checkpatch.pl --fix-inplace. If you want improve test with above s/warn/info/ please send a fix. LGTM Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > +int igt_main() > +{ > + /* device instance for global counter collection: */ > + struct msm_device *dev_global = NULL; > + /* device instances for local counter reservation: */ > + struct msm_device *dev_local_1 = NULL; > + struct msm_device *dev_local_2 = NULL; > + unsigned num_counters; > + > + igt_fixture() { > + dev_global = igt_msm_dev_open(); > + dev_local_1 = igt_msm_dev_open(); > + dev_local_2 = igt_msm_dev_open(); > + > + num_counters = get_available_counters(dev_global, true); > + igt_info("num_counters=%u\n", num_counters); > + } > + > + igt_describe("Multiple process should be able to reserve the same " > + "counters for local counter collection"); > + igt_subtest("perfcntrs-local-coexist") { > + igt_require(num_counters > 0); > + > + igt_assert_eq(0, configure_counters(dev_local_1, false, num_counters)); > + igt_assert_eq(0, configure_counters(dev_local_2, false, num_counters)); > + > + /* release the reservations: */ > + configure_counters(dev_local_1, false, 0); > + configure_counters(dev_local_2, false, 0); > + } > + > + igt_describe("non-conflict global and local counters"); > + igt_subtest("perfcntrs-non-conflict-global-local") { > + int num_local = num_counters - 2; > + int stream_fd; > + > + igt_require(num_counters > 2); > + > + igt_assert_eq(0, configure_counters(dev_local_1, false, num_local)); > + igt_assert_eq(0, configure_counters(dev_local_2, false, num_local)); > + > + stream_fd = configure_counters(dev_global, true, 2); > + igt_assert_lte(0, stream_fd); > + close(stream_fd); > + > + /* release the reservations: */ > + configure_counters(dev_local_1, false, 0); > + configure_counters(dev_local_2, false, 0); > + } > + > + igt_describe("conflict, local first"); > + igt_subtest("conflict-local-first") { > + int num_local = num_counters - 1; > + int stream_fd; > + > + igt_require(num_counters > 2); > + > + igt_assert_eq(0, configure_counters(dev_local_1, false, num_local)); > + igt_assert_eq(0, configure_counters(dev_local_2, false, num_local)); > + > + stream_fd = configure_counters(dev_global, true, 2); > + igt_assert_lt(stream_fd, 0); > + > + /* release the reservation for dev_local_1: */ > + configure_counters(dev_local_1, false, 0); > + > + /* should still fail: */ > + stream_fd = configure_counters(dev_global, true, 2); > + igt_assert_lt(stream_fd, 0); > + > + /* release the reservation for dev_local_2: */ > + configure_counters(dev_local_2, false, 0); > + > + /* now should succeed: */ > + stream_fd = configure_counters(dev_global, true, 2); > + igt_assert_lte(0, stream_fd); > + close(stream_fd); > + } > + > + igt_describe("conflict, global first"); > + igt_subtest("conflict-global-first") { > + int num_local = num_counters - 1; > + int stream_fd; > + > + igt_require(num_counters > 2); > + > + stream_fd = configure_counters(dev_global, true, 2); > + igt_assert_lte(0, stream_fd); > + > + /* Should fail because two counters already allocated for global collection: */ > + igt_assert_neq(0, configure_counters(dev_local_1, false, num_local)); > + > + /* release global counters: */ > + close(stream_fd); > + > + /* Now reservation should succeed: */ > + igt_assert_eq(0, configure_counters(dev_local_1, false, num_local)); > + > + /* release the reservations: */ > + configure_counters(dev_local_1, false, 0); > + } > + > + igt_describe("multiple groups"); > + igt_subtest("multiple-groups") { > + const char *groups[] = {"CP", "SP"}; > + > + igt_require(num_counters > 0); > + > + igt_assert_eq(0, > + __configure_counters(dev_local_1, false, ARRAY_SIZE(groups), groups, 1)); > + > + /* release the reservations: */ > + configure_counters(dev_local_1, false, 0); > + } > + > + igt_describe("duplicate groups"); > + igt_subtest("duplicate-groups") { > + const char *groups[] = {"CP", "CP"}; > + > + igt_require(num_counters > 0); > + > + igt_assert_neq(0, > + __configure_counters(dev_local_1, false, ARRAY_SIZE(groups), groups, 1)); > + > + /* release the reservations: */ > + configure_counters(dev_local_1, false, 0); > + } > + > + igt_fixture() { > + igt_msm_dev_close(dev_global); > + igt_msm_dev_close(dev_local_1); > + igt_msm_dev_close(dev_local_2); > + } > +} > -- > 2.55.0 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.BAT: failure for tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) 2026-07-08 16:12 [PATCH v2 0/2] tests/msm: Add PERFCNTR_CONFIG ioctl Rob Clark 2026-07-08 16:12 ` [PATCH v2 1/2] drm-uapi: Sync msm_drm.h Rob Clark 2026-07-08 16:12 ` [PATCH v2 2/2] tests/msm: Add perfcntrs test Rob Clark @ 2026-07-08 17:54 ` Patchwork 2026-07-08 18:10 ` ✓ i915.CI.BAT: success " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-07-08 17:54 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5910 bytes --] == Series Details == Series: tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) URL : https://patchwork.freedesktop.org/series/169766/ State : failure == Summary == CI Bug Log - changes from XEIGT_8993_BAT -> XEIGTPW_15492_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15492_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15492_BAT, 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 (12 -> 13) ------------------------------ Additional (1): bat-bmg-2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15492_BAT: ### IGT changes ### #### Possible regressions #### * igt@runner@aborted: - bat-ptl-2: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-ptl-2/igt@runner@aborted.html Known issues ------------ Here are the changes found in XEIGTPW_15492_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@write: - bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2134]) +4 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2233]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2482]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_frontbuffer_tracking@basic: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_exec_multi_queue@priority: - bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#8364]) +13 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@xe_exec_multi_queue@priority.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#2229]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_dma_buf: - bat-bmg-vm: [PASS][10] -> [ABORT][11] ([Intel XE#8007] / [Intel XE#8023]) +1 other test abort [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-vm/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-2: NOTRUN -> [SKIP][12] ([Intel XE#1420] / [Intel XE#7590]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: NOTRUN -> [SKIP][13] ([Intel XE#2245] / [Intel XE#7590]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-2: NOTRUN -> [SKIP][14] ([Intel XE#2236] / [Intel XE#7590]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8023 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 Build changes ------------- * IGT: IGT_8993 -> IGTPW_15492 IGTPW_15492: 15492 IGT_8993: 8993 xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d: d2b771941e0c8aec7b6648b0c47d81161136944d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/index.html [-- Attachment #2: Type: text/html, Size: 6871 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) 2026-07-08 16:12 [PATCH v2 0/2] tests/msm: Add PERFCNTR_CONFIG ioctl Rob Clark ` (2 preceding siblings ...) 2026-07-08 17:54 ` ✗ Xe.CI.BAT: failure for tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) Patchwork @ 2026-07-08 18:10 ` Patchwork 2026-07-08 21:09 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-09 17:00 ` ✗ i915.CI.Full: failure " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-07-08 18:10 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1434 bytes --] == Series Details == Series: tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) URL : https://patchwork.freedesktop.org/series/169766/ State : success == Summary == CI Bug Log - changes from IGT_8993 -> IGTPW_15492 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_15492 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_hdmi_inject@inject-audio: - fi-tgl-1115g4: [FAIL][1] ([i915#16115]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html [i915#16115]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16115 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8993 -> IGTPW_15492 CI-20190529: 20190529 CI_DRM_18787: d2b771941e0c8aec7b6648b0c47d81161136944d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15492: 15492 IGT_8993: 8993 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/index.html [-- Attachment #2: Type: text/html, Size: 2020 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.FULL: success for tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) 2026-07-08 16:12 [PATCH v2 0/2] tests/msm: Add PERFCNTR_CONFIG ioctl Rob Clark ` (3 preceding siblings ...) 2026-07-08 18:10 ` ✓ i915.CI.BAT: success " Patchwork @ 2026-07-08 21:09 ` Patchwork 2026-07-09 17:00 ` ✗ i915.CI.Full: failure " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-07-08 21:09 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 24063 bytes --] == Series Details == Series: tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) URL : https://patchwork.freedesktop.org/series/169766/ State : success == Summary == CI Bug Log - changes from XEIGT_8993_FULL -> XEIGTPW_15492_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15492_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-3/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#7059] / [Intel XE#7085]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +5 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_bw@linear-tiling-1-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#367]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +7 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#3432]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-3/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2252]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#6974]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-10/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7642]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2320]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2321] / [Intel XE#7355]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_dsc@dsc-basic-ultrajoiner: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#8265]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-9/igt@kms_dsc@dsc-basic-ultrajoiner.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [PASS][14] -> [FAIL][15] ([Intel XE#3321]) +1 other test fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-lnl: [PASS][16] -> [FAIL][17] ([Intel XE#301]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7179]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2311]) +33 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-6/igt@kms_frontbuffer_tracking@drrshdr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#4141]) +6 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2313]) +34 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7061]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7308]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#1503]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-8/igt@kms_hdr@invalid-hdr.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-3/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4298] / [Intel XE#5873]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7283]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-7/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_pm_dc@dc3co-framedrop-check@psr2: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#8396]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_pm_dc@dc3co-framedrop-check@psr2.html * igt@kms_pm_dc@dc3co-vpb-simulation@pr: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#8395]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation@pr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2499]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1489]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-1/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2234]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2330] / [Intel XE#5813]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#3904] / [Intel XE#7342]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_sharpness_filter@invalid-filter-with-scaler: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#6503]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaler.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#6599]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-10/igt@xe_compute@ccs-mode-basic.html * igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd: - shard-bmg: [PASS][40] -> [ABORT][41] ([Intel XE#6652] / [Intel XE#7893] / [Intel XE#8300]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-8/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-multi-queue-rebind: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#8374]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-rebind.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#8364]) +13 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-8/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html * igt@xe_exec_reset@cm-multi-queue-close-execqueues: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#8369]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8378]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [PASS][47] -> [ABORT][48] ([Intel XE#8007]) +1 other test abort [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_multigpu_svm@mgpu-latency-basic: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6964]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-1/igt@xe_multigpu_svm@mgpu-latency-basic.html * igt@xe_page_reclaim@boundary-split: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7793]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-4/igt@xe_page_reclaim@boundary-split.html * igt@xe_pat@l2-flush-opt-svm-pat-restrict: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7590]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-3/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2236] / [Intel XE#7590]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#4733] / [Intel XE#7417]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#944]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-4/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#6569]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-9/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0: - shard-bmg: [PASS][58] -> [FAIL][59] ([Intel XE#7992]) +1 other test fail [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0: - shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#8340]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0.html #### Possible fixes #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][62] ([Intel XE#7809]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][64] ([Intel XE#301]) -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@xe_configfs@ctx-restore-post-bb-invalid: - shard-bmg: [ABORT][66] ([Intel XE#8007]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-9/igt@xe_configfs@ctx-restore-post-bb-invalid.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-10/igt@xe_configfs@ctx-restore-post-bb-invalid.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [FAIL][68] ([Intel XE#6569]) -> [PASS][69] [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_vram@vf-access-after-resize-down: - shard-bmg: [FAIL][70] ([Intel XE#7992]) -> [PASS][71] [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-9/igt@xe_sriov_vram@vf-access-after-resize-down.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-8/igt@xe_sriov_vram@vf-access-after-resize-down.html #### Warnings #### * igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw: - shard-lnl: [SKIP][72] ([Intel XE#6312] / [Intel XE#651]) -> [ABORT][73] ([Intel XE#8007]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-pri-indfb-multidraw.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][74] ([Intel XE#3544]) -> [SKIP][75] ([Intel XE#3374] / [Intel XE#3544]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8993/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [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#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809 [Intel XE#7893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7893 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8300 [Intel XE#8340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8340 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8993 -> IGTPW_15492 IGTPW_15492: 15492 IGT_8993: 8993 xe-5368-d2b771941e0c8aec7b6648b0c47d81161136944d: d2b771941e0c8aec7b6648b0c47d81161136944d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15492/index.html [-- Attachment #2: Type: text/html, Size: 26498 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) 2026-07-08 16:12 [PATCH v2 0/2] tests/msm: Add PERFCNTR_CONFIG ioctl Rob Clark ` (4 preceding siblings ...) 2026-07-08 21:09 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-07-09 17:00 ` Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2026-07-09 17:00 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 156609 bytes --] == Series Details == Series: tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) URL : https://patchwork.freedesktop.org/series/169766/ State : failure == Summary == CI Bug Log - changes from IGT_8993_full -> IGTPW_15492_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15492_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15492_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. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15492_full: ### IGT changes ### #### Possible regressions #### * igt@i915_hangman@detector@bcs0: - shard-mtlp: [PASS][1] -> [FAIL][2] +56 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-4/igt@i915_hangman@detector@bcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@i915_hangman@detector@bcs0.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-snb: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_plane_multiple@tiling-none: - shard-mtlp: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_plane_multiple@tiling-none.html * igt@perf_pmu@busy-accuracy-2: - shard-mtlp: [PASS][6] -> [TIMEOUT][7] +1 other test timeout [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-2/igt@perf_pmu@busy-accuracy-2.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@perf_pmu@busy-accuracy-2.html * igt@syncobj_timeline@wait-all-snapshot: - shard-mtlp: [PASS][8] -> [SKIP][9] +5 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-8/igt@syncobj_timeline@wait-all-snapshot.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@syncobj_timeline@wait-all-snapshot.html * igt@sysfs_heartbeat_interval@mixed: - shard-mtlp: NOTRUN -> [TIMEOUT][10] +1 other test timeout [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed.html * igt@sysfs_heartbeat_interval@mixed@bcs0: - shard-mtlp: NOTRUN -> [DMESG-FAIL][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@bcs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: NOTRUN -> [FAIL][12] +5 other tests fail [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@vecs0.html #### Warnings #### * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: [SKIP][13] -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs: - shard-mtlp: [SKIP][15] ([i915#6095]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-mtlp: [SKIP][17] ([i915#16361]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-6/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_feature_discovery@chamelium: - shard-mtlp: [SKIP][19] ([i915#16084]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-4/igt@kms_feature_discovery@chamelium.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_feature_discovery@chamelium.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: [SKIP][21] ([i915#15991]) -> [SKIP][22] +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-modesetfrombusy: - shard-mtlp: [SKIP][23] ([i915#15989]) -> [SKIP][24] +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-modesetfrombusy.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-modesetfrombusy.html * igt@kms_pm_rpm@fences-dpms: - shard-mtlp: [SKIP][25] ([i915#4077]) -> [FAIL][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-6/igt@kms_pm_rpm@fences-dpms.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@package-g7: - shard-mtlp: [SKIP][27] ([i915#15403]) -> [FAIL][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-3/igt@kms_pm_rpm@package-g7.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_pm_rpm@package-g7.html * igt@kms_psr@fbc-psr2-suspend: - shard-mtlp: [SKIP][29] ([i915#9688]) -> [SKIP][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-2/igt@kms_psr@fbc-psr2-suspend.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_psr@fbc-psr2-suspend.html New tests --------- New tests have been introduced between IGT_8993_full and IGTPW_15492_full: ### New IGT tests (9) ### * igt@kms_flip@2x-flip-vs-fences-interruptible@ab-vga1-hdmi-a1: - Statuses : 1 pass(s) - Exec time: [30.43] s * igt@kms_legacy_colorkey@basic@pipe-a: - Statuses : 7 pass(s) - Exec time: [0.03, 0.13] s * igt@kms_legacy_colorkey@basic@pipe-b: - Statuses : 7 pass(s) - Exec time: [0.01, 0.10] s * igt@kms_legacy_colorkey@basic@pipe-c: - Statuses : 6 pass(s) - Exec time: [0.01, 0.05] s * igt@kms_legacy_colorkey@basic@pipe-d: - Statuses : 4 pass(s) - Exec time: [0.01, 0.04] s * igt@kms_legacy_colorkey@invalid-plane: - Statuses : 6 pass(s) - Exec time: [0.04, 0.14] s * igt@kms_legacy_colorkey@invalid-plane@outrange-id: - Statuses : 6 pass(s) - Exec time: [0.01, 0.04] s * igt@kms_legacy_colorkey@invalid-plane@zero-id: - Statuses : 6 pass(s) - Exec time: [0.01, 0.05] s * igt@kms_rmfb@close-fd@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [1.23] s Known issues ------------ Here are the changes found in IGTPW_15492_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#15931]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@dmabuf@all-tests.html * igt@drm_buddy@drm_buddy: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#15678]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@drm_buddy@drm_buddy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +10 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#13008]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#9323]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-13/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#9323]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-6/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#9323]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-clear@smem0: - shard-mtlp: [PASS][38] -> [INCOMPLETE][39] ([i915#16020]) +1 other test incomplete [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-8/igt@gem_create@create-clear@smem0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@gem_create@create-clear@smem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#6335]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@engines-hostile: - shard-snb: NOTRUN -> [SKIP][41] ([i915#1099]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-snb6/igt@gem_ctx_persistence@engines-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#8555]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#8555]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#8555]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#5882]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#5882]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#280]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@gem_exec_balancer@bonded-false-hang.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-19/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4812]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4525]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@gem_exec_balancer@parallel-bb-first.html - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4525]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-8/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#4525]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][54] ([i915#6334]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk6/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][55] ([i915#6334]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-13/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3539]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3539]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-18/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-mtlp: [PASS][60] -> [FAIL][61] ([i915#15871] / [i915#16503]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-7/igt@gem_exec_flush@basic-wb-rw-before-default.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#5107]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-5/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][63] ([i915#5107]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#14544] / [i915#3281]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3281]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3281]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3281]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4537] / [i915#4812]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4860]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@gem_fence_thrash@bo-write-verify-none.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4860]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4860]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#2190]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#4613] / [i915#7582]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@massive-random: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#4613]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#4613]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][76] ([i915#4613]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk8/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#4613]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-10/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-random: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4613]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4077]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4077]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-18/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@hang-busy: - shard-glk: NOTRUN -> [INCOMPLETE][81] ([i915#16470]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk5/igt@gem_mmap_gtt@hang-busy.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][82] -> [TIMEOUT][83] ([i915#16021] / [i915#16168]) +1 other test timeout [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4083]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@gem_mmap_wc@close.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4083]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-16/igt@gem_mmap_wc@close.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4083]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-5/igt@gem_mmap_wc@close.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@gem_pwrite@basic-self.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4270]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-7/igt@gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4270]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-13/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#13398]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_readwrite@read-bad-handle: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#14544] / [i915#3282]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8428]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#5190] / [i915#8428]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy_redux@interruptible: - shard-mtlp: [PASS][95] -> [FAIL][96] ([i915#16503]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-6/igt@gem_render_copy_redux@interruptible.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@gem_render_copy_redux@interruptible.html * igt@gem_set_tiling_vs_pwrite: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4079]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4885]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4077]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3297]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3297]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#3297]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-5/igt@gem_userptr_blits@unsync-overlap.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3297]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk11: NOTRUN -> [INCOMPLETE][106] ([i915#13356]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk11/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@basic-rejected: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#2527]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-13/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#2527]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#2527] / [i915#2856]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-8/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#2856]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#14073]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-16/igt@i915_drm_fdinfo@busy@rcs0.html - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#14073]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-5/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#14073]) +15 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#14118]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-hang.html * igt@i915_hangman@detector: - shard-mtlp: [PASS][116] -> [INCOMPLETE][117] ([i915#16503]) +1 other test incomplete [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-4/igt@i915_hangman@detector.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@i915_hangman@detector.html * igt@i915_module_load@fault-injection@__uc_init: - shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#15479]) +4 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-tglu-1: NOTRUN -> [ABORT][119] ([i915#15342]) +1 other test abort [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#8399]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][121] -> [INCOMPLETE][122] ([i915#13356] / [i915#13820]) +1 other test incomplete [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#4387]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][124] -> [SKIP][125] ([i915#7984]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-3/igt@i915_power@sanity.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-5/igt@i915_power@sanity.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#16109]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@i915_query@query-topology-known-pci-ids.html - shard-rkl: NOTRUN -> [SKIP][127] ([i915#16109]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#5723]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-glk: [PASS][129] -> [INCOMPLETE][130] ([i915#16182] / [i915#4817]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-glk: NOTRUN -> [INCOMPLETE][131] ([i915#16182] / [i915#4817]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk2/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk11: NOTRUN -> [INCOMPLETE][132] ([i915#16182] / [i915#4817]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk11/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-rkl: NOTRUN -> [INCOMPLETE][133] ([i915#4817]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@i915_suspend@sysfs-reader.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#14544] / [i915#7707]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_3d@basic: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#15726]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_3d@basic.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4212]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][138] -> [FAIL][139] ([i915#5956]) +1 other test fail [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5286]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-mtlp: [PASS][141] -> [SKIP][142] ([i915#2575]) +4 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][143] +6 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14544] / [i915#5286]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5286]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-tglu: NOTRUN -> [SKIP][146] ([i915#5286]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#5286]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [FAIL][148] ([i915#15733] / [i915#5138]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#14544] / [i915#3638]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544] / [i915#3828]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][151] +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3638]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-15/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3638]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#2575]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4538] / [i915#5190]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6187]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][157] +49 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#4538]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#12313]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#14544] / [i915#6095]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#6095]) +243 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][162] +489 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk9/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#6095]) +59 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6095]) +24 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#12313]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][166] ([i915#12313]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][167] ([i915#12313]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#12313]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#6095]) +29 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#12805]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#6095]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#10307] / [i915#6095]) +109 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#14098] / [i915#6095]) +55 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#6095]) +80 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#16471]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#16471]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-4/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#16471]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#16471]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#16471]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-19/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +8 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#14544] / [i915#7828]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +6 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +10 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@ctm-negative: - shard-mtlp: [PASS][189] -> [FAIL][190] ([i915#6892]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-2/igt@kms_color@ctm-negative.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_color@ctm-negative.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#15865]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html - shard-tglu: NOTRUN -> [SKIP][192] ([i915#15865]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#15330]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#15330]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#15330] / [i915#3116]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#15330] / [i915#3116] / [i915#3299]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#15865]) +6 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#15865]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-1/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#15865]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#13049]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#13049]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#13049]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#13049]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][205] ([i915#13049]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#14544] / [i915#3555]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8814]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][208] ([i915#13566]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8814]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][210] -> [FAIL][211] ([i915#13566]) +3 other tests fail [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][212] ([i915#12358] / [i915#14152] / [i915#7882]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [INCOMPLETE][213] ([i915#12358] / [i915#14152]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#9809]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#16119] / [i915#4213]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#4103]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#13046] / [i915#5354]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][218] ([i915#15804]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#4103]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#4103]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][221] ([i915#4103]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#13691]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-9/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3804]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#1769] / [i915#3555] / [i915#3804]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3804]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3804]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev@basic: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#1257]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-5/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#13749]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-mst.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#13749]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-mst.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#13749]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@kms_dp_link_training@non-uhbr-mst.html - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#13749]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#13748]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#16361]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#16361]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#16361]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#3469]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-10/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3955]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3469]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#16081]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#14544] / [i915#16081]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9337]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#9934]) +6 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#3637] / [i915#9934]) +4 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#9934]) +13 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#3637] / [i915#9934]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][246] ([i915#9934]) +5 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-14/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#9934]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-on-nop.html - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#9934]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#14544] / [i915#9934]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3637] / [i915#9934]) +6 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@dpms-vs-vblank-race-interruptible@a-edp1: - shard-mtlp: NOTRUN -> [FAIL][251] ([i915#15871]) +12 other tests fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-edp1.html * igt@kms_flip@flip-vs-rmfb: - shard-mtlp: [PASS][252] -> [FAIL][253] ([i915#15871]) +57 other tests fail [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-2/igt@kms_flip@flip-vs-rmfb.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_flip@flip-vs-rmfb.html * igt@kms_flip@flip-vs-suspend-interruptible@a-vga1: - shard-snb: [PASS][254] -> [ABORT][255] ([i915#15840]) +1 other test abort [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@a-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#15643]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#15643]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#15643] / [i915#5190]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#15643]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][260] ([i915#15643]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8813]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#8810] / [i915#8813]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#15643]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#15643]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [PASS][265] -> [SKIP][266] ([i915#15672]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-7/igt@kms_force_connector_basic@prune-stale-modes.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#15104] / [i915#15990]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#15990] / [i915#8708]) +9 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#15990] / [i915#8708]) +14 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#15991] / [i915#5354]) +19 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#1825]) +12 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][272] -> [ABORT][273] ([i915#15132]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][274] ([i915#10056]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk8/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#10055]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#15989]) +14 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-6/igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#15990]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move: - shard-glk: [PASS][278] -> [SKIP][279] +8 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15989]) +26 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15991]) +30 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][282] +64 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#15991]) +35 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#15989]) +15 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-stridechange: - shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#15989]) +7 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html - shard-dg1: NOTRUN -> [SKIP][286] ([i915#15989]) +13 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-glk10: NOTRUN -> [SKIP][287] +75 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#14544] / [i915#1825]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#15102]) +15 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#10055]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#14544] / [i915#15102]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#15102]) +26 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#15990]) +15 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#15102] / [i915#4423]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][295] -> [SKIP][296] ([i915#15989]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#15989]) +28 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9766]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#9766]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#15102]) +35 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#15102] / [i915#3023]) +18 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#15102]) +17 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][303] +117 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#15991] / [i915#1825]) +18 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#15990] / [i915#8708]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html - shard-rkl: NOTRUN -> [SKIP][306] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#15990]) +8 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-14/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][308] +40 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#14544]) +15 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-render: - shard-glk11: NOTRUN -> [SKIP][310] +80 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk11/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#15102]) +30 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-pwrite.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8228]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@kms_hdr@invalid-metadata-sizes.html - shard-tglu: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-5/igt@kms_hdr@invalid-metadata-sizes.html - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12713] / [i915#16490] / [i915#3555] / [i915#8228]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#16518] / [i915#3555] / [i915#8228]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-7/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8228]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_hdr@static-toggle.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15459]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#15458]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#15458]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#15638] / [i915#15722]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#15815]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#15815]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#6301]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#14712]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#13705]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#15709]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#16386]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#15709]) +2 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#15709]) +2 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#14544] / [i915#15709]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping: - shard-mtlp: [PASS][331] -> [INCOMPLETE][332] ([i915#13026] / [i915#16503]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-5/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#15709]) +3 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#15709]) +2 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#16386]) +5 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#15709]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-2/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][337] ([i915#10647] / [i915#12169]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][338] ([i915#10647]) +1 other test fail [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4: - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-4@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#11614] / [i915#3582]) +3 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8821]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#3555]) +4 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-18/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#13958]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#13958]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#15887] / [i915#9809]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][346] ([i915#13046] / [i915#5354] / [i915#9423]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#6953] / [i915#9423]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][348] ([i915#6953]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#6953]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#6953]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#15329]) +8 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#15329]) +4 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#15329]) +9 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#15329] / [i915#3555]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#15329]) +2 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#15329] / [i915#6953]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#12343] / [i915#14544] / [i915#5354]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#12343]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#13441]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [FAIL][360] ([i915#16479]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [PASS][361] -> [SKIP][362] ([i915#15073]) +3 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][363] ([i915#15073]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][364] -> [SKIP][365] ([i915#15073]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu: NOTRUN -> [SKIP][366] ([i915#15073]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@package-g7: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#15403]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-5/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: NOTRUN -> [INCOMPLETE][368] ([i915#14419]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#6524]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#11520]) +6 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#11520] / [i915#14544]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#11520]) +3 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html - shard-glk11: NOTRUN -> [SKIP][373] ([i915#11520]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][374] ([i915#11520]) +9 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][375] ([i915#11520]) +5 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#12316]) +5 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#11520]) +4 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][378] ([i915#11520]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-snb4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][379] ([i915#11520]) +4 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-15/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][380] ([i915#9808]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][381] ([i915#11520]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#4348]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][383] ([i915#9683]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#9683]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-dpms: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-pr-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][386] ([i915#9732]) +8 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#9732]) +11 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-8/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr-primary-page-flip@edp-1: - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#9688]) +9 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-6/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html * igt@kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][389] ([i915#1072] / [i915#9732]) +7 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-15/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][390] ([i915#1072] / [i915#9732]) +21 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#9732]) +14 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-1/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_rotation_crc@bad-tiling: - shard-dg1: [PASS][392] -> [DMESG-WARN][393] ([i915#4423]) +1 other test dmesg-warn [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-16/igt@kms_rotation_crc@bad-tiling.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][394] ([i915#15492] / [i915#16184]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk5/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][395] ([i915#5289]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#12755] / [i915#15867] / [i915#5190]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][397] ([i915#5289]) +2 other tests skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][398] ([i915#5289]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][399] ([i915#12755] / [i915#15867]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#12755] / [i915#15867]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#3555]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][402] ([i915#13179]) +1 other test abort [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_selftest@drm_framebuffer.html - shard-dg1: NOTRUN -> [ABORT][403] ([i915#13179] / [i915#16508]) +1 other test abort [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-14/igt@kms_selftest@drm_framebuffer.html - shard-snb: NOTRUN -> [ABORT][404] ([i915#13179]) +1 other test abort [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-snb1/igt@kms_selftest@drm_framebuffer.html - shard-tglu: NOTRUN -> [ABORT][405] ([i915#13179]) +1 other test abort [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-6/igt@kms_selftest@drm_framebuffer.html - shard-mtlp: NOTRUN -> [ABORT][406] ([i915#13179]) +1 other test abort [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-6/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][407] ([i915#13179]) +1 other test abort [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][408] ([i915#3555]) +3 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-tglu: NOTRUN -> [SKIP][409] ([i915#3555]) +2 other tests skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-7/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][410] ([i915#10959]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][411] ([i915#12276]) +1 other test incomplete [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-suspend: - shard-dg2: NOTRUN -> [SKIP][412] ([i915#15243] / [i915#3555]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-8/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][413] ([i915#15243] / [i915#3555]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#9906]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-rkl: NOTRUN -> [SKIP][415] ([i915#9906]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][416] ([i915#9906]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][417] ([i915#9906]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][418] ([i915#8808] / [i915#9906]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][419] ([i915#7387]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][420] ([i915#2434]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][421] ([i915#14544] / [i915#2435]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][422] ([i915#2433]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-accuracy-98: - shard-snb: NOTRUN -> [SKIP][423] +154 other tests skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-snb4/igt@perf_pmu@busy-accuracy-98.html * igt@perf_pmu@gt-awake: - shard-snb: [PASS][424] -> [FAIL][425] ([i915#16538]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-snb6/igt@perf_pmu@gt-awake.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-snb1/igt@perf_pmu@gt-awake.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][426] ([i915#15778]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk6/igt@perf_pmu@module-unload.html - shard-rkl: NOTRUN -> [ABORT][427] ([i915#15778]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][428] ([i915#8516]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-3/igt@perf_pmu@rc6-all-gts.html - shard-dg1: NOTRUN -> [SKIP][429] ([i915#8516]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][430] ([i915#8516]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl@share-import-addfb: - shard-rkl: NOTRUN -> [SKIP][431] ([i915#16420]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][432] ([i915#3708]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][433] ([i915#3291] / [i915#3708]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][434] ([i915#3291] / [i915#3708]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][435] ([i915#3708]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][436] ([i915#10216] / [i915#3708]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-7/igt@prime_vgem@basic-write.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][437] ([i915#9917]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][438] ([i915#9917]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-mtlp: NOTRUN -> [SKIP][439] ([i915#16066]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@drm_read@empty-block: - shard-dg1: [DMESG-WARN][440] ([i915#4423]) -> [PASS][441] +1 other test pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-19/igt@drm_read@empty-block.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-13/igt@drm_read@empty-block.html * igt@gem_exec_big@single: - shard-tglu: [FAIL][442] ([i915#15816]) -> [PASS][443] [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-tglu-4/igt@gem_exec_big@single.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [INCOMPLETE][444] ([i915#13356]) -> [PASS][445] [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_selftest@live: - shard-dg1: [ABORT][446] ([i915#16436]) -> [PASS][447] [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-16/igt@i915_selftest@live.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - shard-dg1: [ABORT][448] ([i915#15433]) -> [PASS][449] [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-16/igt@i915_selftest@live@gem_contexts.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [INCOMPLETE][450] ([i915#4817]) -> [PASS][451] [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][452] ([i915#5956]) -> [PASS][453] +1 other test pass [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][454] ([i915#15582]) -> [PASS][455] +1 other test pass [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][456] ([i915#12655] / [i915#3555]) -> [PASS][457] [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-4/igt@kms_color@deep-color.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [FAIL][458] ([i915#13566]) -> [PASS][459] +1 other test pass [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][460] ([i915#13566]) -> [PASS][461] +3 other tests pass [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][462] ([i915#15989]) -> [PASS][463] +8 other tests pass [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-glk: [SKIP][464] -> [PASS][465] +3 other tests pass [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-glk5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_plane_cursor@overlay: - shard-rkl: [FAIL][466] ([i915#15912]) -> [PASS][467] [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-3/igt@kms_plane_cursor@overlay.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_plane_cursor@overlay.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][468] ([i915#15073]) -> [PASS][469] +2 other tests pass [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][470] ([i915#15073]) -> [PASS][471] [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [SKIP][472] ([i915#15073]) -> [PASS][473] +2 other tests pass [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [FAIL][474] ([i915#15997]) -> [PASS][475] +1 other test pass [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg2-1/igt@perf_pmu@most-busy-idle-check-all.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-5/igt@perf_pmu@most-busy-idle-check-all.html - shard-dg1: [FAIL][476] ([i915#15997]) -> [PASS][477] +1 other test pass [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-12/igt@perf_pmu@most-busy-idle-check-all.html - shard-mtlp: [FAIL][478] ([i915#15997]) -> [PASS][479] +1 other test pass [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html #### Warnings #### * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][480] ([i915#3555] / [i915#9323]) -> [SKIP][481] ([i915#14544] / [i915#3555] / [i915#9323]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-rkl: [SKIP][482] ([i915#3281]) -> [SKIP][483] ([i915#14544] / [i915#3281]) +2 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: [SKIP][484] ([i915#4613]) -> [SKIP][485] ([i915#14544] / [i915#4613]) +1 other test skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#4613]) -> [SKIP][487] ([i915#4613]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@gem_lmem_swapping@verify.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@gem_lmem_swapping@verify.html * igt@gem_madvise@dontneed-before-pwrite: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#3282]) -> [SKIP][489] ([i915#3282]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][490] ([i915#13717]) -> [FAIL][491] ([i915#15169]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-context.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][492] ([i915#8411]) -> [SKIP][493] ([i915#14544] / [i915#8411]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][494] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][495] ([i915#3297] / [i915#3323]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@i915_module_load@fault-injection: - shard-dg1: [ABORT][496] ([i915#11814] / [i915#15481]) -> [ABORT][497] ([i915#11814]) +1 other test abort [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-13/igt@i915_module_load@fault-injection.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-19/igt@i915_module_load@fault-injection.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][498] ([i915#14544] / [i915#9531]) -> [SKIP][499] ([i915#9531]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][500] ([i915#1769] / [i915#3555]) -> [SKIP][501] ([i915#14544] / [i915#1769] / [i915#3555]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][502] ([i915#5286]) -> [SKIP][503] ([i915#14544] / [i915#5286]) +1 other test skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#5286]) -> [SKIP][505] ([i915#5286]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#3638]) -> [SKIP][507] ([i915#3638]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][508] ([i915#3638]) -> [SKIP][509] ([i915#14544] / [i915#3638]) +1 other test skip [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][510] ([i915#14098] / [i915#6095]) -> [SKIP][511] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][512] ([i915#6095]) -> [SKIP][513] ([i915#14544] / [i915#6095]) +3 other tests skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#6095]) -> [SKIP][515] ([i915#6095]) +1 other test skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][516] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][517] ([i915#14098] / [i915#6095]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d: - shard-rkl: [SKIP][518] ([i915#14544] / [i915#16471]) -> [SKIP][519] ([i915#16471]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4: - shard-rkl: [SKIP][520] ([i915#16471]) -> [SKIP][521] ([i915#14544] / [i915#16471]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-3/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-rkl: [SKIP][522] ([i915#11151] / [i915#7828]) -> [SKIP][523] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-fast.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: [SKIP][524] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][525] ([i915#11151] / [i915#7828]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-mtlp: [SKIP][526] ([i915#15330]) -> [FAIL][527] ([i915#15871]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: [SKIP][528] ([i915#15330]) -> [SKIP][529] ([i915#14544] / [i915#15330]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][530] ([i915#15865] / [i915#4423]) -> [SKIP][531] ([i915#15865]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-19/igt@kms_content_protection@mei-interface.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-14/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][532] ([i915#13049] / [i915#14544]) -> [SKIP][533] ([i915#13049]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-dg1: [SKIP][534] ([i915#3555]) -> [SKIP][535] ([i915#3555] / [i915#4423]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-32x32.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-17/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: [SKIP][536] ([i915#13049]) -> [FAIL][537] ([i915#15871]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][538] ([i915#13691]) -> [SKIP][539] ([i915#13691] / [i915#14544]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg1: [SKIP][540] ([i915#13707]) -> [SKIP][541] ([i915#13707] / [i915#4423]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-15/igt@kms_dp_linktrain_fallback@dp-fallback.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-19/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][542] ([i915#16081]) -> [SKIP][543] ([i915#14544] / [i915#16081]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-2/igt@kms_feature_discovery@display-3x.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#9934]) -> [SKIP][545] ([i915#9934]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-rkl: [SKIP][546] ([i915#9934]) -> [SKIP][547] ([i915#14544] / [i915#9934]) +1 other test skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-2/igt@kms_flip@2x-plain-flip-ts-check.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][548] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][549] ([i915#12745] / [i915#4839]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-glk1/igt@kms_flip@flip-vs-suspend.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][550] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][551] ([i915#12314] / [i915#12745] / [i915#4839]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: [INCOMPLETE][552] ([i915#12745]) -> [INCOMPLETE][553] ([i915#12314] / [i915#12745]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: [INCOMPLETE][554] ([i915#16276] / [i915#6113]) -> [ABORT][555] ([i915#15132]) +1 other test abort [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][556] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][557] ([i915#12745]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: [SKIP][558] ([i915#3555] / [i915#8810] / [i915#8813]) -> [FAIL][559] ([i915#15871]) +1 other test fail [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: [SKIP][560] ([i915#15672]) -> [SKIP][561] [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-3/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][562] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][563] ([i915#15102] / [i915#3023]) +1 other test skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][564] ([i915#1825]) -> [SKIP][565] ([i915#14544] / [i915#1825]) +3 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-mtlp: [SKIP][566] ([i915#15991] / [i915#1825]) -> [SKIP][567] ([i915#2575]) +1 other test skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-rkl: [SKIP][568] ([i915#15102] / [i915#3023]) -> [SKIP][569] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][570] -> [SKIP][571] ([i915#14544]) +30 other tests skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: [SKIP][572] ([i915#14544]) -> [SKIP][573] +11 other tests skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu: - shard-rkl: [SKIP][574] ([i915#15102]) -> [SKIP][575] ([i915#14544] / [i915#15102]) +6 other tests skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render: - shard-rkl: [SKIP][576] ([i915#14544] / [i915#15102]) -> [SKIP][577] ([i915#15102]) +3 other tests skip [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-rkl: [INCOMPLETE][578] ([i915#16056]) -> [SKIP][579] ([i915#15989]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-suspend.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][580] ([i915#10433] / [i915#15102]) -> [SKIP][581] ([i915#15102]) +3 other tests skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][582] ([i915#14544] / [i915#1825]) -> [SKIP][583] ([i915#1825]) +1 other test skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][584] ([i915#15102]) -> [SKIP][585] ([i915#10433] / [i915#15102]) [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][586] ([i915#12713] / [i915#16490]) -> [SKIP][587] ([i915#1187] / [i915#12713] / [i915#16490]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][588] ([i915#15709]) -> [SKIP][589] ([i915#14544] / [i915#15709]) [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][590] ([i915#3555]) -> [SKIP][591] ([i915#14544] / [i915#3555]) +1 other test skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: [SKIP][592] ([i915#15329]) -> [SKIP][593] ([i915#14544] / [i915#15329]) +3 other tests skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][594] ([i915#15739]) -> [SKIP][595] ([i915#14544] / [i915#15739]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][596] ([i915#11520] / [i915#14544]) -> [SKIP][597] ([i915#11520]) +1 other test skip [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg1: [SKIP][598] ([i915#1072] / [i915#9732]) -> [SKIP][599] ([i915#1072] / [i915#4423] / [i915#9732]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-14/igt@kms_psr@fbc-pr-primary-mmap-gtt.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-19/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg1: [SKIP][600] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][601] ([i915#1072] / [i915#9732]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-dg1-16/igt@kms_psr@fbc-psr-no-drrs.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-dg1-13/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-rkl: [SKIP][602] ([i915#1072] / [i915#9732]) -> [SKIP][603] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-2/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][604] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][605] ([i915#1072] / [i915#9732]) +5 other tests skip [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-2/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: [SKIP][606] ([i915#9906]) -> [SKIP][607] ([i915#14544] / [i915#9906]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@perf_pmu@module-unload: - shard-tglu: [INCOMPLETE][608] ([i915#13520]) -> [ABORT][609] ([i915#15778]) [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-tglu-8/igt@perf_pmu@module-unload.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-tglu-7/igt@perf_pmu@module-unload.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][610] ([i915#3708]) -> [SKIP][611] ([i915#14544] / [i915#3708]) +1 other test skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8993/shard-rkl-5/igt@prime_vgem@coherency-gtt.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/shard-rkl-6/igt@prime_vgem@coherency-gtt.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15169 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887 [i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#15997]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15997 [i915#16020]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16020 [i915#16021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16021 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16168]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16168 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16436 [i915#16470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16470 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490 [i915#16503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16503 [i915#16508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16508 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16538 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6892]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6892 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8993 -> IGTPW_15492 CI-20190529: 20190529 CI_DRM_18787: d2b771941e0c8aec7b6648b0c47d81161136944d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15492: 15492 IGT_8993: 8993 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15492/index.html [-- Attachment #2: Type: text/html, Size: 206085 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-07-10 10:12 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-08 16:12 [PATCH v2 0/2] tests/msm: Add PERFCNTR_CONFIG ioctl Rob Clark 2026-07-08 16:12 ` [PATCH v2 1/2] drm-uapi: Sync msm_drm.h Rob Clark 2026-07-10 9:52 ` Kamil Konieczny 2026-07-10 10:12 ` Kamil Konieczny 2026-07-08 16:12 ` [PATCH v2 2/2] tests/msm: Add perfcntrs test Rob Clark 2026-07-10 10:06 ` Kamil Konieczny 2026-07-08 17:54 ` ✗ Xe.CI.BAT: failure for tests/msm: Add PERFCNTR_CONFIG ioctl (rev2) Patchwork 2026-07-08 18:10 ` ✓ i915.CI.BAT: success " Patchwork 2026-07-08 21:09 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-09 17:00 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox