* [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R
@ 2024-04-01 18:46 sai.gowtham.ch
2024-04-01 18:46 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch
` (5 more replies)
0 siblings, 6 replies; 15+ messages in thread
From: sai.gowtham.ch @ 2024-04-01 18:46 UTC (permalink / raw)
To: igt-dev, rodrigo.vivi, sai.gowtham.ch
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
This patch series has following changes:
1. Validate functionality of VM_BIND USERPTR/PREFETCH op with S&R
2. Test vm_unbind op by binding multiple va's to a vm and check the
functionality with S&R.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Sai Gowtham Ch (3):
tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend
and resume
tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and
resume
tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R
tests/intel/xe_pm.c | 102 +++++++++++++++++++++++++++++++++++---------
1 file changed, 82 insertions(+), 20 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch @ 2024-04-01 18:46 ` sai.gowtham.ch 2024-04-03 20:26 ` Rodrigo Vivi 2024-04-01 18:46 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch " sai.gowtham.ch ` (4 subsequent siblings) 5 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-04-01 18:46 UTC (permalink / raw) To: igt-dev, rodrigo.vivi, sai.gowtham.ch From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test validates vm bind usertpr functionality, by suspend and resuming the device after binding VM to a VA. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 80 +++++++++++++++++++++++++++++++++++---------- 1 file changed, 62 insertions(+), 18 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index c8a5cc6de..d2e5520a1 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -33,6 +33,8 @@ #define MAGIC_1 0xc0ffee #define MAGIC_2 0xdeadbeef +#define USERPTR (0x1 << 0) + typedef struct { int fd_xe; struct pci_device *pci_xe; @@ -272,11 +274,26 @@ static void close_fw_handle(int sig) * @d3hot: d3hot * @d3cold: d3cold */ - +/** + * SUBTEST: %s-vm-bind-%s + * DESCRIPTION: Test to check suspend/autoresume on %arg[1] state + * with vm bind %arg[2] combination + * Functionality: pm - %arg[1] + * + * arg[1]: + * + * @s2idle: s2idle + * @s3: s3 + * @s4: s4 + * + * arg[2]: + * + * @usrptr: usrptr + */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, int n_exec_queues, int n_execs, enum igt_suspend_state s_state, - enum igt_acpi_d_state d_state) + enum igt_acpi_d_state d_state, unsigned int flags) { uint32_t vm; uint64_t addr = 0x1a0000; @@ -320,10 +337,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, if (check_rpm && runtime_usage_available(device.pci_xe)) rpm_usage = igt_pm_get_runtime_usage(device.pci_xe); - bo = xe_bo_create(device.fd_xe, vm, bo_size, - vram_if_possible(device.fd_xe, eci->gt_id), - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); - data = xe_bo_map(device.fd_xe, bo, bo_size); + if (flags & USERPTR) { + data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); + memset(data, 0, bo_size); + } else { + bo = xe_bo_create(device.fd_xe, vm, bo_size, + vram_if_possible(device.fd_xe, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + data = xe_bo_map(device.fd_xe, bo, bo_size); + } for (i = 0; i < n_exec_queues; i++) { exec_queues[i] = xe_exec_queue_create(device.fd_xe, vm, eci, 0); @@ -333,8 +355,12 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, sync[0].handle = syncobj_create(device.fd_xe, 0); - xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, - bo_size, sync, 1); + if (bo) + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, + bo_size, sync, 1); + else + xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], + to_user_pointer(data), addr, bo_size, sync, 1); if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); @@ -398,9 +424,12 @@ NULL)); xe_exec_queue_destroy(device.fd_xe, bind_exec_queues[i]); } - munmap(data, bo_size); - - gem_close(device.fd_xe, bo); + if (bo) { + munmap(data, bo_size); + gem_close(device.fd_xe, bo); + } else { + free(data); + } if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) < rpm_usage); @@ -583,6 +612,13 @@ igt_main { "d3cold", IGT_ACPI_D3Cold }, { NULL }, }; + const struct vm_op { + const char *name; + unsigned int flags; + } vm_op[] = { + { "usrptr", USERPTR }, + { NULL }, + }; igt_fixture { memset(&device, 0, sizeof(device)); @@ -593,7 +629,7 @@ igt_main /* Always perform initial once-basic exec checking for health */ xe_for_each_engine(device.fd_xe, hwe) - test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM); + test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM, 0); igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); igt_assert(igt_setup_runtime_pm(device.fd_xe)); @@ -610,7 +646,7 @@ igt_main igt_subtest_f("%s-basic-exec", s->name) { xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, - NO_RPM); + NO_RPM, 0); } igt_subtest_f("%s-exec-after", s->name) { @@ -618,13 +654,21 @@ igt_main SUSPEND_TEST_NONE); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, NO_SUSPEND, - NO_RPM); + NO_RPM, 0); } igt_subtest_f("%s-multiple-execs", s->name) { xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, s->state, - NO_RPM); + NO_RPM, 0); + } + + for (const struct vm_op *op = vm_op; op->name; op++) { + igt_subtest_f("%s-vm-bind-%s", s->name, op->name) { + xe_for_each_engine(device.fd_xe, hwe) + test_exec(device, hwe, 16, 32, s->state, + NO_RPM, op->flags); + } } for (const struct d_state *d = d_states; d->name; d++) { @@ -632,7 +676,7 @@ igt_main igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, - NO_RPM); + NO_RPM, 0); cleanup_d3(device); } } @@ -649,7 +693,7 @@ igt_main igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 1, - NO_SUSPEND, d->state); + NO_SUSPEND, d->state, 0); cleanup_d3(device); } @@ -657,7 +701,7 @@ igt_main igt_assert(setup_d3(device, d->state)); xe_for_each_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, - NO_SUSPEND, d->state); + NO_SUSPEND, d->state, 0); cleanup_d3(device); } } -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume 2024-04-01 18:46 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch @ 2024-04-03 20:26 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-04-03 20:26 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Tue, Apr 02, 2024 at 12:16:29AM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test validates vm bind usertpr functionality, by suspend and resuming the device > after binding VM to a VA. > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 80 +++++++++++++++++++++++++++++++++++---------- > 1 file changed, 62 insertions(+), 18 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index c8a5cc6de..d2e5520a1 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -33,6 +33,8 @@ > #define MAGIC_1 0xc0ffee > #define MAGIC_2 0xdeadbeef > > +#define USERPTR (0x1 << 0) or we use tab or we use 1 space. But not need for 9 spaces. Then, please also be consistent. In the last patch you use tab instead of spaces. everything else in this patch looks good to me. > + > typedef struct { > int fd_xe; > struct pci_device *pci_xe; > @@ -272,11 +274,26 @@ static void close_fw_handle(int sig) > * @d3hot: d3hot > * @d3cold: d3cold > */ > - > +/** > + * SUBTEST: %s-vm-bind-%s > + * DESCRIPTION: Test to check suspend/autoresume on %arg[1] state > + * with vm bind %arg[2] combination > + * Functionality: pm - %arg[1] > + * > + * arg[1]: > + * > + * @s2idle: s2idle > + * @s3: s3 > + * @s4: s4 > + * > + * arg[2]: > + * > + * @usrptr: usrptr Please keep consistent with the other definitions here and use tab instead of spaces, since everything else is using tabs in this doc blocks. > + */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > int n_exec_queues, int n_execs, enum igt_suspend_state s_state, > - enum igt_acpi_d_state d_state) > + enum igt_acpi_d_state d_state, unsigned int flags) > { > uint32_t vm; > uint64_t addr = 0x1a0000; > @@ -320,10 +337,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > if (check_rpm && runtime_usage_available(device.pci_xe)) > rpm_usage = igt_pm_get_runtime_usage(device.pci_xe); > > - bo = xe_bo_create(device.fd_xe, vm, bo_size, > - vram_if_possible(device.fd_xe, eci->gt_id), > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > - data = xe_bo_map(device.fd_xe, bo, bo_size); > + if (flags & USERPTR) { > + data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); > + memset(data, 0, bo_size); > + } else { > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > + vram_if_possible(device.fd_xe, eci->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + data = xe_bo_map(device.fd_xe, bo, bo_size); > + } > > for (i = 0; i < n_exec_queues; i++) { > exec_queues[i] = xe_exec_queue_create(device.fd_xe, vm, eci, 0); > @@ -333,8 +355,12 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > sync[0].handle = syncobj_create(device.fd_xe, 0); > > - xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, > - bo_size, sync, 1); > + if (bo) > + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, > + bo_size, sync, 1); > + else > + xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > + to_user_pointer(data), addr, bo_size, sync, 1); > > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > @@ -398,9 +424,12 @@ NULL)); > xe_exec_queue_destroy(device.fd_xe, bind_exec_queues[i]); > } > > - munmap(data, bo_size); > - > - gem_close(device.fd_xe, bo); > + if (bo) { > + munmap(data, bo_size); > + gem_close(device.fd_xe, bo); > + } else { > + free(data); > + } > > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) < rpm_usage); > @@ -583,6 +612,13 @@ igt_main > { "d3cold", IGT_ACPI_D3Cold }, > { NULL }, > }; > + const struct vm_op { > + const char *name; > + unsigned int flags; > + } vm_op[] = { > + { "usrptr", USERPTR }, > + { NULL }, > + }; > > igt_fixture { > memset(&device, 0, sizeof(device)); > @@ -593,7 +629,7 @@ igt_main > > /* Always perform initial once-basic exec checking for health */ > xe_for_each_engine(device.fd_xe, hwe) > - test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM); > + test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM, 0); > > igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); > igt_assert(igt_setup_runtime_pm(device.fd_xe)); > @@ -610,7 +646,7 @@ igt_main > igt_subtest_f("%s-basic-exec", s->name) { > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, s->state, > - NO_RPM); > + NO_RPM, 0); > } > > igt_subtest_f("%s-exec-after", s->name) { > @@ -618,13 +654,21 @@ igt_main > SUSPEND_TEST_NONE); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, NO_SUSPEND, > - NO_RPM); > + NO_RPM, 0); > } > > igt_subtest_f("%s-multiple-execs", s->name) { > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, s->state, > - NO_RPM); > + NO_RPM, 0); > + } > + > + for (const struct vm_op *op = vm_op; op->name; op++) { > + igt_subtest_f("%s-vm-bind-%s", s->name, op->name) { > + xe_for_each_engine(device.fd_xe, hwe) > + test_exec(device, hwe, 16, 32, s->state, > + NO_RPM, op->flags); > + } > } > > for (const struct d_state *d = d_states; d->name; d++) { > @@ -632,7 +676,7 @@ igt_main > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, s->state, > - NO_RPM); > + NO_RPM, 0); > cleanup_d3(device); > } > } > @@ -649,7 +693,7 @@ igt_main > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 1, > - NO_SUSPEND, d->state); > + NO_SUSPEND, d->state, 0); > cleanup_d3(device); > } > > @@ -657,7 +701,7 @@ igt_main > igt_assert(setup_d3(device, d->state)); > xe_for_each_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, > - NO_SUSPEND, d->state); > + NO_SUSPEND, d->state, 0); > cleanup_d3(device); > } > } > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch 2024-04-01 18:46 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch @ 2024-04-01 18:46 ` sai.gowtham.ch 2024-04-03 20:27 ` Rodrigo Vivi 2024-04-01 18:46 ` [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R sai.gowtham.ch ` (3 subsequent siblings) 5 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-04-01 18:46 UTC (permalink / raw) To: igt-dev, rodrigo.vivi, sai.gowtham.ch From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test functionality of vm_bind prefetch with S&R. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index d2e5520a1..839540f5c 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -34,6 +34,7 @@ #define MAGIC_2 0xdeadbeef #define USERPTR (0x1 << 0) +#define PREFETCH (0x1 << 2) typedef struct { int fd_xe; @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) * arg[2]: * * @usrptr: usrptr + * @prefetch: prefetch */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, @@ -362,6 +364,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], to_user_pointer(data), addr, bo_size, sync, 1); + if (flags & PREFETCH) + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, + bo_size, sync, 1, 0); + if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); @@ -617,6 +623,7 @@ igt_main unsigned int flags; } vm_op[] = { { "usrptr", USERPTR }, + { "prefetch", PREFETCH }, { NULL }, }; -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-01 18:46 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch " sai.gowtham.ch @ 2024-04-03 20:27 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-04-03 20:27 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Tue, Apr 02, 2024 at 12:16:30AM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test functionality of vm_bind prefetch with S&R. > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index d2e5520a1..839540f5c 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -34,6 +34,7 @@ > #define MAGIC_2 0xdeadbeef > > #define USERPTR (0x1 << 0) > +#define PREFETCH (0x1 << 2) > > typedef struct { > int fd_xe; > @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) > * arg[2]: > * > * @usrptr: usrptr > + * @prefetch: prefetch > */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > @@ -362,6 +364,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > to_user_pointer(data), addr, bo_size, sync, 1); > > + if (flags & PREFETCH) > + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > + bo_size, sync, 1, 0); this test is failing badly on my DG2. looking to tests/intel/xe_exec_fault_mode.c it looks like there's a lot more to do in the prefech case, then only this like nere. > + > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > > @@ -617,6 +623,7 @@ igt_main > unsigned int flags; > } vm_op[] = { > { "usrptr", USERPTR }, > + { "prefetch", PREFETCH }, > { NULL }, > }; > > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch 2024-04-01 18:46 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch 2024-04-01 18:46 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch " sai.gowtham.ch @ 2024-04-01 18:46 ` sai.gowtham.ch 2024-04-03 20:28 ` Rodrigo Vivi 2024-04-01 19:29 ` ✓ Fi.CI.BAT: success for tests/intel/xe_pm: Tests to validate vm-bind " Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-04-01 18:46 UTC (permalink / raw) To: igt-dev, rodrigo.vivi, sai.gowtham.ch From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test validates vm unbind all flag functionality with suspend and resume. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index 839540f5c..6776f5505 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -35,6 +35,7 @@ #define USERPTR (0x1 << 0) #define PREFETCH (0x1 << 2) +#define UNBIND_ALL (0x1 << 3) typedef struct { int fd_xe; @@ -219,6 +220,7 @@ static void close_fw_handle(int sig) close(fw_handle); } +#define MAX_VMAS 2 /** * SUBTEST: %s-basic * Description: set GPU state to %arg[1] and test suspend/autoresume @@ -291,6 +293,7 @@ static void close_fw_handle(int sig) * * @usrptr: usrptr * @prefetch: prefetch + * @unbind-all: unbind-all */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, @@ -308,6 +311,7 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, .num_syncs = 2, .syncs = to_user_pointer(sync), }; + int n_vmas = flags & UNBIND_ALL ? MAX_VMAS : 1; uint32_t exec_queues[MAX_N_EXEC_QUEUES]; uint32_t bind_exec_queues[MAX_N_EXEC_QUEUES]; uint32_t syncobjs[MAX_N_EXEC_QUEUES]; @@ -358,8 +362,9 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, sync[0].handle = syncobj_create(device.fd_xe, 0); if (bo) - xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, - bo_size, sync, 1); + for (i = 0; i < n_vmas; i++) + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, + addr + i * bo_size, bo_size, sync, 1); else xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], to_user_pointer(data), addr, bo_size, sync, 1); @@ -414,8 +419,13 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, rpm_usage = igt_pm_get_runtime_usage(device.pci_xe); sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; - xe_vm_unbind_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, - bo_size, sync, 1); + + if (n_vmas == MAX_VMAS) + xe_vm_unbind_all_async(device.fd_xe, vm, 0, bo, sync, 1); + else + xe_vm_unbind_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, + bo_size, sync, 1); + igt_assert(syncobj_wait(device.fd_xe, &sync[0].handle, 1, INT64_MAX, 0, NULL)); @@ -624,6 +634,7 @@ igt_main } vm_op[] = { { "usrptr", USERPTR }, { "prefetch", PREFETCH }, + { "unbind-all", UNBIND_ALL }, { NULL }, }; -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R 2024-04-01 18:46 ` [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R sai.gowtham.ch @ 2024-04-03 20:28 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-04-03 20:28 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Tue, Apr 02, 2024 at 12:16:31AM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test validates vm unbind all flag functionality with suspend and resume. > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 19 +++++++++++++++---- > 1 file changed, 15 insertions(+), 4 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 839540f5c..6776f5505 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -35,6 +35,7 @@ > > #define USERPTR (0x1 << 0) > #define PREFETCH (0x1 << 2) > +#define UNBIND_ALL (0x1 << 3) please be consistent here. > > typedef struct { > int fd_xe; > @@ -219,6 +220,7 @@ static void close_fw_handle(int sig) > close(fw_handle); > } > > +#define MAX_VMAS 2 > /** > * SUBTEST: %s-basic > * Description: set GPU state to %arg[1] and test suspend/autoresume > @@ -291,6 +293,7 @@ static void close_fw_handle(int sig) > * > * @usrptr: usrptr > * @prefetch: prefetch > + * @unbind-all: unbind-all > */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > @@ -308,6 +311,7 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > .num_syncs = 2, > .syncs = to_user_pointer(sync), > }; > + int n_vmas = flags & UNBIND_ALL ? MAX_VMAS : 1; > uint32_t exec_queues[MAX_N_EXEC_QUEUES]; > uint32_t bind_exec_queues[MAX_N_EXEC_QUEUES]; > uint32_t syncobjs[MAX_N_EXEC_QUEUES]; > @@ -358,8 +362,9 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > sync[0].handle = syncobj_create(device.fd_xe, 0); > > if (bo) > - xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, addr, > - bo_size, sync, 1); > + for (i = 0; i < n_vmas; i++) > + xe_vm_bind_async(device.fd_xe, vm, bind_exec_queues[0], bo, 0, > + addr + i * bo_size, bo_size, sync, 1); > else > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > to_user_pointer(data), addr, bo_size, sync, 1); > @@ -414,8 +419,13 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > rpm_usage = igt_pm_get_runtime_usage(device.pci_xe); > > sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL; > - xe_vm_unbind_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > - bo_size, sync, 1); > + > + if (n_vmas == MAX_VMAS) if (n_vmas > 1) would sound better here. > + xe_vm_unbind_all_async(device.fd_xe, vm, 0, bo, sync, 1); > + else > + xe_vm_unbind_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > + bo_size, sync, 1); > + > igt_assert(syncobj_wait(device.fd_xe, &sync[0].handle, 1, INT64_MAX, 0, > NULL)); > > @@ -624,6 +634,7 @@ igt_main > } vm_op[] = { > { "usrptr", USERPTR }, > { "prefetch", PREFETCH }, > + { "unbind-all", UNBIND_ALL }, > { NULL }, > }; > > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_pm: Tests to validate vm-bind with S&R 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch ` (2 preceding siblings ...) 2024-04-01 18:46 ` [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R sai.gowtham.ch @ 2024-04-01 19:29 ` Patchwork 2024-04-01 19:34 ` ✓ CI.xeBAT: " Patchwork 2024-04-01 21:18 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-04-01 19:29 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3597 bytes --] == Series Details == Series: tests/intel/xe_pm: Tests to validate vm-bind with S&R URL : https://patchwork.freedesktop.org/series/131897/ State : success == Summary == CI Bug Log - changes from IGT_7793 -> IGTPW_10960 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/index.html Participating hosts (31 -> 31) ------------------------------ Additional (2): bat-kbl-2 fi-bsw-nick Missing (2): bat-jsl-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10960 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/bat-kbl-2/igt@fbdev@info.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][2] +19 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html - bat-kbl-2: NOTRUN -> [SKIP][3] +39 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_selftest@live@hangcheck: - bat-adls-6: [PASS][4] -> [DMESG-WARN][5] ([i915#5591]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/bat-adls-6/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/bat-adls-6/igt@i915_selftest@live@hangcheck.html * igt@kms_force_connector_basic@force-edid: - bat-dg2-8: [PASS][6] -> [INCOMPLETE][7] ([i915#10583]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/bat-dg2-8/igt@kms_force_connector_basic@force-edid.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/bat-dg2-8/igt@kms_force_connector_basic@force-edid.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - {bat-mtlp-9}: [DMESG-WARN][8] ([i915#9522]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/bat-mtlp-9/igt@i915_selftest@live@hangcheck.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/bat-mtlp-9/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10583]: https://gitlab.freedesktop.org/drm/intel/issues/10583 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#9522]: https://gitlab.freedesktop.org/drm/intel/issues/9522 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7793 -> IGTPW_10960 CI-20190529: 20190529 CI_DRM_14511: a585b19932157f2c96293bf00288968ada86d435 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10960: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/index.html IGT_7793: d6485199d0e6400dc357e3c1da9df45e8188713c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_pm@s2idle-vm-bind-prefetch +igt@xe_pm@s2idle-vm-bind-unbind-all +igt@xe_pm@s2idle-vm-bind-usrptr +igt@xe_pm@s3-vm-bind-prefetch +igt@xe_pm@s3-vm-bind-unbind-all +igt@xe_pm@s3-vm-bind-usrptr +igt@xe_pm@s4-vm-bind-prefetch +igt@xe_pm@s4-vm-bind-unbind-all +igt@xe_pm@s4-vm-bind-usrptr == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/index.html [-- Attachment #2: Type: text/html, Size: 4377 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_pm: Tests to validate vm-bind with S&R 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch ` (3 preceding siblings ...) 2024-04-01 19:29 ` ✓ Fi.CI.BAT: success for tests/intel/xe_pm: Tests to validate vm-bind " Patchwork @ 2024-04-01 19:34 ` Patchwork 2024-04-01 21:18 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-04-01 19:34 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1247 bytes --] == Series Details == Series: tests/intel/xe_pm: Tests to validate vm-bind with S&R URL : https://patchwork.freedesktop.org/series/131897/ State : success == Summary == CI Bug Log - changes from XEIGT_7793_BAT -> XEIGTPW_10960_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10960_BAT that come from known issues: ### IGT changes ### {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1415 Build changes ------------- * IGT: IGT_7793 -> IGTPW_10960 IGTPW_10960: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/index.html IGT_7793: d6485199d0e6400dc357e3c1da9df45e8188713c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1021-a585b19932157f2c96293bf00288968ada86d435: a585b19932157f2c96293bf00288968ada86d435 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10960/index.html [-- Attachment #2: Type: text/html, Size: 1725 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_pm: Tests to validate vm-bind with S&R 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch ` (4 preceding siblings ...) 2024-04-01 19:34 ` ✓ CI.xeBAT: " Patchwork @ 2024-04-01 21:18 ` Patchwork 5 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2024-04-01 21:18 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 97861 bytes --] == Series Details == Series: tests/intel/xe_pm: Tests to validate vm-bind with S&R URL : https://patchwork.freedesktop.org/series/131897/ State : failure == Summary == CI Bug Log - changes from IGT_7793_full -> IGTPW_10960_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10960_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10960_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_10960/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10960_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_joiner@invalid-modeset: - shard-dg1: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@kms_big_joiner@invalid-modeset.html - shard-dg2: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a2: - shard-dg2: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-2/igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a2.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@kms_flip@dpms-vs-vblank-race-interruptible@d-hdmi-a2.html Known issues ------------ Here are the changes found in IGTPW_10960_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-noreloc-keep-cache-simple: - shard-snb: NOTRUN -> [SKIP][6] +103 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb4/igt@api_intel_bb@object-noreloc-keep-cache-simple.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-10/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#9364]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: NOTRUN -> [FAIL][22] ([i915#6268]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@hang: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@legacy-engines-hostile: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hostile.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg2: [PASS][30] -> [INCOMPLETE][31] ([i915#10513]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-6/igt@gem_eio@kms.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][32] -> [FAIL][33] ([i915#5784]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-15/igt@gem_eio@reset-stress.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4812]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@gem_exec_balancer@bonded-semaphore.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4036]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][38] ([i915#6117]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][39] ([i915#9606]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-glk5/igt@gem_exec_capture@many-4k-incremental.html - shard-dg1: NOTRUN -> [FAIL][40] ([i915#9606]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: NOTRUN -> [FAIL][41] ([i915#2846]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4473] / [i915#4771]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4473]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: NOTRUN -> [FAIL][45] ([i915#2842]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3711]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +17 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +13 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@gem_exec_reloc@basic-wc-read-active.html - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3281]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [PASS][56] -> [FAIL][57] ([i915#10378]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-15/igt@gem_lmem_swapping@heavy-multi@lmem0.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-13/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [PASS][60] -> [FAIL][61] ([i915#10378]) +2 other tests fail [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: NOTRUN -> [FAIL][62] ([i915#10378]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][64] -> [TIMEOUT][65] ([i915#5493]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-glk: NOTRUN -> [SKIP][66] ([i915#4613]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-glk3/igt@gem_lmem_swapping@verify.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-9/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4077]) +15 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_mmap_wc@coherency: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@read-write: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@gem_mmap_wc@read-write.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb5/igt@gem_pwrite@basic-exhaustion.html - shard-tglu: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-9/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][76] ([i915#2658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-glk1/igt@gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@fail-invalid-protected-context: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +5 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@new-obj: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +7 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4079]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@gem_tiled_pread_pwrite.html * igt@gem_tiling_max_stride: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4077]) +10 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@gem_tiling_max_stride.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-4/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#2527]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@gen9_exec_parse@bb-secure.html - shard-tglu: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-4/igt@gen9_exec_parse@bb-secure.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@gen9_exec_parse@bb-secure.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4881]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@i915_fb_tiling.html * igt@i915_module_load@reload-no-display: - shard-snb: [PASS][99] -> [INCOMPLETE][100] ([i915#9849]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-snb6/igt@i915_module_load@reload-no-display.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][101] -> [INCOMPLETE][102] ([i915#9820] / [i915#9849]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][103] -> [INCOMPLETE][104] ([i915#9820] / [i915#9849]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#7178]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#8399]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][108] +19 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][109] -> [FAIL][110] ([i915#3591]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#8431]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][112] ([i915#8346]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#8925]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-3/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3555] / [i915#8925]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-3/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#8925]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4387]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@mock@memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][117] ([i915#9311]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][118] ([i915#9311]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][119] -> [FAIL][120] ([i915#10031]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html - shard-tglu: NOTRUN -> [INCOMPLETE][121] ([i915#7443]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#5190]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4212]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-3/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#3826]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-10/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8709]) +11 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +8 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +4 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#5286]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3638]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3638]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][133] -> [FAIL][134] ([i915#3743]) +2 other tests fail [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6187]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [FAIL][136] ([i915#3743]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +6 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5190]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][139] +26 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +79 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#10278]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-3/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +65 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +51 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +39 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +137 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3742]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#7213] / [i915#9010]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4087]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#7828]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#7828]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#7828]) +9 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#7828]) +9 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3116]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#7116] / [i915#9424]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#9424]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9424]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#8063] / [i915#9433]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3359]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3359]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3359]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3359]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#3555]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#4213]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][170] ([i915#4103]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#9809]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][172] ([i915#2346]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][174] ([i915#4103]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/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][175] ([i915#9227]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8588]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#8588]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8588]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3555]) +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3804]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#1257]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-6/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#8812]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3840]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#3840]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_dsc@dsc-with-bpc-formats.html - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#3840]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840] / [i915#9053]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3469]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-10/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3469]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3469]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#4854]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#4854]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#9337]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-10/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#658]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3637]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-9/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][197] -> [FAIL][198] ([i915#2122]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9934]) +5 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#2587] / [i915#2672]) +5 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#2672]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2672]) +4 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#2587] / [i915#2672]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8810]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-snb: [PASS][206] -> [SKIP][207] +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#1825]) +33 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2: [PASS][209] -> [FAIL][210] ([i915#6880]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-stridechange.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#1825]) +14 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][212] +62 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][213] +52 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#8708]) +8 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#5439]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#9766]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#10070]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-rkl: NOTRUN -> [SKIP][218] ([i915#10070]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3458]) +6 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3458]) +21 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3023]) +5 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8708]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#5354]) +9 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8708]) +20 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_hdr@static-swap.html - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#9457]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8821]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#8806]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][232] ([i915#8292]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#9423]) +11 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9423]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#9423]) +11 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#5176] / [i915#9423]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#5176] / [i915#9423]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#9423]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#5235]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#5235]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#5235]) +9 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#5235]) +7 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#5235] / [i915#9423]) +15 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#5235]) +7 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#5354]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_pm_backlight@basic-brightness.html - shard-dg1: NOTRUN -> [SKIP][246] ([i915#5354]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#9685]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#10139]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][249] -> [FAIL][250] ([i915#9295]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#9685]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#9340]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][253] ([i915#9340]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#8430]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#8430]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-7/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8430]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#9519]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][258] -> [SKIP][259] ([i915#9519]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-2/igt@kms_pm_rpm@dpms-non-lpsp.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#9519]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#9519]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#9519]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#6524]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][264] ([i915#6524]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-5/igt@kms_prime@d3hot.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#6524]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][266] +16 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#9808]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#4348]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-primary-render: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#1072] / [i915#9732]) +10 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][270] +164 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-glk5/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#9688]) +14 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@kms_psr@pr-cursor-blt.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +22 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +6 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-4/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#4077] / [i915#9688]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-6/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][275] ([i915#9732]) +15 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-4/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#9685]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][277] ([i915#9685]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg1: [PASS][278] -> [DMESG-WARN][279] ([i915#1982]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-13/igt@kms_rotation_crc@primary-rotation-270.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#4235]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#5289]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#5190]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][283] ([i915#5289]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#4235] / [i915#5190]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#5289]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-none.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#3555]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8823]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][289] ([IGT#2]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-snb: [PASS][290] -> [FAIL][291] ([i915#9196]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][292] -> [FAIL][293] ([i915#9196]) +1 other test fail [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8808]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#9906]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg2: NOTRUN -> [SKIP][296] ([i915#9906]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#8808] / [i915#9906]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#2437]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][299] ([i915#2437]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-glk3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#2437] / [i915#9412]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-3/igt@kms_writeback@writeback-pixel-formats.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#2437] / [i915#9412]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#2437] / [i915#9412]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-15/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2434] / [i915#7387]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-5/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: NOTRUN -> [FAIL][304] ([i915#4349]) +1 other test fail [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][305] -> [FAIL][306] ([i915#4349]) +3 other tests fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#8516]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#3708]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#3291] / [i915#3708]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][310] ([i915#3291] / [i915#3708]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#3708]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-16/igt@prime_vgem@basic-write.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#9917]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@sriov_basic@bind-unbind-vf.html - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#9917]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-3/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#9917]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][315] ([i915#9779]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@base-params: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#2575]) +13 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@v3d/v3d_get_param@base-params.html * igt@v3d/v3d_mmap@mmap-bad-handle: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#2575]) +6 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@v3d/v3d_mmap@mmap-bad-handle.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#2575]) +16 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#2575]) +13 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-6/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#7711]) +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#7711]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-dg1: NOTRUN -> [SKIP][322] ([i915#7711]) +11 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html * igt@vc4/vc4_wait_bo@bad-pad: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#7711]) +4 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@vc4/vc4_wait_bo@bad-pad.html #### Possible fixes #### * igt@api_intel_allocator@two-level-inception-interruptible: - shard-snb: [ABORT][324] -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-snb4/igt@api_intel_allocator@two-level-inception-interruptible.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb5/igt@api_intel_allocator@two-level-inception-interruptible.html * igt@gem_eio@kms: - shard-tglu: [INCOMPLETE][326] ([i915#10513]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-8/igt@gem_eio@kms.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-8/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][328] ([i915#5784]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-6/igt@gem_eio@reset-stress.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [FAIL][330] ([i915#2842]) -> [PASS][331] +1 other test pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-rkl-3/igt@gem_exec_fair@basic-pace@bcs0.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][332] ([i915#2876]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_lmem_swapping@basic@lmem0: - shard-dg2: [FAIL][334] ([i915#10378]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-2/igt@gem_lmem_swapping@basic@lmem0.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@gem_lmem_swapping@basic@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: [FAIL][336] ([i915#10378]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][338] ([i915#9849]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [INCOMPLETE][340] ([i915#9820] / [i915#9849]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][342] ([i915#2521]) -> [PASS][343] [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-tglu: [DMESG-WARN][344] ([i915#10166] / [i915#1982]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-10/igt@kms_cursor_legacy@torture-move@pipe-a.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-4/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: [FAIL][346] ([i915#6880]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][348] ([i915#433]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-5/igt@kms_hdmi_inject@inject-audio.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@pixel-format@pipe-b: - shard-mtlp: [ABORT][350] -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-mtlp-6/igt@kms_plane@pixel-format@pipe-b.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][352] ([i915#9519]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][354] ([i915#9519]) -> [PASS][355] +1 other test pass [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area@psr2-pipe-a-edp-1: - shard-mtlp: [INCOMPLETE][356] -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-mtlp-5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-180: - shard-dg2: [INCOMPLETE][358] ([i915#9569]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-10/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][360] ([i915#9196]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@perf_pmu@enable-race@bcs0: - shard-dg2: [INCOMPLETE][362] ([i915#9853]) -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-5/igt@perf_pmu@enable-race@bcs0.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-10/igt@perf_pmu@enable-race@bcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][364] ([i915#9408] / [i915#9618]) -> [INCOMPLETE][365] ([i915#9618]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [INCOMPLETE][366] -> [INCOMPLETE][367] ([i915#9820]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][368] ([i915#10131] / [i915#9820]) -> [ABORT][369] ([i915#10131] / [i915#9697]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu: [WARN][370] ([i915#2681]) -> [FAIL][371] ([i915#3591]) +1 other test fail [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][372] ([i915#9424]) -> [SKIP][373] ([i915#9433]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg1-17/igt@kms_content_protection@mei-interface.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][374] ([i915#3361]) -> [FAIL][375] ([i915#9295]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][376] ([i915#3361]) -> [SKIP][377] ([i915#4281]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][378] ([i915#9100]) -> [FAIL][379] ([i915#7484]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7793/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [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#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [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#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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [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#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [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#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [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#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [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#9457]: https://gitlab.freedesktop.org/drm/intel/issues/9457 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [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#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7793 -> IGTPW_10960 CI-20190529: 20190529 CI_DRM_14511: a585b19932157f2c96293bf00288968ada86d435 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10960: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/index.html IGT_7793: d6485199d0e6400dc357e3c1da9df45e8188713c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10960/index.html [-- Attachment #2: Type: text/html, Size: 119475 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R
@ 2024-04-15 8:40 sai.gowtham.ch
2024-04-15 8:40 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch
0 siblings, 1 reply; 15+ messages in thread
From: sai.gowtham.ch @ 2024-04-15 8:40 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch, rodrigo.vivi
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
This patch series has following changes:
1. Validate functionality of VM_BIND USERPTR/PREFETCH op with S&R
2. Test vm_unbind op by binding multiple va's to a vm and check the
functionality with S&R.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Sai Gowtham Ch (3):
tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend
and resume
tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and
resume
tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R
tests/intel/xe_pm.c | 107 +++++++++++++++++++++++++++++++++++---------
1 file changed, 87 insertions(+), 20 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-15 8:40 [PATCH i-g-t 0/3] " sai.gowtham.ch @ 2024-04-15 8:40 ` sai.gowtham.ch 2024-04-16 1:29 ` Rodrigo Vivi 0 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-04-15 8:40 UTC (permalink / raw) To: igt-dev, sai.gowtham.ch, rodrigo.vivi From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test functionality of vm_bind prefetch with S&R. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index fafd7a52e..8857265a9 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -34,6 +34,7 @@ #define MAGIC_2 0xdeadbeef #define USERPTR (0x1 << 0) +#define PREFETCH (0x1 << 2) typedef struct { int fd_xe; @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) * arg[2]: * * @usrptr: usrptr + * @prefetch: prefetch */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, @@ -341,9 +343,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); memset(data, 0, bo_size); } else { - bo = xe_bo_create(device.fd_xe, vm, bo_size, - vram_if_possible(device.fd_xe, eci->gt_id), - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + if (flags & PREFETCH) + bo = xe_bo_create(device.fd_xe, 0, bo_size, + all_memory_regions(device.fd_xe) | + vram_if_possible(device.fd_xe, 0), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + else + bo = xe_bo_create(device.fd_xe, vm, bo_size, + vram_if_possible(device.fd_xe, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); data = xe_bo_map(device.fd_xe, bo, bo_size); } @@ -362,6 +370,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], to_user_pointer(data), addr, bo_size, sync, 1); + if (flags & PREFETCH) + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, + bo_size, sync, 1, 0); + if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); @@ -617,6 +629,7 @@ igt_main unsigned int flags; } vm_op[] = { { "usrptr", USERPTR }, + { "prefetch", PREFETCH }, { NULL }, }; -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-15 8:40 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch @ 2024-04-16 1:29 ` Rodrigo Vivi 2024-04-16 20:58 ` Rodrigo Vivi 0 siblings, 1 reply; 15+ messages in thread From: Rodrigo Vivi @ 2024-04-16 1:29 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Mon, Apr 15, 2024 at 02:10:34PM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test functionality of vm_bind prefetch with S&R. > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 19 ++++++++++++++++--- > 1 file changed, 16 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index fafd7a52e..8857265a9 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -34,6 +34,7 @@ > #define MAGIC_2 0xdeadbeef > > #define USERPTR (0x1 << 0) > +#define PREFETCH (0x1 << 2) what happen to the bit 1? > > typedef struct { > int fd_xe; > @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) > * arg[2]: > * > * @usrptr: usrptr > + * @prefetch: prefetch > */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > @@ -341,9 +343,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); > memset(data, 0, bo_size); > } else { > - bo = xe_bo_create(device.fd_xe, vm, bo_size, > - vram_if_possible(device.fd_xe, eci->gt_id), > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + if (flags & PREFETCH) > + bo = xe_bo_create(device.fd_xe, 0, bo_size, > + all_memory_regions(device.fd_xe) | > + vram_if_possible(device.fd_xe, 0), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + else > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > + vram_if_possible(device.fd_xe, eci->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > data = xe_bo_map(device.fd_xe, bo, bo_size); > } > > @@ -362,6 +370,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > to_user_pointer(data), addr, bo_size, sync, 1); > > + if (flags & PREFETCH) > + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > + bo_size, sync, 1, 0); anything else missing here? apparently the patch still failed badly and I lost my machine now... will check again tomorrow with some debugs. > + > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > > @@ -617,6 +629,7 @@ igt_main > unsigned int flags; > } vm_op[] = { > { "usrptr", USERPTR }, > + { "prefetch", PREFETCH }, > { NULL }, > }; > > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-04-16 1:29 ` Rodrigo Vivi @ 2024-04-16 20:58 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-04-16 20:58 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Mon, Apr 15, 2024 at 09:29:56PM -0400, Rodrigo Vivi wrote: > On Mon, Apr 15, 2024 at 02:10:34PM +0530, sai.gowtham.ch@intel.com wrote: > > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > > > Test functionality of vm_bind prefetch with S&R. > > > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > --- > > tests/intel/xe_pm.c | 19 ++++++++++++++++--- > > 1 file changed, 16 insertions(+), 3 deletions(-) > > > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > > index fafd7a52e..8857265a9 100644 > > --- a/tests/intel/xe_pm.c > > +++ b/tests/intel/xe_pm.c > > @@ -34,6 +34,7 @@ > > #define MAGIC_2 0xdeadbeef > > > > #define USERPTR (0x1 << 0) > > +#define PREFETCH (0x1 << 2) > > what happen to the bit 1? > > > > > typedef struct { > > int fd_xe; > > @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) > > * arg[2]: > > * > > * @usrptr: usrptr > > + * @prefetch: prefetch > > */ > > static void > > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > @@ -341,9 +343,15 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); > > memset(data, 0, bo_size); > > } else { > > - bo = xe_bo_create(device.fd_xe, vm, bo_size, > > - vram_if_possible(device.fd_xe, eci->gt_id), > > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > + if (flags & PREFETCH) > > + bo = xe_bo_create(device.fd_xe, 0, bo_size, > > + all_memory_regions(device.fd_xe) | > > + vram_if_possible(device.fd_xe, 0), > > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > + else > > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > > + vram_if_possible(device.fd_xe, eci->gt_id), > > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > > data = xe_bo_map(device.fd_xe, bo, bo_size); > > } > > > > @@ -362,6 +370,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > > to_user_pointer(data), addr, bo_size, sync, 1); > > > > + if (flags & PREFETCH) > > + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > > + bo_size, sync, 1, 0); > > anything else missing here? > apparently the patch still failed badly and I lost my machine now... > will check again tomorrow with some debugs. nevermind. nothing needed here and the problem was just my machine/image here. with define PREFETCH (0x1 << 1) feel free to use: Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > > + > > if (check_rpm && runtime_usage_available(device.pci_xe)) > > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > > > > @@ -617,6 +629,7 @@ igt_main > > unsigned int flags; > > } vm_op[] = { > > { "usrptr", USERPTR }, > > + { "prefetch", PREFETCH }, > > { NULL }, > > }; > > > > -- > > 2.39.1 > > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind
@ 2024-03-25 20:10 sai.gowtham.ch
2024-03-25 20:10 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch
0 siblings, 1 reply; 15+ messages in thread
From: sai.gowtham.ch @ 2024-03-25 20:10 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch, rodrigo.vivi
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
This patch series has following changes:
1. Validate functionality of VM_BIND USERPTR/PREFETCH op with S&R
2. Test vm_unbind op by binding multiple va's to a vm and check the
functionality with S&R.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Sai Gowtham Ch (3):
tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend
and resume
tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and
resume
tests/intel/xe_pm: Tests vm-unbind all flag functionality with s&R
tests/intel/xe_pm.c | 125 +++++++++++++++++++++++++++++++++++++-------
1 file changed, 106 insertions(+), 19 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch @ 2024-03-25 20:10 ` sai.gowtham.ch 2024-03-28 18:05 ` Rodrigo Vivi 0 siblings, 1 reply; 15+ messages in thread From: sai.gowtham.ch @ 2024-03-25 20:10 UTC (permalink / raw) To: igt-dev, sai.gowtham.ch, rodrigo.vivi From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Test functionality of vm_bind prefetch with S&R Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_pm.c | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index 8659e87cc..e016f2bca 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -34,6 +34,7 @@ #define MAGIC_2 0xdeadbeef #define USERPTR (0x1 << 0) +#define PREFETCH (0x1 << 5) typedef struct { int fd_xe; @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) * arg[2]: * * @usrptr: usrptr + * @prefetch: prefetch */ static void test_exec(device_t device, struct drm_xe_engine_class_instance *eci, @@ -340,9 +342,16 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, if (flags & USERPTR) { data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); } else { - bo = xe_bo_create(device.fd_xe, vm, bo_size, - vram_if_possible(device.fd_xe, eci->gt_id), - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + + if (flags & PREFETCH) + bo = xe_bo_create(device.fd_xe, 0, bo_size, + all_memory_regions(device.fd_xe) | + vram_if_possible(device.fd_xe, 0), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + else + bo = xe_bo_create(device.fd_xe, vm, bo_size, + vram_if_possible(device.fd_xe, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); data = xe_bo_map(device.fd_xe, bo, bo_size); } memset(data, 0, bo_size); @@ -362,6 +371,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], to_user_pointer(data), addr, bo_size, sync, 1); + if (flags & PREFETCH) + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, + bo_size, sync, 1, 0); + if (check_rpm && runtime_usage_available(device.pci_xe)) igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); @@ -615,6 +628,7 @@ igt_main unsigned int flags; } vm_op[] = { { "usrptr", USERPTR }, + { "prefetch", PREFETCH }, { NULL }, }; -- 2.39.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume 2024-03-25 20:10 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch @ 2024-03-28 18:05 ` Rodrigo Vivi 0 siblings, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2024-03-28 18:05 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev On Tue, Mar 26, 2024 at 01:40:44AM +0530, sai.gowtham.ch@intel.com wrote: > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Test functionality of vm_bind prefetch with S&R > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_pm.c | 20 +++++++++++++++++--- > 1 file changed, 17 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 8659e87cc..e016f2bca 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -34,6 +34,7 @@ > #define MAGIC_2 0xdeadbeef > > #define USERPTR (0x1 << 0) > +#define PREFETCH (0x1 << 5) why 0x5? we don't need to copy verbatim this from other tests. 0x2 makes more sense here. > > typedef struct { > int fd_xe; > @@ -289,6 +290,7 @@ static void close_fw_handle(int sig) > * arg[2]: > * > * @usrptr: usrptr > + * @prefetch: prefetch > */ > static void > test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > @@ -340,9 +342,16 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > if (flags & USERPTR) { > data = aligned_alloc(xe_get_default_alignment(device.fd_xe), bo_size); > } else { > - bo = xe_bo_create(device.fd_xe, vm, bo_size, > - vram_if_possible(device.fd_xe, eci->gt_id), > - DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + > + if (flags & PREFETCH) > + bo = xe_bo_create(device.fd_xe, 0, bo_size, > + all_memory_regions(device.fd_xe) | > + vram_if_possible(device.fd_xe, 0), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); > + else > + bo = xe_bo_create(device.fd_xe, vm, bo_size, > + vram_if_possible(device.fd_xe, eci->gt_id), > + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); why? I don't see this in other tests with 'prefetch'? > data = xe_bo_map(device.fd_xe, bo, bo_size); > } > memset(data, 0, bo_size); > @@ -362,6 +371,10 @@ test_exec(device_t device, struct drm_xe_engine_class_instance *eci, > xe_vm_bind_userptr_async(device.fd_xe, vm, bind_exec_queues[0], > to_user_pointer(data), addr, bo_size, sync, 1); > > + if (flags & PREFETCH) > + xe_vm_prefetch_async(device.fd_xe, vm, bind_exec_queues[0], 0, addr, > + bo_size, sync, 1, 0); > + > if (check_rpm && runtime_usage_available(device.pci_xe)) > igt_assert(igt_pm_get_runtime_usage(device.pci_xe) > rpm_usage); > > @@ -615,6 +628,7 @@ igt_main > unsigned int flags; > } vm_op[] = { > { "usrptr", USERPTR }, > + { "prefetch", PREFETCH }, > { NULL }, > }; > > -- > 2.39.1 > ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2024-04-16 20:58 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-01 18:46 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind with S&R sai.gowtham.ch 2024-04-01 18:46 ` [PATCH i-g-t 1/3] tests/intel/xe_pm: Test validates vm-bind userptr flag with suspend and resume sai.gowtham.ch 2024-04-03 20:26 ` Rodrigo Vivi 2024-04-01 18:46 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch " sai.gowtham.ch 2024-04-03 20:27 ` Rodrigo Vivi 2024-04-01 18:46 ` [PATCH i-g-t 3/3] tests/intel/xe_pm: Tests vm-unbind all flag functionality with S&R sai.gowtham.ch 2024-04-03 20:28 ` Rodrigo Vivi 2024-04-01 19:29 ` ✓ Fi.CI.BAT: success for tests/intel/xe_pm: Tests to validate vm-bind " Patchwork 2024-04-01 19:34 ` ✓ CI.xeBAT: " Patchwork 2024-04-01 21:18 ` ✗ Fi.CI.IGT: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-04-15 8:40 [PATCH i-g-t 0/3] " sai.gowtham.ch 2024-04-15 8:40 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch 2024-04-16 1:29 ` Rodrigo Vivi 2024-04-16 20:58 ` Rodrigo Vivi 2024-03-25 20:10 [PATCH i-g-t 0/3] tests/intel/xe_pm: Tests to validate vm-bind sai.gowtham.ch 2024-03-25 20:10 ` [PATCH i-g-t 2/3] tests/intel/xe_pm: Validate vm-bind prefetch flag with suspend and resume sai.gowtham.ch 2024-03-28 18:05 ` Rodrigo Vivi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox