* [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting
@ 2023-12-06 20:00 Niranjana Vishwanathapura
2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 1/3] lib/xe: Add __xe_exec_queue_create() Niranjana Vishwanathapura
` (7 more replies)
0 siblings, 8 replies; 13+ messages in thread
From: Niranjana Vishwanathapura @ 2023-12-06 20:00 UTC (permalink / raw)
To: igt-dev
Validate static assignment of compute slices to a user selected
number of compute engines. Select number of compute engines by
writing it to the per-gt 'ccs_mode' sysfs interface. Validate
that compute kernels can be run on enabled CCS engines and
submitting jobs on disabled compute engines is not permitted.
NOTE: Corresponding driver changes is,
[PATCH v3 0/3] drm/xe: Enable fixed CCS mode
v2: Rebase
v3: Separate num_cslices sysfs interface
v4: Rebase
Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
Niranjana Vishwanathapura (3):
lib/xe: Add __xe_exec_queue_create()
lib/intel_compute: Update intel_compute to run on specified engine
tests/xe_compute: Validate ccs_mode setting
lib/intel_compute.c | 85 +++++++++++++++-------
lib/intel_compute.h | 3 +
lib/xe/xe_ioctl.c | 29 ++++++--
lib/xe/xe_ioctl.h | 3 +
tests/intel/xe_compute.c | 149 ++++++++++++++++++++++++++++++++++++++-
tests/intel/xe_create.c | 26 -------
6 files changed, 237 insertions(+), 58 deletions(-)
--
2.21.0.rc0.32.g243a4c7e27
^ permalink raw reply [flat|nested] 13+ messages in thread* [igt-dev] [PATCH i-g-t v4 1/3] lib/xe: Add __xe_exec_queue_create() 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura @ 2023-12-06 20:00 ` Niranjana Vishwanathapura 2023-12-07 11:41 ` Kamil Konieczny 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 2/3] lib/intel_compute: Update intel_compute to run on specified engine Niranjana Vishwanathapura ` (6 subsequent siblings) 7 siblings, 1 reply; 13+ messages in thread From: Niranjana Vishwanathapura @ 2023-12-06 20:00 UTC (permalink / raw) To: igt-dev Add __xe_exec_queue_create() which does not assert upon error. Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/xe/xe_ioctl.c | 29 ++++++++++++++++++++++++----- lib/xe/xe_ioctl.h | 3 +++ tests/intel/xe_create.c | 26 -------------------------- 3 files changed, 27 insertions(+), 31 deletions(-) diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index b29ca40ad..f87cbdba4 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -334,9 +334,9 @@ uint32_t xe_bind_exec_queue_create(int fd, uint32_t vm, uint64_t ext, bool async return create.exec_queue_id; } -uint32_t xe_exec_queue_create(int fd, uint32_t vm, - struct drm_xe_engine_class_instance *instance, - uint64_t ext) +uint32_t __xe_exec_queue_create(int fd, uint32_t vm, + struct drm_xe_engine_class_instance *instance, + uint64_t ext, uint32_t *exec_queue_id) { struct drm_xe_exec_queue_create create = { .extensions = ext, @@ -345,10 +345,29 @@ uint32_t xe_exec_queue_create(int fd, uint32_t vm, .num_placements = 1, .instances = to_user_pointer(instance), }; + int err; - igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create), 0); + err = igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create); + if (err) { + err = -errno; + igt_assume(err); + errno = 0; + return err; + } - return create.exec_queue_id; + *exec_queue_id = create.exec_queue_id; + return 0; +} + +uint32_t xe_exec_queue_create(int fd, uint32_t vm, + struct drm_xe_engine_class_instance *instance, + uint64_t ext) +{ + uint32_t exec_queue_id; + + igt_assert_eq(__xe_exec_queue_create(fd, vm, instance, ext, &exec_queue_id), 0); + + return exec_queue_id; } uint32_t xe_exec_queue_create_class(int fd, uint32_t vm, uint16_t class) diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index bd660bd27..e9ccb4b5b 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -73,6 +73,9 @@ uint32_t __xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t pla uint32_t xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, uint32_t flags, uint16_t cpu_caching); uint16_t __xe_default_cpu_caching_from_placement(int fd, uint32_t placement); +uint32_t __xe_exec_queue_create(int fd, uint32_t vm, + struct drm_xe_engine_class_instance *instance, + uint64_t ext, uint32_t *exec_queue_id); uint32_t xe_exec_queue_create(int fd, uint32_t vm, struct drm_xe_engine_class_instance *instance, uint64_t ext); diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c index bbdddc7c9..077743ef6 100644 --- a/tests/intel/xe_create.c +++ b/tests/intel/xe_create.c @@ -93,32 +93,6 @@ enum exec_queue_destroy { LEAK }; -static uint32_t __xe_exec_queue_create(int fd, uint32_t vm, - struct drm_xe_engine_class_instance *instance, - uint64_t ext, - uint32_t *exec_queuep) -{ - struct drm_xe_exec_queue_create create = { - .extensions = ext, - .vm_id = vm, - .width = 1, - .num_placements = 1, - .instances = to_user_pointer(instance), - }; - int err = 0; - - if (igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create) == 0) { - *exec_queuep = create.exec_queue_id; - } else { - igt_warn("Can't create exec_queue, errno: %d\n", errno); - err = -errno; - igt_assume(err); - } - errno = 0; - - return err; -} - #define MAXEXECQUEUES 2048 #define MAXTIME 5 -- 2.21.0.rc0.32.g243a4c7e27 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 1/3] lib/xe: Add __xe_exec_queue_create() 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 1/3] lib/xe: Add __xe_exec_queue_create() Niranjana Vishwanathapura @ 2023-12-07 11:41 ` Kamil Konieczny 2023-12-07 19:16 ` Niranjana Vishwanathapura 0 siblings, 1 reply; 13+ messages in thread From: Kamil Konieczny @ 2023-12-07 11:41 UTC (permalink / raw) To: igt-dev Hi Niranjana, On 2023-12-06 at 12:00:53 -0800, Niranjana Vishwanathapura wrote: > Add __xe_exec_queue_create() which does not assert upon error. One small nit, see below. > > Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> > Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > --- > lib/xe/xe_ioctl.c | 29 ++++++++++++++++++++++++----- > lib/xe/xe_ioctl.h | 3 +++ > tests/intel/xe_create.c | 26 -------------------------- > 3 files changed, 27 insertions(+), 31 deletions(-) > > diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c > index b29ca40ad..f87cbdba4 100644 > --- a/lib/xe/xe_ioctl.c > +++ b/lib/xe/xe_ioctl.c > @@ -334,9 +334,9 @@ uint32_t xe_bind_exec_queue_create(int fd, uint32_t vm, uint64_t ext, bool async > return create.exec_queue_id; > } > > -uint32_t xe_exec_queue_create(int fd, uint32_t vm, > - struct drm_xe_engine_class_instance *instance, > - uint64_t ext) > +uint32_t __xe_exec_queue_create(int fd, uint32_t vm, -- ^^^^^^^^ This should be int for errno. s/uint32_t/int/ > + struct drm_xe_engine_class_instance *instance, > + uint64_t ext, uint32_t *exec_queue_id) > { > struct drm_xe_exec_queue_create create = { > .extensions = ext, > @@ -345,10 +345,29 @@ uint32_t xe_exec_queue_create(int fd, uint32_t vm, > .num_placements = 1, > .instances = to_user_pointer(instance), > }; > + int err; > > - igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create), 0); > + err = igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create); > + if (err) { > + err = -errno; > + igt_assume(err); > + errno = 0; > + return err; > + } > > - return create.exec_queue_id; > + *exec_queue_id = create.exec_queue_id; > + return 0; > +} > + > +uint32_t xe_exec_queue_create(int fd, uint32_t vm, > + struct drm_xe_engine_class_instance *instance, > + uint64_t ext) > +{ > + uint32_t exec_queue_id; > + > + igt_assert_eq(__xe_exec_queue_create(fd, vm, instance, ext, &exec_queue_id), 0); > + > + return exec_queue_id; > } > > uint32_t xe_exec_queue_create_class(int fd, uint32_t vm, uint16_t class) > diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h > index bd660bd27..e9ccb4b5b 100644 > --- a/lib/xe/xe_ioctl.h > +++ b/lib/xe/xe_ioctl.h > @@ -73,6 +73,9 @@ uint32_t __xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t pla > uint32_t xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, > uint32_t flags, uint16_t cpu_caching); > uint16_t __xe_default_cpu_caching_from_placement(int fd, uint32_t placement); > +uint32_t __xe_exec_queue_create(int fd, uint32_t vm, -- ^^^^^^^^ Same here. s/uint32_t/int/ Regards, Kamil > + struct drm_xe_engine_class_instance *instance, > + uint64_t ext, uint32_t *exec_queue_id); > uint32_t xe_exec_queue_create(int fd, uint32_t vm, > struct drm_xe_engine_class_instance *instance, > uint64_t ext); > diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c > index bbdddc7c9..077743ef6 100644 > --- a/tests/intel/xe_create.c > +++ b/tests/intel/xe_create.c > @@ -93,32 +93,6 @@ enum exec_queue_destroy { > LEAK > }; > > -static uint32_t __xe_exec_queue_create(int fd, uint32_t vm, > - struct drm_xe_engine_class_instance *instance, > - uint64_t ext, > - uint32_t *exec_queuep) > -{ > - struct drm_xe_exec_queue_create create = { > - .extensions = ext, > - .vm_id = vm, > - .width = 1, > - .num_placements = 1, > - .instances = to_user_pointer(instance), > - }; > - int err = 0; > - > - if (igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create) == 0) { > - *exec_queuep = create.exec_queue_id; > - } else { > - igt_warn("Can't create exec_queue, errno: %d\n", errno); > - err = -errno; > - igt_assume(err); > - } > - errno = 0; > - > - return err; > -} > - > #define MAXEXECQUEUES 2048 > #define MAXTIME 5 > > -- > 2.21.0.rc0.32.g243a4c7e27 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 1/3] lib/xe: Add __xe_exec_queue_create() 2023-12-07 11:41 ` Kamil Konieczny @ 2023-12-07 19:16 ` Niranjana Vishwanathapura 0 siblings, 0 replies; 13+ messages in thread From: Niranjana Vishwanathapura @ 2023-12-07 19:16 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Zbigniew Kempczyński On Thu, Dec 07, 2023 at 12:41:30PM +0100, Kamil Konieczny wrote: >Hi Niranjana, >On 2023-12-06 at 12:00:53 -0800, Niranjana Vishwanathapura wrote: >> Add __xe_exec_queue_create() which does not assert upon error. > >One small nit, see below. > >> >> Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> >> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> >> --- >> lib/xe/xe_ioctl.c | 29 ++++++++++++++++++++++++----- >> lib/xe/xe_ioctl.h | 3 +++ >> tests/intel/xe_create.c | 26 -------------------------- >> 3 files changed, 27 insertions(+), 31 deletions(-) >> >> diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c >> index b29ca40ad..f87cbdba4 100644 >> --- a/lib/xe/xe_ioctl.c >> +++ b/lib/xe/xe_ioctl.c >> @@ -334,9 +334,9 @@ uint32_t xe_bind_exec_queue_create(int fd, uint32_t vm, uint64_t ext, bool async >> return create.exec_queue_id; >> } >> >> -uint32_t xe_exec_queue_create(int fd, uint32_t vm, >> - struct drm_xe_engine_class_instance *instance, >> - uint64_t ext) >> +uint32_t __xe_exec_queue_create(int fd, uint32_t vm, >-- ^^^^^^^^ >This should be int for errno. >s/uint32_t/int/ Thanks Kamil, Ok, will fix > >> + struct drm_xe_engine_class_instance *instance, >> + uint64_t ext, uint32_t *exec_queue_id) >> { >> struct drm_xe_exec_queue_create create = { >> .extensions = ext, >> @@ -345,10 +345,29 @@ uint32_t xe_exec_queue_create(int fd, uint32_t vm, >> .num_placements = 1, >> .instances = to_user_pointer(instance), >> }; >> + int err; >> >> - igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create), 0); >> + err = igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create); >> + if (err) { >> + err = -errno; >> + igt_assume(err); >> + errno = 0; >> + return err; >> + } >> >> - return create.exec_queue_id; >> + *exec_queue_id = create.exec_queue_id; >> + return 0; >> +} >> + >> +uint32_t xe_exec_queue_create(int fd, uint32_t vm, >> + struct drm_xe_engine_class_instance *instance, >> + uint64_t ext) >> +{ >> + uint32_t exec_queue_id; >> + >> + igt_assert_eq(__xe_exec_queue_create(fd, vm, instance, ext, &exec_queue_id), 0); >> + >> + return exec_queue_id; >> } >> >> uint32_t xe_exec_queue_create_class(int fd, uint32_t vm, uint16_t class) >> diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h >> index bd660bd27..e9ccb4b5b 100644 >> --- a/lib/xe/xe_ioctl.h >> +++ b/lib/xe/xe_ioctl.h >> @@ -73,6 +73,9 @@ uint32_t __xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t pla >> uint32_t xe_bo_create_caching(int fd, uint32_t vm, uint64_t size, uint32_t placement, >> uint32_t flags, uint16_t cpu_caching); >> uint16_t __xe_default_cpu_caching_from_placement(int fd, uint32_t placement); >> +uint32_t __xe_exec_queue_create(int fd, uint32_t vm, >-- ^^^^^^^^ >Same here. > >s/uint32_t/int/ > >Regards, >Kamil > >> + struct drm_xe_engine_class_instance *instance, >> + uint64_t ext, uint32_t *exec_queue_id); >> uint32_t xe_exec_queue_create(int fd, uint32_t vm, >> struct drm_xe_engine_class_instance *instance, >> uint64_t ext); >> diff --git a/tests/intel/xe_create.c b/tests/intel/xe_create.c >> index bbdddc7c9..077743ef6 100644 >> --- a/tests/intel/xe_create.c >> +++ b/tests/intel/xe_create.c >> @@ -93,32 +93,6 @@ enum exec_queue_destroy { >> LEAK >> }; >> >> -static uint32_t __xe_exec_queue_create(int fd, uint32_t vm, >> - struct drm_xe_engine_class_instance *instance, >> - uint64_t ext, >> - uint32_t *exec_queuep) >> -{ >> - struct drm_xe_exec_queue_create create = { >> - .extensions = ext, >> - .vm_id = vm, >> - .width = 1, >> - .num_placements = 1, >> - .instances = to_user_pointer(instance), >> - }; >> - int err = 0; >> - >> - if (igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, &create) == 0) { >> - *exec_queuep = create.exec_queue_id; >> - } else { >> - igt_warn("Can't create exec_queue, errno: %d\n", errno); >> - err = -errno; >> - igt_assume(err); >> - } >> - errno = 0; >> - >> - return err; >> -} >> - >> #define MAXEXECQUEUES 2048 >> #define MAXTIME 5 >> >> -- >> 2.21.0.rc0.32.g243a4c7e27 >> ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v4 2/3] lib/intel_compute: Update intel_compute to run on specified engine 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 1/3] lib/xe: Add __xe_exec_queue_create() Niranjana Vishwanathapura @ 2023-12-06 20:00 ` Niranjana Vishwanathapura 2023-12-07 11:56 ` Kamil Konieczny 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 3/3] tests/xe_compute: Validate ccs_mode setting Niranjana Vishwanathapura ` (5 subsequent siblings) 7 siblings, 1 reply; 13+ messages in thread From: Niranjana Vishwanathapura @ 2023-12-06 20:00 UTC (permalink / raw) To: igt-dev With CCS_MODE setting, available compute slices can be assigned to specific compute engines. Update intel_compute library to be able to run compute kernel on specified compute or render engine. Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/intel_compute.c | 85 ++++++++++++++++++++++++++++++++------------- lib/intel_compute.h | 3 ++ 2 files changed, 63 insertions(+), 25 deletions(-) diff --git a/lib/intel_compute.c b/lib/intel_compute.c index 0beab471b..79dffc50e 100644 --- a/lib/intel_compute.c +++ b/lib/intel_compute.c @@ -16,7 +16,6 @@ #include "intel_compute.h" #include "lib/igt_syncobj.h" #include "lib/intel_reg.h" -#include "xe_drm.h" #include "xe/xe_ioctl.h" #include "xe/xe_query.h" #include "xehp_media.h" @@ -64,7 +63,8 @@ struct bo_execenv { struct drm_i915_gem_exec_object2 *obj; }; -static void bo_execenv_create(int fd, struct bo_execenv *execenv) +static void bo_execenv_create(int fd, struct bo_execenv *execenv, + struct drm_xe_engine_class_instance *eci) { igt_assert(execenv); @@ -73,18 +73,24 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv) execenv->driver = get_intel_driver(fd); if (execenv->driver == INTEL_DRIVER_XE) { - uint16_t engine_class; - uint32_t devid = intel_get_drm_devid(fd); - const struct intel_device_info *info = intel_get_device_info(devid); - - if (info->graphics_ver >= 12 && info->graphics_rel < 60) - engine_class = DRM_XE_ENGINE_CLASS_RENDER; - else - engine_class = DRM_XE_ENGINE_CLASS_COMPUTE; - execenv->vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0); - execenv->exec_queue = xe_exec_queue_create_class(fd, execenv->vm, - engine_class); + + if (eci) { + execenv->exec_queue = xe_exec_queue_create(fd, execenv->vm, + eci, 0); + } else { + uint16_t engine_class; + uint32_t devid = intel_get_drm_devid(fd); + const struct intel_device_info *info = intel_get_device_info(devid); + + if (info->graphics_ver >= 12 && info->graphics_rel < 60) + engine_class = DRM_XE_ENGINE_CLASS_RENDER; + else + engine_class = DRM_XE_ENGINE_CLASS_COMPUTE; + + execenv->exec_queue = xe_exec_queue_create_class(fd, execenv->vm, + engine_class); + } } } @@ -588,9 +594,11 @@ static void dg1_compute_exec_compute(uint32_t *addr_bo_buffer_batch, * @fd: file descriptor of the opened DRM device * @kernel: GPU Kernel binary to be executed * @size: size of @kernel. + * @eci: engine class instance */ static void compute_exec(int fd, const unsigned char *kernel, - unsigned int size) + unsigned int size, + struct drm_xe_engine_class_instance *eci) { #define BO_DICT_ENTRIES 7 struct bo_dict_entry bo_dict[BO_DICT_ENTRIES] = { @@ -619,7 +627,7 @@ static void compute_exec(int fd, const unsigned char *kernel, float *dinput; uint16_t devid = intel_get_drm_devid(fd); - bo_execenv_create(fd, &execenv); + bo_execenv_create(fd, &execenv, eci); /* Sets Kernel size */ bo_dict[0].size = ALIGN(size, 0x1000); @@ -865,9 +873,11 @@ static void xehp_compute_exec_compute(uint32_t *addr_bo_buffer_batch, * @fd: file descriptor of the opened DRM device * @kernel: GPU Kernel binary to be executed * @size: size of @kernel. + * @eci: engine class instance */ static void xehp_compute_exec(int fd, const unsigned char *kernel, - unsigned int size) + unsigned int size, + struct drm_xe_engine_class_instance *eci) { #define XEHP_BO_DICT_ENTRIES 9 struct bo_dict_entry bo_dict[XEHP_BO_DICT_ENTRIES] = { @@ -897,7 +907,7 @@ static void xehp_compute_exec(int fd, const unsigned char *kernel, struct bo_execenv execenv; float *dinput; - bo_execenv_create(fd, &execenv); + bo_execenv_create(fd, &execenv, eci); /* Sets Kernel size */ bo_dict[0].size = ALIGN(size, 0x1000); @@ -1079,9 +1089,11 @@ static void xehpc_compute_exec_compute(uint32_t *addr_bo_buffer_batch, * @fd: file descriptor of the opened DRM device * @kernel: GPU Kernel binary to be executed * @size: size of @kernel. + * @eci: engine class instance */ static void xehpc_compute_exec(int fd, const unsigned char *kernel, - unsigned int size) + unsigned int size, + struct drm_xe_engine_class_instance *eci) { #define XEHPC_BO_DICT_ENTRIES 6 struct bo_dict_entry bo_dict[XEHPC_BO_DICT_ENTRIES] = { @@ -1102,7 +1114,7 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel, struct bo_execenv execenv; float *dinput; - bo_execenv_create(fd, &execenv); + bo_execenv_create(fd, &execenv, eci); /* Sets Kernel size */ bo_dict[0].size = ALIGN(size, 0x1000); @@ -1261,7 +1273,8 @@ static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch, * @size: size of @kernel. */ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, - unsigned int size) + unsigned int size, + struct drm_xe_engine_class_instance *eci) { #define XE2_BO_DICT_ENTRIES 10 struct bo_dict_entry bo_dict[XE2_BO_DICT_ENTRIES] = { @@ -1296,7 +1309,7 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, struct bo_execenv execenv; float *dinput; - bo_execenv_create(fd, &execenv); + bo_execenv_create(fd, &execenv, eci); /* Sets Kernel size */ bo_dict[0].size = ALIGN(size, 0x1000); @@ -1356,7 +1369,8 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, static const struct { unsigned int ip_ver; void (*compute_exec)(int fd, const unsigned char *kernel, - unsigned int size); + unsigned int size, + struct drm_xe_engine_class_instance *eci); uint32_t compat; } intel_compute_batches[] = { { @@ -1386,7 +1400,8 @@ static const struct { }, }; -bool run_intel_compute_kernel(int fd) +static bool __run_intel_compute_kernel(int fd, + struct drm_xe_engine_class_instance *eci) { unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd)); unsigned int batch; @@ -1397,8 +1412,10 @@ bool run_intel_compute_kernel(int fd) if (ip_ver == intel_compute_batches[batch].ip_ver) break; } - if (batch == ARRAY_SIZE(intel_compute_batches)) + if (batch == ARRAY_SIZE(intel_compute_batches)) { + igt_debug("GPU version 0x%x not supported\n", ip_ver); return false; + } if (!(COMPAT_DRIVER_FLAG(driver) & intel_compute_batches[batch].compat)) { igt_debug("Driver is not supported: flags %x & %x\n", @@ -1416,7 +1433,25 @@ bool run_intel_compute_kernel(int fd) return 1; intel_compute_batches[batch].compute_exec(fd, kernels->kernel, - kernels->size); + kernels->size, eci); return true; } + +bool run_intel_compute_kernel(int fd) +{ + return __run_intel_compute_kernel(fd, NULL); +} + +bool run_intel_compute_kernel_on_engine(int fd, + struct drm_xe_engine_class_instance *eci) +{ + if (eci->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE && + eci->engine_class != DRM_XE_ENGINE_CLASS_RENDER) { + igt_debug("%s engine class not supported\n", + xe_engine_class_string(eci->engine_class)); + return false; + } + + return __run_intel_compute_kernel(fd, eci); +} diff --git a/lib/intel_compute.h b/lib/intel_compute.h index ba153f064..5d81c3d62 100644 --- a/lib/intel_compute.h +++ b/lib/intel_compute.h @@ -9,6 +9,8 @@ #ifndef INTEL_COMPUTE_H #define INTEL_COMPUTE_H +#include "xe_drm.h" + /* * OpenCL Kernels are generated using: * @@ -28,5 +30,6 @@ struct intel_compute_kernels { extern const struct intel_compute_kernels intel_compute_square_kernels[]; bool run_intel_compute_kernel(int fd); +bool run_intel_compute_kernel_on_engine(int fd, struct drm_xe_engine_class_instance *eci); #endif /* INTEL_COMPUTE_H */ -- 2.21.0.rc0.32.g243a4c7e27 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 2/3] lib/intel_compute: Update intel_compute to run on specified engine 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 2/3] lib/intel_compute: Update intel_compute to run on specified engine Niranjana Vishwanathapura @ 2023-12-07 11:56 ` Kamil Konieczny 2023-12-07 19:25 ` Niranjana Vishwanathapura 0 siblings, 1 reply; 13+ messages in thread From: Kamil Konieczny @ 2023-12-07 11:56 UTC (permalink / raw) To: igt-dev Hi Niranjana, On 2023-12-06 at 12:00:54 -0800, Niranjana Vishwanathapura wrote: > With CCS_MODE setting, available compute slices can be assigned > to specific compute engines. Update intel_compute library to > be able to run compute kernel on specified compute or render > engine. > > Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> > Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > --- > lib/intel_compute.c | 85 ++++++++++++++++++++++++++++++++------------- > lib/intel_compute.h | 3 ++ > 2 files changed, 63 insertions(+), 25 deletions(-) > > diff --git a/lib/intel_compute.c b/lib/intel_compute.c > index 0beab471b..79dffc50e 100644 > --- a/lib/intel_compute.c > +++ b/lib/intel_compute.c > @@ -16,7 +16,6 @@ > #include "intel_compute.h" > #include "lib/igt_syncobj.h" > #include "lib/intel_reg.h" > -#include "xe_drm.h" > #include "xe/xe_ioctl.h" > #include "xe/xe_query.h" > #include "xehp_media.h" > @@ -64,7 +63,8 @@ struct bo_execenv { > struct drm_i915_gem_exec_object2 *obj; > }; > > -static void bo_execenv_create(int fd, struct bo_execenv *execenv) > +static void bo_execenv_create(int fd, struct bo_execenv *execenv, > + struct drm_xe_engine_class_instance *eci) > { > igt_assert(execenv); > > @@ -73,18 +73,24 @@ static void bo_execenv_create(int fd, struct bo_execenv *execenv) > execenv->driver = get_intel_driver(fd); > > if (execenv->driver == INTEL_DRIVER_XE) { > - uint16_t engine_class; > - uint32_t devid = intel_get_drm_devid(fd); > - const struct intel_device_info *info = intel_get_device_info(devid); > - > - if (info->graphics_ver >= 12 && info->graphics_rel < 60) > - engine_class = DRM_XE_ENGINE_CLASS_RENDER; > - else > - engine_class = DRM_XE_ENGINE_CLASS_COMPUTE; > - > execenv->vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_ASYNC_DEFAULT, 0); > - execenv->exec_queue = xe_exec_queue_create_class(fd, execenv->vm, > - engine_class); > + > + if (eci) { > + execenv->exec_queue = xe_exec_queue_create(fd, execenv->vm, > + eci, 0); > + } else { > + uint16_t engine_class; > + uint32_t devid = intel_get_drm_devid(fd); > + const struct intel_device_info *info = intel_get_device_info(devid); > + > + if (info->graphics_ver >= 12 && info->graphics_rel < 60) > + engine_class = DRM_XE_ENGINE_CLASS_RENDER; > + else > + engine_class = DRM_XE_ENGINE_CLASS_COMPUTE; > + > + execenv->exec_queue = xe_exec_queue_create_class(fd, execenv->vm, > + engine_class); > + } > } > } > > @@ -588,9 +594,11 @@ static void dg1_compute_exec_compute(uint32_t *addr_bo_buffer_batch, > * @fd: file descriptor of the opened DRM device > * @kernel: GPU Kernel binary to be executed > * @size: size of @kernel. > + * @eci: engine class instance > */ > static void compute_exec(int fd, const unsigned char *kernel, > - unsigned int size) > + unsigned int size, > + struct drm_xe_engine_class_instance *eci) > { > #define BO_DICT_ENTRIES 7 > struct bo_dict_entry bo_dict[BO_DICT_ENTRIES] = { > @@ -619,7 +627,7 @@ static void compute_exec(int fd, const unsigned char *kernel, > float *dinput; > uint16_t devid = intel_get_drm_devid(fd); > > - bo_execenv_create(fd, &execenv); > + bo_execenv_create(fd, &execenv, eci); > > /* Sets Kernel size */ > bo_dict[0].size = ALIGN(size, 0x1000); > @@ -865,9 +873,11 @@ static void xehp_compute_exec_compute(uint32_t *addr_bo_buffer_batch, > * @fd: file descriptor of the opened DRM device > * @kernel: GPU Kernel binary to be executed > * @size: size of @kernel. > + * @eci: engine class instance > */ > static void xehp_compute_exec(int fd, const unsigned char *kernel, > - unsigned int size) > + unsigned int size, > + struct drm_xe_engine_class_instance *eci) > { > #define XEHP_BO_DICT_ENTRIES 9 > struct bo_dict_entry bo_dict[XEHP_BO_DICT_ENTRIES] = { > @@ -897,7 +907,7 @@ static void xehp_compute_exec(int fd, const unsigned char *kernel, > struct bo_execenv execenv; > float *dinput; > > - bo_execenv_create(fd, &execenv); > + bo_execenv_create(fd, &execenv, eci); > > /* Sets Kernel size */ > bo_dict[0].size = ALIGN(size, 0x1000); > @@ -1079,9 +1089,11 @@ static void xehpc_compute_exec_compute(uint32_t *addr_bo_buffer_batch, > * @fd: file descriptor of the opened DRM device > * @kernel: GPU Kernel binary to be executed > * @size: size of @kernel. > + * @eci: engine class instance > */ > static void xehpc_compute_exec(int fd, const unsigned char *kernel, > - unsigned int size) > + unsigned int size, > + struct drm_xe_engine_class_instance *eci) > { > #define XEHPC_BO_DICT_ENTRIES 6 > struct bo_dict_entry bo_dict[XEHPC_BO_DICT_ENTRIES] = { > @@ -1102,7 +1114,7 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel, > struct bo_execenv execenv; > float *dinput; > > - bo_execenv_create(fd, &execenv); > + bo_execenv_create(fd, &execenv, eci); > > /* Sets Kernel size */ > bo_dict[0].size = ALIGN(size, 0x1000); > @@ -1261,7 +1273,8 @@ static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch, > * @size: size of @kernel. > */ > static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, > - unsigned int size) > + unsigned int size, > + struct drm_xe_engine_class_instance *eci) > { > #define XE2_BO_DICT_ENTRIES 10 > struct bo_dict_entry bo_dict[XE2_BO_DICT_ENTRIES] = { > @@ -1296,7 +1309,7 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, > struct bo_execenv execenv; > float *dinput; > > - bo_execenv_create(fd, &execenv); > + bo_execenv_create(fd, &execenv, eci); > > /* Sets Kernel size */ > bo_dict[0].size = ALIGN(size, 0x1000); > @@ -1356,7 +1369,8 @@ static void xe2lpg_compute_exec(int fd, const unsigned char *kernel, > static const struct { > unsigned int ip_ver; > void (*compute_exec)(int fd, const unsigned char *kernel, > - unsigned int size); > + unsigned int size, > + struct drm_xe_engine_class_instance *eci); > uint32_t compat; > } intel_compute_batches[] = { > { > @@ -1386,7 +1400,8 @@ static const struct { > }, > }; > > -bool run_intel_compute_kernel(int fd) > +static bool __run_intel_compute_kernel(int fd, > + struct drm_xe_engine_class_instance *eci) > { > unsigned int ip_ver = intel_graphics_ver(intel_get_drm_devid(fd)); > unsigned int batch; > @@ -1397,8 +1412,10 @@ bool run_intel_compute_kernel(int fd) > if (ip_ver == intel_compute_batches[batch].ip_ver) > break; > } > - if (batch == ARRAY_SIZE(intel_compute_batches)) > + if (batch == ARRAY_SIZE(intel_compute_batches)) { > + igt_debug("GPU version 0x%x not supported\n", ip_ver); > return false; > + } > > if (!(COMPAT_DRIVER_FLAG(driver) & intel_compute_batches[batch].compat)) { > igt_debug("Driver is not supported: flags %x & %x\n", > @@ -1416,7 +1433,25 @@ bool run_intel_compute_kernel(int fd) > return 1; > > intel_compute_batches[batch].compute_exec(fd, kernels->kernel, > - kernels->size); > + kernels->size, eci); > > return true; > } > + > +bool run_intel_compute_kernel(int fd) > +{ > + return __run_intel_compute_kernel(fd, NULL); > +} > + > +bool run_intel_compute_kernel_on_engine(int fd, > + struct drm_xe_engine_class_instance *eci) > +{ > + if (eci->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE && > + eci->engine_class != DRM_XE_ENGINE_CLASS_RENDER) { > + igt_debug("%s engine class not supported\n", > + xe_engine_class_string(eci->engine_class)); > + return false; > + } > + > + return __run_intel_compute_kernel(fd, eci); > +} > diff --git a/lib/intel_compute.h b/lib/intel_compute.h > index ba153f064..5d81c3d62 100644 > --- a/lib/intel_compute.h > +++ b/lib/intel_compute.h > @@ -9,6 +9,8 @@ > #ifndef INTEL_COMPUTE_H > #define INTEL_COMPUTE_H > > +#include "xe_drm.h" With this it looks like Xe only header. > + > /* > * OpenCL Kernels are generated using: > * > @@ -28,5 +30,6 @@ struct intel_compute_kernels { > extern const struct intel_compute_kernels intel_compute_square_kernels[]; > > bool run_intel_compute_kernel(int fd); > +bool run_intel_compute_kernel_on_engine(int fd, struct drm_xe_engine_class_instance *eci); What about using *void here? > > #endif /* INTEL_COMPUTE_H */ > -- > 2.21.0.rc0.32.g243a4c7e27 -- ^^ Please update your git to at least 2.3x or 2.4x (current lastest is 2.43.0). Regards, Kamil ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4 2/3] lib/intel_compute: Update intel_compute to run on specified engine 2023-12-07 11:56 ` Kamil Konieczny @ 2023-12-07 19:25 ` Niranjana Vishwanathapura 0 siblings, 0 replies; 13+ messages in thread From: Niranjana Vishwanathapura @ 2023-12-07 19:25 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Zbigniew Kempczyński On Thu, Dec 07, 2023 at 12:56:18PM +0100, Kamil Konieczny wrote: >Hi Niranjana, >On 2023-12-06 at 12:00:54 -0800, Niranjana Vishwanathapura wrote: >> With CCS_MODE setting, available compute slices can be assigned >> to specific compute engines. Update intel_compute library to >> be able to run compute kernel on specified compute or render >> engine. >> >> Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> >> Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> <snip> >> --- a/lib/intel_compute.h >> +++ b/lib/intel_compute.h >> @@ -9,6 +9,8 @@ >> #ifndef INTEL_COMPUTE_H >> #define INTEL_COMPUTE_H >> >> +#include "xe_drm.h" > >With this it looks like Xe only header. > Hmm... Not sure if we can keep these library headers purly driver (i915/xe) agnostic for long. The library *.c files already include xe_drm.h and deal xe drivers differently. I am seeing some library header files include structures defined in xe_drm.h, but let the *.c files to include xe_drm.h header (cheeky in my opinion). >> + >> /* >> * OpenCL Kernels are generated using: >> * >> @@ -28,5 +30,6 @@ struct intel_compute_kernels { >> extern const struct intel_compute_kernels intel_compute_square_kernels[]; >> >> bool run_intel_compute_kernel(int fd); >> +bool run_intel_compute_kernel_on_engine(int fd, struct drm_xe_engine_class_instance *eci); > >What about using *void here? > Not sure if masking it as 'void *' is a good approach. Besides, I don't think we are going to support this for i915 (not worth the effort, validation etc). And I don't think we are going to compile the igt repo without xe_drm.h. I can add a function descriptor saying that this function is only supported for xe driver and return error if this function is ever invoked with non-xe driver. Is that fine? >> >> #endif /* INTEL_COMPUTE_H */ >> -- >> 2.21.0.rc0.32.g243a4c7e27 >-- ^^ >Please update your git to at least 2.3x or 2.4x (current lastest is 2.43.0). Sure. Thanks, Niranjana > >Regards, >Kamil ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v4 3/3] tests/xe_compute: Validate ccs_mode setting 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 1/3] lib/xe: Add __xe_exec_queue_create() Niranjana Vishwanathapura 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 2/3] lib/intel_compute: Update intel_compute to run on specified engine Niranjana Vishwanathapura @ 2023-12-06 20:00 ` Niranjana Vishwanathapura 2023-12-06 21:53 ` [igt-dev] ✗ Fi.CI.BAT: failure for xe: Validate fixed CCS mode setting Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 13+ messages in thread From: Niranjana Vishwanathapura @ 2023-12-06 20:00 UTC (permalink / raw) To: igt-dev Validate 'ccs_mode' sysfs uapi interface and ensure compute kernels can be run on enabled compute engines. v2: Separate num_cslices sysfs interface Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com> Signed-off-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> --- tests/intel/xe_compute.c | 149 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 147 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_compute.c b/tests/intel/xe_compute.c index 1db72785b..c9a3549a6 100644 --- a/tests/intel/xe_compute.c +++ b/tests/intel/xe_compute.c @@ -13,9 +13,145 @@ #include <string.h> #include "igt.h" +#include "igt_sysfs.h" #include "intel_compute.h" +#include "xe/xe_ioctl.h" #include "xe/xe_query.h" +static int gt_sysfs_open(int gt) +{ + int fd, gt_fd; + + fd = drm_open_driver(DRIVER_XE); + gt_fd = xe_sysfs_gt_open(fd, gt); + drm_close_driver(fd); + + return gt_fd; +} + +static bool get_num_cslices(u32 gt, u32 *num_slices) +{ + int gt_fd, ret; + + gt_fd = gt_sysfs_open(gt); + ret = igt_sysfs_scanf(gt_fd, "num_cslices", "%u", num_slices); + close(gt_fd); + + return ret > 0; +} + +/** + * SUBTEST: ccs-mode-basic + * GPU requirement: PVC + * Description: Validate 'ccs_mode' sysfs uapi + * Functionality: ccs_mode user interface + */ +static void +test_ccs_mode(int num_gt) +{ + struct drm_xe_engine_class_instance *hwe; + u32 gt, m, ccs_mode, vm, q, num_slices; + int fd, gt_fd; + + for (gt = 0; gt < num_gt; gt++) { + igt_require(get_num_cslices(gt, &num_slices)); + + gt_fd = gt_sysfs_open(gt); + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 0) < 0); + for (m = 1; m <= num_slices; m++) { + /* compute slices are to be equally distributed among enabled engines */ + if (num_slices % m) { + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", m) < 0); + continue; + } + + /* Validate allowed ccs modes by setting them and reading back */ + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", m) > 0); + igt_assert(igt_sysfs_scanf(gt_fd, "ccs_mode", "%u", &ccs_mode) > 0); + igt_assert(m == ccs_mode); + + /* Validate exec queues creation with enabled ccs engines */ + fd = drm_open_driver(DRIVER_XE); + vm = xe_vm_create(fd, 0, 0); + xe_for_each_engine(fd, hwe) { + if (hwe->gt_id != gt || + hwe->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE) + continue; + + q = xe_exec_queue_create(fd, vm, hwe, 0); + xe_exec_queue_destroy(fd, q); + } + + /* Ensure exec queue creation fails for disabled ccs engines */ + hwe->gt_id = gt; + hwe->engine_class = DRM_XE_ENGINE_CLASS_COMPUTE; + hwe->engine_instance = m; + igt_assert_neq(__xe_exec_queue_create(fd, vm, hwe, 0, &q), 0); + + xe_vm_destroy(fd, vm); + drm_close_driver(fd); + } + + /* Ensure invalid ccs mode setting is rejected */ + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", m) < 0); + + /* Can't change ccs mode with an open drm clients */ + fd = drm_open_driver(DRIVER_XE); + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) < 0); + drm_close_driver(fd); + + /* Set ccs mode back to default value */ + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0); + + close(gt_fd); + } +} + +/** + * SUBTEST: ccs-mode-compute-kernel + * GPU requirement: PVC + * Description: Validate 'ccs_mode' by running compute kernel + * Functionality: CCS mode funtionality + */ +static void +test_compute_kernel_with_ccs_mode(int num_gt) +{ + struct drm_xe_engine_class_instance *hwe; + u32 gt, m, num_slices; + int fd, gt_fd; + + for (gt = 0; gt < num_gt; gt++) { + igt_require(get_num_cslices(gt, &num_slices)); + + gt_fd = gt_sysfs_open(gt); + for (m = 1; m <= num_slices; m++) { + if (num_slices % m) + continue; + + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", m) > 0); + + /* Run compute kernel on enabled ccs engines */ + fd = drm_open_driver(DRIVER_XE); + xe_for_each_engine(fd, hwe) { + if (hwe->gt_id != gt || + hwe->engine_class != DRM_XE_ENGINE_CLASS_COMPUTE) + continue; + + igt_info("GT-%d: Running compute kernel with ccs_mode %d on ccs engine %d\n", + gt, m, hwe->engine_instance); + igt_assert_f(run_intel_compute_kernel_on_engine(fd, hwe), + "Unable to run compute kernel successfully\n"); + } + drm_close_driver(fd); + } + + /* Set ccs mode back to default value */ + igt_assert(igt_sysfs_printf(gt_fd, "ccs_mode", "%u", 1) > 0); + + close(gt_fd); + } +} + /** * SUBTEST: compute-square * GPU requirement: TGL, PVC, LNL @@ -32,14 +168,23 @@ test_compute_square(int fd) igt_main { - int xe; + int xe, num_gt; - igt_fixture + igt_fixture { xe = drm_open_driver(DRIVER_XE); + num_gt = xe_number_gt(xe); + } igt_subtest("compute-square") test_compute_square(xe); igt_fixture drm_close_driver(xe); + + /* ccs mode tests should be run without open gpu file handles */ + igt_subtest("ccs-mode-basic") + test_ccs_mode(num_gt); + + igt_subtest("ccs-mode-compute-kernel") + test_compute_kernel_with_ccs_mode(num_gt); } -- 2.21.0.rc0.32.g243a4c7e27 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for xe: Validate fixed CCS mode setting 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura ` (2 preceding siblings ...) 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 3/3] tests/xe_compute: Validate ccs_mode setting Niranjana Vishwanathapura @ 2023-12-06 21:53 ` Patchwork 2023-12-06 23:28 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-12-06 21:53 UTC (permalink / raw) To: Niranjana Vishwanathapura; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2564 bytes --] == Series Details == Series: xe: Validate fixed CCS mode setting URL : https://patchwork.freedesktop.org/series/127453/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13989 -> IGTPW_10357 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10357 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10357, 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_10357/index.html Participating hosts (37 -> 35) ------------------------------ Missing (2): bat-jsl-1 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10357: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_fence@basic-await@vcs0: - bat-adlp-9: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13989/bat-adlp-9/igt@gem_exec_fence@basic-await@vcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10357/bat-adlp-9/igt@gem_exec_fence@basic-await@vcs0.html Known issues ------------ Here are the changes found in IGTPW_10357 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][3] -> [ABORT][4] ([i915#8668]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13989/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10357/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7626 -> IGTPW_10357 CI-20190529: 20190529 CI_DRM_13989: fffa682b2a63092b0a1b6ca286d7777b245136ad @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10357: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10357/index.html IGT_7626: 154b7288552cd7ed3033f8ef396e88d0bd1b7646 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_compute@ccs-mode-basic +igt@xe_compute@ccs-mode-compute-kernel == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10357/index.html [-- Attachment #2: Type: text/html, Size: 3194 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for xe: Validate fixed CCS mode setting 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura ` (3 preceding siblings ...) 2023-12-06 21:53 ` [igt-dev] ✗ Fi.CI.BAT: failure for xe: Validate fixed CCS mode setting Patchwork @ 2023-12-06 23:28 ` Patchwork 2023-12-06 23:39 ` [igt-dev] ✓ Fi.CI.BAT: success for xe: Validate fixed CCS mode setting (rev2) Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-12-06 23:28 UTC (permalink / raw) To: Niranjana Vishwanathapura; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2128 bytes --] == Series Details == Series: xe: Validate fixed CCS mode setting URL : https://patchwork.freedesktop.org/series/127453/ State : success == Summary == CI Bug Log - changes from XEIGT_7626_BAT -> XEIGTPW_10357_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10357_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlp-7: [FAIL][1] ([i915#2346]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10357/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@xe_prime_self_import@basic-with_fd_dup: - bat-atsm-2: [FAIL][3] ([Intel XE#999]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-atsm-2/igt@xe_prime_self_import@basic-with_fd_dup.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10357/bat-atsm-2/igt@xe_prime_self_import@basic-with_fd_dup.html [Intel XE#999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/999 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7626 -> IGTPW_10357 * Linux: xe-556-d33ebd7511c2b53c5dc006e2daa25214fc8a5921 -> xe-557-668d13abebbbc3812de86be1f8477475e1d90728 IGTPW_10357: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10357/index.html IGT_7626: 154b7288552cd7ed3033f8ef396e88d0bd1b7646 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-556-d33ebd7511c2b53c5dc006e2daa25214fc8a5921: d33ebd7511c2b53c5dc006e2daa25214fc8a5921 xe-557-668d13abebbbc3812de86be1f8477475e1d90728: 668d13abebbbc3812de86be1f8477475e1d90728 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10357/index.html [-- Attachment #2: Type: text/html, Size: 2743 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for xe: Validate fixed CCS mode setting (rev2) 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura ` (4 preceding siblings ...) 2023-12-06 23:28 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork @ 2023-12-06 23:39 ` Patchwork 2023-12-07 1:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-07 1:28 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 7 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-12-06 23:39 UTC (permalink / raw) To: Niranjana Vishwanathapura; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3256 bytes --] == Series Details == Series: xe: Validate fixed CCS mode setting (rev2) URL : https://patchwork.freedesktop.org/series/127453/ State : success == Summary == CI Bug Log - changes from CI_DRM_13990 -> IGTPW_10359 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/index.html Participating hosts (37 -> 34) ------------------------------ Missing (3): bat-kbl-2 fi-snb-2520m bat-dg1-5 Known issues ------------ Here are the changes found in IGTPW_10359 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][1] -> [ABORT][2] ([i915#9662]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/fi-bsw-nick/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/fi-bsw-nick/igt@i915_selftest@live@execlists.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][3] ([i915#9275]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@kms_flip@basic-flip-vs-dpms@d-dp6: - bat-adlp-11: [DMESG-FAIL][5] ([i915#6868]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@d-dp6.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/bat-adlp-11/igt@kms_flip@basic-flip-vs-dpms@d-dp6.html * igt@kms_flip@basic-flip-vs-modeset@d-dp6: - bat-adlp-11: [DMESG-WARN][7] -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][9] ([IGT#3]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9662]: https://gitlab.freedesktop.org/drm/intel/issues/9662 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7626 -> IGTPW_10359 CI-20190529: 20190529 CI_DRM_13990: 85d33d0ad82a5c1a71492f14a5ceb67ada6a22d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10359: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/index.html IGT_7626: 154b7288552cd7ed3033f8ef396e88d0bd1b7646 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_compute@ccs-mode-basic +igt@xe_compute@ccs-mode-compute-kernel == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/index.html [-- Attachment #2: Type: text/html, Size: 3972 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for xe: Validate fixed CCS mode setting (rev2) 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura ` (5 preceding siblings ...) 2023-12-06 23:39 ` [igt-dev] ✓ Fi.CI.BAT: success for xe: Validate fixed CCS mode setting (rev2) Patchwork @ 2023-12-07 1:13 ` Patchwork 2023-12-07 1:28 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 7 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-12-07 1:13 UTC (permalink / raw) To: Niranjana Vishwanathapura; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 84361 bytes --] == Series Details == Series: xe: Validate fixed CCS mode setting (rev2) URL : https://patchwork.freedesktop.org/series/127453/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13990_full -> IGTPW_10359_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10359_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10359_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_10359/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10359_full: ### IGT changes ### #### Possible regressions #### * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-tglu: [FAIL][2] ([i915#3591]) -> [WARN][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [SKIP][4] ([fdo#109271]) -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb5/igt@kms_content_protection@atomic-dpms.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb7/igt@kms_content_protection@atomic-dpms.html Known issues ------------ Here are the changes found in IGTPW_10359_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-1/igt@api_intel_bb@object-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][7] ([i915#6122]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@busy@rcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +11 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@drm_fdinfo@busy@rcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@drm_fdinfo@virtual-busy-idle-all.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@fbdev@pan: - shard-snb: [PASS][11] -> [FAIL][12] ([i915#4435]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb2/igt@fbdev@pan.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb7/igt@fbdev@pan.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][14] ([i915#7297]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@hog-create@smem0: - shard-mtlp: NOTRUN -> [FAIL][16] ([i915#8758]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-5/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][17] -> [FAIL][18] ([i915#9561]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-2/igt@gem_ctx_freq@sysfs@gt0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][19] ([i915#7975] / [i915#8213]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][20] -> [FAIL][21] ([i915#5784]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-16/igt@gem_eio@reset-stress.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4771]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4036]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#6334]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-8/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][28] -> [FAIL][29] ([i915#2842]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][34] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][38] ([fdo#109283] / [i915#5107]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][39] ([fdo#112283]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-6/igt@gem_exec_params@secure-non-master.html - shard-rkl: NOTRUN -> [SKIP][40] ([fdo#112283]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@gem_exec_params@secure-non-master.html - shard-dg1: NOTRUN -> [SKIP][41] ([fdo#112283]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-16/igt@gem_exec_params@secure-non-master.html - shard-mtlp: NOTRUN -> [SKIP][42] ([fdo#112283]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-1/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-write-cpu: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +12 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_whisper@basic-fds-priority-all: - shard-tglu: [PASS][49] -> [INCOMPLETE][50] ([i915#6755] / [i915#7392]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-5/igt@gem_exec_whisper@basic-fds-priority-all.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-6/igt@gem_exec_whisper@basic-fds-priority-all.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-glk: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4565]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][58] -> [TIMEOUT][59] ([i915#5493]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#284]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-9/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-13/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@big-bo: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@gem_mmap_gtt@big-bo.html * igt@gem_mmap_wc@write: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#4270]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-10/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4885]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-1/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglu: NOTRUN -> [SKIP][72] ([fdo#109312]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-5/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +12 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4079]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@gem_userptr_blits@coherency-unsync.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-dg1: NOTRUN -> [FAIL][79] ([i915#3318]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-15/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-allocation: - shard-tglu: NOTRUN -> [SKIP][80] ([fdo#109289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-4/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109289]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@gen7_exec_parse@basic-rejected.html * igt@gen7_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][82] ([fdo#109289]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@gen7_exec_parse@batch-without-end.html - shard-dg1: NOTRUN -> [SKIP][83] ([fdo#109289]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@gen7_exec_parse@batch-without-end.html - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#109289]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-1/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-1/igt@gen9_exec_parse@allowed-single.html - shard-glk: [PASS][86] -> [ABORT][87] ([i915#5566]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-glk8/igt@gen9_exec_parse@allowed-single.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@gen9_exec_parse@bb-start-cmd.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][91] -> [INCOMPLETE][92] ([i915#9200]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [WARN][93] ([i915#7356]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#7091]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: NOTRUN -> [FAIL][95] ([i915#3591]) +1 other test fail [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#6621]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#8925]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4387]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#6188]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@gem_contexts: - shard-mtlp: [PASS][100] -> [DMESG-FAIL][101] ([i915#9780]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-1/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][102] ([i915#9311]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@i915_selftest@mock@memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][103] ([i915#9311]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@i915_selftest@mock@memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][104] ([i915#9311]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk2/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][105] ([i915#9311]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4212]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#8709]) +11 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][109] ([i915#8247]) +3 other tests fail [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][110] ([i915#8247]) +3 other tests fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#6228]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_async_flips@invalid-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6228]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#5286]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5286]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#111614]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-7/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][118] -> [FAIL][119] ([i915#3743]) +2 other tests fail [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#5190]) +22 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#111615]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111615]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg1: NOTRUN -> [SKIP][123] ([fdo#111615]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6187]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111615]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][127] ([fdo#110723]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#2705]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-1/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@kms_ccs@pipe-a-bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +24 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y-tiled-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +6 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#5354]) +116 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-9/igt@kms_ccs@pipe-c-random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5354]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-negative: - shard-dg1: NOTRUN -> [SKIP][136] ([fdo#111827]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#111827]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_chamelium_color@degamma.html - shard-rkl: NOTRUN -> [SKIP][138] ([fdo#111827]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7828]) +14 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#7828]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@kms_chamelium_frames@vga-frame-dump.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#7828]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-16/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#7828]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#9424]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-5/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3299]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3116]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@kms_content_protection@dp-mst-type-1.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3299]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3299]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-6/igt@kms_content_protection@legacy.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7116]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][151] ([fdo#109279] / [i915#3359]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3359]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3359]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3555]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109274] / [i915#5354]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#4103]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109274]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#4103] / [i915#4213]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#9227]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#9723]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8588]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#8588]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3804]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#8812]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#8812]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-16/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#1839]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-5/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#658]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][169] ([i915#658]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#658]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#4881]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#109274] / [i915#3637]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-10/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg1: NOTRUN -> [SKIP][173] ([fdo#111767] / [fdo#111825]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][174] ([fdo#111767] / [i915#3637]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111767] / [fdo#111825]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274] / [fdo#111767]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109274]) +14 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#111825]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3637]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2: - shard-glk: [PASS][180] -> [FAIL][181] ([i915#79]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-glk5/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#2587] / [i915#2672]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#2672]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#2672]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [PASS][186] -> [SKIP][187] ([fdo#109271]) +11 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][188] ([fdo#111825] / [i915#1825]) +14 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#1825]) +8 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][190] ([fdo#111825]) +23 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3458]) +7 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][192] ([fdo#109280]) +5 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#8708]) +32 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3023]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8708]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][196] ([fdo#110189]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#8708]) +10 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: - shard-glk: NOTRUN -> [SKIP][198] ([fdo#109271]) +73 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3458]) +24 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#4816]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#4816]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#1839]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-18/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#6301]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8821]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8821]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#3555]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-16/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][208] ([i915#8292]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9423]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9423]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#5176]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#9423]) +19 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#5176] / [i915#9423]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#5235]) +7 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#5235]) +11 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#5235]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-17/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#9685]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][218] -> [FAIL][219] ([i915#9295]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][220] -> [SKIP][221] ([i915#4281]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-2/igt@kms_pm_dc@dc9-dpms.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8430]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][223] -> [SKIP][224] ([i915#9519]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-rkl: [PASS][225] -> [SKIP][226] ([i915#9519]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#9519]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#6524] / [i915#6805]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#6524]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-15/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#9683]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-15/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#9683]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#9685]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#4235]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3555]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][235] -> [FAIL][236] ([IGT#2]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-11/igt@kms_sysfs_edid_timing.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [FAIL][237] ([i915#9196]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2437]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#2437] / [i915#9412]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][240] ([i915#8724]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2434]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2434]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@perf@mi-rpc.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#2434]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-13/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][244] -> [FAIL][245] ([i915#4349]) +3 other tests fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][246] ([i915#6806]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][247] ([i915#5793]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3291] / [i915#3708]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][249] ([fdo#109295] / [i915#3291] / [i915#3708]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#3708] / [i915#4077]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#3708]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3708]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][253] ([fdo#109295] / [i915#3708]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#3708]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@prime_vgem@fence-read-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][255] ([i915#9781]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][256] ([i915#9779]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-rkl: NOTRUN -> [FAIL][257] ([i915#9779]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][258] ([i915#9779]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#4818]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_create_bo@create-bo-zeroed: - shard-tglu: NOTRUN -> [SKIP][260] ([fdo#109315] / [i915#2575]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-3/igt@v3d/v3d_create_bo@create-bo-zeroed.html * igt@v3d/v3d_get_param@get-bad-param: - shard-snb: NOTRUN -> [SKIP][261] ([fdo#109271]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb6/igt@v3d/v3d_get_param@get-bad-param.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#2575]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-16/igt@v3d/v3d_submit_cl@bad-extension.html - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#2575]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-1/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_cl@bad-pad: - shard-rkl: NOTRUN -> [SKIP][264] ([fdo#109315]) +4 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@v3d/v3d_submit_cl@bad-pad.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#2575]) +20 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-2/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#7711]) +4 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-12/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#7711]) +11 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-11/igt@vc4/vc4_tiling@set-bad-modifier.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#7711]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@vc4/vc4_wait_bo@used-bo-1ns.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#7711]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-3/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][270] ([i915#7742]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-7/igt@drm_fdinfo@idle@rcs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][272] ([i915#7297]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][274] ([i915#5784]) -> [PASS][275] +1 other test pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-2/igt@gem_eio@reset-stress.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-7/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][276] ([i915#5784]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-19/igt@gem_eio@unwedge-stress.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][278] ([i915#2842]) -> [PASS][279] +1 other test pass [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [INCOMPLETE][280] -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@i915_module_load@reload: - shard-snb: [INCOMPLETE][282] ([i915#4528]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb5/igt@i915_module_load@reload.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb5/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [INCOMPLETE][284] ([i915#9200]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][286] ([i915#5138]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][288] ([i915#3743]) -> [PASS][289] +1 other test pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][290] ([i915#2346]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-snb: [SKIP][292] ([fdo#109271]) -> [PASS][293] +9 other tests pass [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][294] ([i915#9519]) -> [PASS][295] +1 other test pass [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][296] ([i915#9519]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [FAIL][298] ([i915#5465]) -> [PASS][299] +1 other test pass [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [FAIL][300] ([i915#9196]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][302] ([i915#9196]) -> [PASS][303] +1 other test pass [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][304] ([i915#4349]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-13/igt@perf_pmu@busy-idle-check-all@vecs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][306] ([i915#9618]) -> [INCOMPLETE][307] ([i915#9408]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][308] -> [ABORT][309] ([i915#9697]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [FAIL][310] ([i915#2681] / [i915#3591]) -> [WARN][311] ([i915#2681]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][312] ([i915#5138]) -> [FAIL][313] ([i915#3763] / [i915#5138]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][314] ([i915#8063]) -> [SKIP][315] ([i915#9424]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-5/igt@kms_content_protection@mei-interface.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-4/igt@kms_content_protection@mei-interface.html - shard-dg1: [SKIP][316] ([i915#9433]) -> [SKIP][317] ([i915#9424]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-dg1-17/igt@kms_content_protection@mei-interface.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-dg1-16/igt@kms_content_protection@mei-interface.html - shard-tglu: [SKIP][318] ([i915#8063]) -> [SKIP][319] ([i915#9424]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-tglu-2/igt@kms_content_protection@mei-interface.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-tglu-2/igt@kms_content_protection@mei-interface.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][320] ([fdo#110189] / [i915#3955]) -> [SKIP][321] ([i915#3955]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][322] ([i915#3361]) -> [FAIL][323] ([i915#9295]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][324] ([i915#3361]) -> [SKIP][325] ([i915#4281]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13990/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3763]: https://gitlab.freedesktop.org/drm/intel/issues/3763 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9561]: https://gitlab.freedesktop.org/drm/intel/issues/9561 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9780]: https://gitlab.freedesktop.org/drm/intel/issues/9780 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7626 -> IGTPW_10359 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13990: 85d33d0ad82a5c1a71492f14a5ceb67ada6a22d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10359: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/index.html IGT_7626: 154b7288552cd7ed3033f8ef396e88d0bd1b7646 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/index.html [-- Attachment #2: Type: text/html, Size: 102214 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for xe: Validate fixed CCS mode setting (rev2) 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura ` (6 preceding siblings ...) 2023-12-07 1:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-12-07 1:28 ` Patchwork 7 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-12-07 1:28 UTC (permalink / raw) To: Niranjana Vishwanathapura; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2999 bytes --] == Series Details == Series: xe: Validate fixed CCS mode setting (rev2) URL : https://patchwork.freedesktop.org/series/127453/ State : success == Summary == CI Bug Log - changes from XEIGT_7626_BAT -> XEIGTPW_10359_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10359_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10359/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@xe_create@create-execqueues-leak: - bat-atsm-2: [PASS][3] -> [FAIL][4] ([Intel XE#524]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10359/bat-atsm-2/igt@xe_create@create-execqueues-leak.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlp-7: [FAIL][5] ([i915#2346]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10359/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@xe_prime_self_import@basic-with_fd_dup: - bat-atsm-2: [FAIL][7] ([Intel XE#999]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7626/bat-atsm-2/igt@xe_prime_self_import@basic-with_fd_dup.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10359/bat-atsm-2/igt@xe_prime_self_import@basic-with_fd_dup.html [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/999 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7626 -> IGTPW_10359 * Linux: xe-556-d33ebd7511c2b53c5dc006e2daa25214fc8a5921 -> xe-557-668d13abebbbc3812de86be1f8477475e1d90728 IGTPW_10359: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10359/index.html IGT_7626: 154b7288552cd7ed3033f8ef396e88d0bd1b7646 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-556-d33ebd7511c2b53c5dc006e2daa25214fc8a5921: d33ebd7511c2b53c5dc006e2daa25214fc8a5921 xe-557-668d13abebbbc3812de86be1f8477475e1d90728: 668d13abebbbc3812de86be1f8477475e1d90728 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10359/index.html [-- Attachment #2: Type: text/html, Size: 3672 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2023-12-07 19:25 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-06 20:00 [igt-dev] [PATCH i-g-t v4 0/3] xe: Validate fixed CCS mode setting Niranjana Vishwanathapura 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 1/3] lib/xe: Add __xe_exec_queue_create() Niranjana Vishwanathapura 2023-12-07 11:41 ` Kamil Konieczny 2023-12-07 19:16 ` Niranjana Vishwanathapura 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 2/3] lib/intel_compute: Update intel_compute to run on specified engine Niranjana Vishwanathapura 2023-12-07 11:56 ` Kamil Konieczny 2023-12-07 19:25 ` Niranjana Vishwanathapura 2023-12-06 20:00 ` [igt-dev] [PATCH i-g-t v4 3/3] tests/xe_compute: Validate ccs_mode setting Niranjana Vishwanathapura 2023-12-06 21:53 ` [igt-dev] ✗ Fi.CI.BAT: failure for xe: Validate fixed CCS mode setting Patchwork 2023-12-06 23:28 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 2023-12-06 23:39 ` [igt-dev] ✓ Fi.CI.BAT: success for xe: Validate fixed CCS mode setting (rev2) Patchwork 2023-12-07 1:13 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-12-07 1:28 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox