* [igt-dev] [PATCH i-g-t v3 0/2] Add d3 mmap test
@ 2023-09-29 10:11 Anshuman Gupta
2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 1/2] test/xe_pm: Add exit handler to close fw handle Anshuman Gupta
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Anshuman Gupta @ 2023-09-29 10:11 UTC (permalink / raw)
To: igt-dev; +Cc: rodrigo.vivi
Adding d3 mmap test and adding forcewake igt exit handler.
Anshuman Gupta (2):
test/xe_pm: Add exit handler to close fw handle
tests/xe_pm: Add d3-mmap IGT test
tests/intel/xe_pm.c | 122 ++++++++++++++++++++++++++++++++++++++++----
1 file changed, 113 insertions(+), 9 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t v3 1/2] test/xe_pm: Add exit handler to close fw handle 2023-09-29 10:11 [igt-dev] [PATCH i-g-t v3 0/2] Add d3 mmap test Anshuman Gupta @ 2023-09-29 10:11 ` Anshuman Gupta 2023-10-04 15:42 ` Rodrigo Vivi 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test Anshuman Gupta ` (3 subsequent siblings) 4 siblings, 1 reply; 10+ messages in thread From: Anshuman Gupta @ 2023-09-29 10:11 UTC (permalink / raw) To: igt-dev; +Cc: rodrigo.vivi Adding an exit handler to close the fw handle to make sure we don't leak the fw in CI environment. Adding a IGT subtest group for the test using the fw handle to runtime wake the device. Scaling forcewake close exit handler for vram-d3cold-threshold subtest, while doing so add the missing subtest Functionality as well. Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/intel/xe_pm.c | 34 +++++++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index fd28d5630..48518a5e5 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -39,6 +39,7 @@ typedef struct { } device_t; uint64_t orig_threshold; +int fw_handle = -1; /* runtime_usage is only available if kernel build CONFIG_PM_ADVANCED_DEBUG */ static bool runtime_usage_available(struct pci_device *pci) @@ -166,6 +167,14 @@ static bool out_of_d3(device_t device, enum igt_acpi_d_state state) return true; } +static void close_fw_handle(int sig) +{ + if (fw_handle < 0) + return; + + close(fw_handle); +} + /** * SUBTEST: %s-basic * Description: set GPU state to %arg[1] and test suspend/autoresume @@ -381,7 +390,7 @@ static void test_vram_d3cold_threshold(device_t device, int sysfs_fd) }; uint64_t vram_used_mb = 0, vram_total_mb = 0, threshold; uint32_t bo, flags; - int handle, i; + int i; bool active; void *map; @@ -427,10 +436,10 @@ static void test_vram_d3cold_threshold(device_t device, int sysfs_fd) * the device from runtime suspend. * Therefore open and close fw handle to wake the device. */ - handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); - igt_assert(handle >= 0); + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); + igt_assert(fw_handle >= 0); active = igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE; - close(handle); + close(fw_handle); igt_assert(active); /* Test D3Cold again after freeing up the Xe BO */ @@ -535,11 +544,18 @@ igt_main } } - igt_describe("Validate whether card is limited to d3hot, if vram used > vram threshold"); - igt_subtest("vram-d3cold-threshold") { - orig_threshold = get_vram_d3cold_threshold(sysfs_fd); - igt_install_exit_handler(vram_d3cold_threshold_restore); - test_vram_d3cold_threshold(device, sysfs_fd); + igt_subtest_group { + igt_fixture { + igt_install_exit_handler(close_fw_handle); + } + + igt_describe("Validate whether card is limited to d3hot," + "if vram used > vram threshold"); + igt_subtest("vram-d3cold-threshold") { + orig_threshold = get_vram_d3cold_threshold(sysfs_fd); + igt_install_exit_handler(vram_d3cold_threshold_restore); + test_vram_d3cold_threshold(device, sysfs_fd); + } } igt_fixture { -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 1/2] test/xe_pm: Add exit handler to close fw handle 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 1/2] test/xe_pm: Add exit handler to close fw handle Anshuman Gupta @ 2023-10-04 15:42 ` Rodrigo Vivi 0 siblings, 0 replies; 10+ messages in thread From: Rodrigo Vivi @ 2023-10-04 15:42 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev On Fri, Sep 29, 2023 at 03:41:54PM +0530, Anshuman Gupta wrote: > Adding an exit handler to close the fw handle to make sure we don't > leak the fw in CI environment. Adding a IGT subtest group for the > test using the fw handle to runtime wake the device. > Scaling forcewake close exit handler for vram-d3cold-threshold > subtest, while doing so add the missing subtest Functionality > as well. > > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > tests/intel/xe_pm.c | 34 +++++++++++++++++++++++++--------- > 1 file changed, 25 insertions(+), 9 deletions(-) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index fd28d5630..48518a5e5 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -39,6 +39,7 @@ typedef struct { > } device_t; > > uint64_t orig_threshold; > +int fw_handle = -1; > > /* runtime_usage is only available if kernel build CONFIG_PM_ADVANCED_DEBUG */ > static bool runtime_usage_available(struct pci_device *pci) > @@ -166,6 +167,14 @@ static bool out_of_d3(device_t device, enum igt_acpi_d_state state) > return true; > } > > +static void close_fw_handle(int sig) > +{ > + if (fw_handle < 0) > + return; > + > + close(fw_handle); > +} > + > /** > * SUBTEST: %s-basic > * Description: set GPU state to %arg[1] and test suspend/autoresume > @@ -381,7 +390,7 @@ static void test_vram_d3cold_threshold(device_t device, int sysfs_fd) > }; > uint64_t vram_used_mb = 0, vram_total_mb = 0, threshold; > uint32_t bo, flags; > - int handle, i; > + int i; > bool active; > void *map; > > @@ -427,10 +436,10 @@ static void test_vram_d3cold_threshold(device_t device, int sysfs_fd) > * the device from runtime suspend. > * Therefore open and close fw handle to wake the device. > */ > - handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); > - igt_assert(handle >= 0); > + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); > + igt_assert(fw_handle >= 0); > active = igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE; > - close(handle); > + close(fw_handle); > igt_assert(active); > > /* Test D3Cold again after freeing up the Xe BO */ > @@ -535,11 +544,18 @@ igt_main > } > } > > - igt_describe("Validate whether card is limited to d3hot, if vram used > vram threshold"); > - igt_subtest("vram-d3cold-threshold") { > - orig_threshold = get_vram_d3cold_threshold(sysfs_fd); > - igt_install_exit_handler(vram_d3cold_threshold_restore); > - test_vram_d3cold_threshold(device, sysfs_fd); > + igt_subtest_group { > + igt_fixture { > + igt_install_exit_handler(close_fw_handle); > + } > + > + igt_describe("Validate whether card is limited to d3hot," > + "if vram used > vram threshold"); > + igt_subtest("vram-d3cold-threshold") { > + orig_threshold = get_vram_d3cold_threshold(sysfs_fd); > + igt_install_exit_handler(vram_d3cold_threshold_restore); > + test_vram_d3cold_threshold(device, sysfs_fd); > + } > } > > igt_fixture { > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test 2023-09-29 10:11 [igt-dev] [PATCH i-g-t v3 0/2] Add d3 mmap test Anshuman Gupta 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 1/2] test/xe_pm: Add exit handler to close fw handle Anshuman Gupta @ 2023-09-29 10:11 ` Anshuman Gupta 2023-10-04 15:44 ` Rodrigo Vivi 2023-10-05 10:23 ` Kamil Konieczny 2023-09-29 10:58 ` [igt-dev] ✓ CI.xeBAT: success for Add d3 mmap test (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 2 replies; 10+ messages in thread From: Anshuman Gupta @ 2023-09-29 10:11 UTC (permalink / raw) To: igt-dev; +Cc: rodrigo.vivi Adding a test to validate mmap memory mappings along with runtime suspend and resume for both xe device and it's pci parent bridge in device hierarchy. v2: - Use 0xc00fee pattern. [Rodrigo] - Test the pagefault case on read and write the mapping. [Rodrigo] Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> --- tests/intel/xe_pm.c | 88 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index 48518a5e5..8656e2146 100644 --- a/tests/intel/xe_pm.c +++ b/tests/intel/xe_pm.c @@ -446,6 +446,77 @@ static void test_vram_d3cold_threshold(device_t device, int sysfs_fd) igt_assert(in_d3(device, IGT_ACPI_D3Cold)); } +/** + * SUBTEST: d3-mmap-%s + * Description: + * Validate mmap memory mapping with d3 state, for %arg[1] region, + * if supported by device. + * arg[1]: + * + * @vram: vram region + * @system: system region + * + * Functionality: pm-d3 + * Run type: FULL + */ +static void test_mmap(device_t device, uint32_t flags) +{ + size_t bo_size = 8192; + uint32_t *map = NULL; + uint32_t bo; + int i; + + igt_require_f(flags, "Device doesn't support such memory region\n"); + + bo = xe_bo_create_flags(device.fd_xe, 0, bo_size, flags); + map = xe_bo_map(device.fd_xe, bo, bo_size); + igt_assert(map); + memset(map, 0, bo_size); + + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); + + igt_assert(fw_handle >= 0); + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); + + for (i = 0; i < bo_size / 4; i++) + map[i] = 0xc0ffee; + + for (i = 0; i < bo_size / 4; i++) + igt_assert(map[i] == 0xc0ffee); + + /* Runtime suspend and validate the pattern and changed the pattern */ + close(fw_handle); + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); + + for (i = 0; i < bo_size / 4; i++) + igt_assert(map[i] == 0xc0ffee); + + /* dgfx page-fault on mmaping should wake the gpu */ + if (xe_has_vram(device.fd_xe)) + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); + + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); + + for (i = 0; i < bo_size / 4; i++) + map[i] = 0xdeadbeef; + + if (xe_has_vram(device.fd_xe)) + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); + + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); + + /* Runtime resume and check the pattern */ + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); + igt_assert(fw_handle >= 0); + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); + for (i = 0; i < bo_size / 4; i++) + igt_assert(map[i] == 0xdeadbeef); + + igt_assert(munmap(map, bo_size) == 0); + gem_close(device.fd_xe, bo); + close(fw_handle); +} + igt_main { struct drm_xe_engine_class_instance *hwe; @@ -556,6 +627,23 @@ igt_main igt_install_exit_handler(vram_d3cold_threshold_restore); test_vram_d3cold_threshold(device, sysfs_fd); } + + igt_describe("Validate mmap memory mappings with system region," + "when device along with parent bridge in d3"); + igt_subtest("d3-mmap-system") { + test_mmap(device, system_memory(device.fd_xe)); + } + + igt_describe("Validate mmap memory mappings with vram region," + "when device along with parent bridge in d3"); + igt_subtest("d3-mmap-vram") { + if (device.pci_root != device.pci_xe) { + igt_pm_enable_pci_card_runtime_pm(device.pci_root, NULL); + igt_pm_set_d3cold_allowed(device.pci_slot_name, 1); + } + + test_mmap(device, visible_vram_memory(device.fd_xe, 0)); + } } igt_fixture { -- 2.25.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test Anshuman Gupta @ 2023-10-04 15:44 ` Rodrigo Vivi 2023-10-05 10:23 ` Kamil Konieczny 1 sibling, 0 replies; 10+ messages in thread From: Rodrigo Vivi @ 2023-10-04 15:44 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev On Fri, Sep 29, 2023 at 03:41:55PM +0530, Anshuman Gupta wrote: > Adding a test to validate mmap memory mappings along with runtime > suspend and resume for both xe device and it's pci parent bridge > in device hierarchy. > > v2: > - Use 0xc00fee pattern. [Rodrigo] > - Test the pagefault case on read and write the mapping. [Rodrigo] > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > tests/intel/xe_pm.c | 88 +++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 88 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 48518a5e5..8656e2146 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -446,6 +446,77 @@ static void test_vram_d3cold_threshold(device_t device, int sysfs_fd) > igt_assert(in_d3(device, IGT_ACPI_D3Cold)); > } > > +/** > + * SUBTEST: d3-mmap-%s > + * Description: > + * Validate mmap memory mapping with d3 state, for %arg[1] region, > + * if supported by device. > + * arg[1]: > + * > + * @vram: vram region > + * @system: system region > + * > + * Functionality: pm-d3 > + * Run type: FULL > + */ > +static void test_mmap(device_t device, uint32_t flags) > +{ > + size_t bo_size = 8192; > + uint32_t *map = NULL; > + uint32_t bo; > + int i; > + > + igt_require_f(flags, "Device doesn't support such memory region\n"); > + > + bo = xe_bo_create_flags(device.fd_xe, 0, bo_size, flags); > + map = xe_bo_map(device.fd_xe, bo, bo_size); > + igt_assert(map); > + memset(map, 0, bo_size); > + > + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); > + > + igt_assert(fw_handle >= 0); > + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); > + > + for (i = 0; i < bo_size / 4; i++) > + map[i] = 0xc0ffee; > + > + for (i = 0; i < bo_size / 4; i++) > + igt_assert(map[i] == 0xc0ffee); > + > + /* Runtime suspend and validate the pattern and changed the pattern */ > + close(fw_handle); > + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); > + > + for (i = 0; i < bo_size / 4; i++) > + igt_assert(map[i] == 0xc0ffee); > + > + /* dgfx page-fault on mmaping should wake the gpu */ > + if (xe_has_vram(device.fd_xe)) > + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); > + > + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); > + > + for (i = 0; i < bo_size / 4; i++) > + map[i] = 0xdeadbeef; > + > + if (xe_has_vram(device.fd_xe)) > + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); > + > + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); > + > + /* Runtime resume and check the pattern */ > + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); > + igt_assert(fw_handle >= 0); > + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); > + for (i = 0; i < bo_size / 4; i++) > + igt_assert(map[i] == 0xdeadbeef); > + > + igt_assert(munmap(map, bo_size) == 0); > + gem_close(device.fd_xe, bo); > + close(fw_handle); > +} > + > igt_main > { > struct drm_xe_engine_class_instance *hwe; > @@ -556,6 +627,23 @@ igt_main > igt_install_exit_handler(vram_d3cold_threshold_restore); > test_vram_d3cold_threshold(device, sysfs_fd); > } > + > + igt_describe("Validate mmap memory mappings with system region," > + "when device along with parent bridge in d3"); > + igt_subtest("d3-mmap-system") { > + test_mmap(device, system_memory(device.fd_xe)); > + } > + > + igt_describe("Validate mmap memory mappings with vram region," > + "when device along with parent bridge in d3"); > + igt_subtest("d3-mmap-vram") { > + if (device.pci_root != device.pci_xe) { > + igt_pm_enable_pci_card_runtime_pm(device.pci_root, NULL); > + igt_pm_set_d3cold_allowed(device.pci_slot_name, 1); > + } > + > + test_mmap(device, visible_vram_memory(device.fd_xe, 0)); > + } > } > > igt_fixture { > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test Anshuman Gupta 2023-10-04 15:44 ` Rodrigo Vivi @ 2023-10-05 10:23 ` Kamil Konieczny 2023-10-05 10:27 ` Gupta, Anshuman 1 sibling, 1 reply; 10+ messages in thread From: Kamil Konieczny @ 2023-10-05 10:23 UTC (permalink / raw) To: igt-dev; +Cc: rodrigo.vivi Hi Anshuman, On 2023-09-29 at 15:41:55 +0530, Anshuman Gupta wrote: > Adding a test to validate mmap memory mappings along with runtime > suspend and resume for both xe device and it's pci parent bridge > in device hierarchy. > > v2: > - Use 0xc00fee pattern. [Rodrigo] > - Test the pagefault case on read and write the mapping. [Rodrigo] > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > --- > tests/intel/xe_pm.c | 88 +++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 88 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 48518a5e5..8656e2146 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -446,6 +446,77 @@ static void test_vram_d3cold_threshold(device_t device, int sysfs_fd) > igt_assert(in_d3(device, IGT_ACPI_D3Cold)); > } > > +/** > + * SUBTEST: d3-mmap-%s > + * Description: > + * Validate mmap memory mapping with d3 state, for %arg[1] region, > + * if supported by device. > + * arg[1]: > + * > + * @vram: vram region > + * @system: system region > + * > + * Functionality: pm-d3 > + * Run type: FULL ----- ^^^^^^^^^^^^^^ Delete this line, field was removed some days ago. > + */ > +static void test_mmap(device_t device, uint32_t flags) > +{ > + size_t bo_size = 8192; > + uint32_t *map = NULL; > + uint32_t bo; > + int i; > + > + igt_require_f(flags, "Device doesn't support such memory region\n"); > + > + bo = xe_bo_create_flags(device.fd_xe, 0, bo_size, flags); > + map = xe_bo_map(device.fd_xe, bo, bo_size); > + igt_assert(map); > + memset(map, 0, bo_size); > + > + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); > + > + igt_assert(fw_handle >= 0); > + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); > + > + for (i = 0; i < bo_size / 4; i++) ----------------------------- ^ sizeof(*map) or sizeof(map[0]) > + map[i] = 0xc0ffee; ---------------- ^ imho better use define or const, for example MAGIC_1 > + > + for (i = 0; i < bo_size / 4; i++) ----------------------------- ^ Same here. > + igt_assert(map[i] == 0xc0ffee); ---------------------------- ^ > + > + /* Runtime suspend and validate the pattern and changed the pattern */ > + close(fw_handle); > + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); > + > + for (i = 0; i < bo_size / 4; i++) ----------------------------- ^ Same here. > + igt_assert(map[i] == 0xc0ffee); ----------------------------- ^ Same here. > + > + /* dgfx page-fault on mmaping should wake the gpu */ > + if (xe_has_vram(device.fd_xe)) > + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); > + > + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); > + > + for (i = 0; i < bo_size / 4; i++) ----------------------------- ^ Same here. > + map[i] = 0xdeadbeef; ---------------- ^ MAGIC_2 > + > + if (xe_has_vram(device.fd_xe)) > + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); > + > + igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED)); > + > + /* Runtime resume and check the pattern */ > + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", O_RDONLY); > + igt_assert(fw_handle >= 0); > + igt_assert(igt_get_runtime_pm_status() == IGT_RUNTIME_PM_STATUS_ACTIVE); > + for (i = 0; i < bo_size / 4; i++) ----------------------------- ^ Same here. > + igt_assert(map[i] == 0xdeadbeef); ----------------------------- ^ Same here. Regards, Kamil > + > + igt_assert(munmap(map, bo_size) == 0); > + gem_close(device.fd_xe, bo); > + close(fw_handle); > +} > + > igt_main > { > struct drm_xe_engine_class_instance *hwe; > @@ -556,6 +627,23 @@ igt_main > igt_install_exit_handler(vram_d3cold_threshold_restore); > test_vram_d3cold_threshold(device, sysfs_fd); > } > + > + igt_describe("Validate mmap memory mappings with system region," > + "when device along with parent bridge in d3"); > + igt_subtest("d3-mmap-system") { > + test_mmap(device, system_memory(device.fd_xe)); > + } > + > + igt_describe("Validate mmap memory mappings with vram region," > + "when device along with parent bridge in d3"); > + igt_subtest("d3-mmap-vram") { > + if (device.pci_root != device.pci_xe) { > + igt_pm_enable_pci_card_runtime_pm(device.pci_root, NULL); > + igt_pm_set_d3cold_allowed(device.pci_slot_name, 1); > + } > + > + test_mmap(device, visible_vram_memory(device.fd_xe, 0)); > + } > } > > igt_fixture { > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test 2023-10-05 10:23 ` Kamil Konieczny @ 2023-10-05 10:27 ` Gupta, Anshuman 0 siblings, 0 replies; 10+ messages in thread From: Gupta, Anshuman @ 2023-10-05 10:27 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org; +Cc: Vivi, Rodrigo > -----Original Message----- > From: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Sent: Thursday, October 5, 2023 3:54 PM > To: igt-dev@lists.freedesktop.org > Cc: Gupta, Anshuman <anshuman.gupta@intel.com>; Vivi, Rodrigo > <rodrigo.vivi@intel.com> > Subject: Re: [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT > test > > Hi Anshuman, > > On 2023-09-29 at 15:41:55 +0530, Anshuman Gupta wrote: > > Adding a test to validate mmap memory mappings along with runtime > > suspend and resume for both xe device and it's pci parent bridge in > > device hierarchy. > > > > v2: > > - Use 0xc00fee pattern. [Rodrigo] > > - Test the pagefault case on read and write the mapping. [Rodrigo] > > > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > > --- > > tests/intel/xe_pm.c | 88 > > +++++++++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 88 insertions(+) > > > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index > > 48518a5e5..8656e2146 100644 > > --- a/tests/intel/xe_pm.c > > +++ b/tests/intel/xe_pm.c > > @@ -446,6 +446,77 @@ static void test_vram_d3cold_threshold(device_t > device, int sysfs_fd) > > igt_assert(in_d3(device, IGT_ACPI_D3Cold)); } > > > > +/** > > + * SUBTEST: d3-mmap-%s > > + * Description: > > + * Validate mmap memory mapping with d3 state, for %arg[1] region, > > + * if supported by device. > > + * arg[1]: > > + * > > + * @vram: vram region > > + * @system: system region > > + * > > + * Functionality: pm-d3 > > + * Run type: FULL > ----- ^^^^^^^^^^^^^^ > Delete this line, field was removed some days ago. > > > + */ > > +static void test_mmap(device_t device, uint32_t flags) { > > + size_t bo_size = 8192; > > + uint32_t *map = NULL; > > + uint32_t bo; > > + int i; > > + > > + igt_require_f(flags, "Device doesn't support such memory region\n"); > > + > > + bo = xe_bo_create_flags(device.fd_xe, 0, bo_size, flags); > > + map = xe_bo_map(device.fd_xe, bo, bo_size); > > + igt_assert(map); > > + memset(map, 0, bo_size); > > + > > + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", > > +O_RDONLY); > > + > > + igt_assert(fw_handle >= 0); > > + igt_assert(igt_get_runtime_pm_status() == > > +IGT_RUNTIME_PM_STATUS_ACTIVE); > > + > > + for (i = 0; i < bo_size / 4; i++) > ----------------------------- ^ > sizeof(*map) or sizeof(map[0]) > > > + map[i] = 0xc0ffee; > ---------------- ^ > imho better use define or const, for example MAGIC_1 > > > + > > + for (i = 0; i < bo_size / 4; i++) > ----------------------------- ^ > Same here. > > > + igt_assert(map[i] == 0xc0ffee); > ---------------------------- ^ > > > + > > + /* Runtime suspend and validate the pattern and changed the pattern > */ > > + close(fw_handle); > > + > igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSP > ENDED)); > > + > > + for (i = 0; i < bo_size / 4; i++) > ----------------------------- ^ > Same here. > > + igt_assert(map[i] == 0xc0ffee); > ----------------------------- ^ > Same here. > > > + > > + /* dgfx page-fault on mmaping should wake the gpu */ > > + if (xe_has_vram(device.fd_xe)) > > + igt_assert(igt_get_runtime_pm_status() == > > +IGT_RUNTIME_PM_STATUS_ACTIVE); > > + > > + > igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSP > ENDED)); > > + > > + for (i = 0; i < bo_size / 4; i++) > ----------------------------- ^ > Same here. > > + map[i] = 0xdeadbeef; > ---------------- ^ > MAGIC_2 > > > + > > + if (xe_has_vram(device.fd_xe)) > > + igt_assert(igt_get_runtime_pm_status() == > > +IGT_RUNTIME_PM_STATUS_ACTIVE); > > + > > + > igt_assert(igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSP > ENDED)); > > + > > + /* Runtime resume and check the pattern */ > > + fw_handle = igt_debugfs_open(device.fd_xe, "forcewake_all", > O_RDONLY); > > + igt_assert(fw_handle >= 0); > > + igt_assert(igt_get_runtime_pm_status() == > IGT_RUNTIME_PM_STATUS_ACTIVE); > > + for (i = 0; i < bo_size / 4; i++) > ----------------------------- ^ > Same here. > > + igt_assert(map[i] == 0xdeadbeef); > ----------------------------- ^ > Same here. Thanks for review, I will do all of those change. Br, Anshuman. > > Regards, > Kamil > > > + > > + igt_assert(munmap(map, bo_size) == 0); > > + gem_close(device.fd_xe, bo); > > + close(fw_handle); > > +} > > + > > igt_main > > { > > struct drm_xe_engine_class_instance *hwe; @@ -556,6 +627,23 @@ > > igt_main > > > igt_install_exit_handler(vram_d3cold_threshold_restore); > > test_vram_d3cold_threshold(device, sysfs_fd); > > } > > + > > + igt_describe("Validate mmap memory mappings with system > region," > > + "when device along with parent bridge in d3"); > > + igt_subtest("d3-mmap-system") { > > + test_mmap(device, system_memory(device.fd_xe)); > > + } > > + > > + igt_describe("Validate mmap memory mappings with vram > region," > > + "when device along with parent bridge in d3"); > > + igt_subtest("d3-mmap-vram") { > > + if (device.pci_root != device.pci_xe) { > > + > igt_pm_enable_pci_card_runtime_pm(device.pci_root, NULL); > > + > igt_pm_set_d3cold_allowed(device.pci_slot_name, 1); > > + } > > + > > + test_mmap(device, > visible_vram_memory(device.fd_xe, 0)); > > + } > > } > > > > igt_fixture { > > -- > > 2.25.1 > > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Add d3 mmap test (rev2) 2023-09-29 10:11 [igt-dev] [PATCH i-g-t v3 0/2] Add d3 mmap test Anshuman Gupta 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 1/2] test/xe_pm: Add exit handler to close fw handle Anshuman Gupta 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test Anshuman Gupta @ 2023-09-29 10:58 ` Patchwork 2023-09-29 11:03 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-29 16:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-09-29 10:58 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5967 bytes --] == Series Details == Series: Add d3 mmap test (rev2) URL : https://patchwork.freedesktop.org/series/124115/ State : success == Summary == CI Bug Log - changes from XEIGT_7506_BAT -> XEIGTPW_9894_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (3 -> 4) ------------------------------ Additional (1): bat-pvc-2 Known issues ------------ Here are the changes found in XEIGTPW_9894_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: NOTRUN -> [SKIP][1] ([Intel XE#538]) +33 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#539]) +7 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#275] / [Intel XE#541]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#540]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#537]) +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_prop_blob@basic: - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#536]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@kms_prop_blob@basic.html * igt@kms_psr@primary_page_flip: - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#535]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@kms_psr@primary_page_flip.html * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: NOTRUN -> [FAIL][8] ([Intel XE#389]) +3 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-small-external-cm: - bat-pvc-2: NOTRUN -> [DMESG-FAIL][9] ([Intel XE#482]) +3 other tests dmesg-fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@xe_evict@evict-small-external-cm.html * igt@xe_guc_pc@freq_fixed_idle: - bat-pvc-2: NOTRUN -> [SKIP][10] ([Intel XE#533]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@xe_guc_pc@freq_fixed_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][11] ([Intel XE#255]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][12] ([Intel XE#532]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_module_load@load: - bat-pvc-2: NOTRUN -> [SKIP][13] ([Intel XE#378]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@xe_module_load@load.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#531]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - bat-adlp-7: [FAIL][15] ([Intel XE#480]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7506/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#275]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/275 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/389 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533 [Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535 [Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536 [Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537 [Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538 [Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541 Build changes ------------- * IGT: IGT_7506 -> IGTPW_9894 * Linux: xe-397-bce60b0ff2937cb2ea51841a479bc1a2da65052b -> xe-402-9a795b4f0ebe6bf70b1c873e323c3e0e7e113c64 IGTPW_9894: 9894 IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-397-bce60b0ff2937cb2ea51841a479bc1a2da65052b: bce60b0ff2937cb2ea51841a479bc1a2da65052b xe-402-9a795b4f0ebe6bf70b1c873e323c3e0e7e113c64: 9a795b4f0ebe6bf70b1c873e323c3e0e7e113c64 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9894/index.html [-- Attachment #2: Type: text/html, Size: 6879 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add d3 mmap test (rev2) 2023-09-29 10:11 [igt-dev] [PATCH i-g-t v3 0/2] Add d3 mmap test Anshuman Gupta ` (2 preceding siblings ...) 2023-09-29 10:58 ` [igt-dev] ✓ CI.xeBAT: success for Add d3 mmap test (rev2) Patchwork @ 2023-09-29 11:03 ` Patchwork 2023-09-29 16:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-09-29 11:03 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5528 bytes --] == Series Details == Series: Add d3 mmap test (rev2) URL : https://patchwork.freedesktop.org/series/124115/ State : success == Summary == CI Bug Log - changes from CI_DRM_13692 -> IGTPW_9894 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/index.html Participating hosts (40 -> 37) ------------------------------ Missing (3): fi-kbl-soraka fi-hsw-4770 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9894 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - bat-mtlp-8: NOTRUN -> [ABORT][1] ([i915#9262]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-mtlp-8/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@workarounds: - bat-dg2-11: [PASS][2] -> [INCOMPLETE][3] ([i915#7913]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/bat-dg2-11/igt@i915_selftest@live@workarounds.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-dg2-11/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#6645]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5: - bat-adlp-11: NOTRUN -> [ABORT][5] ([i915#8668]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-c-dp-5.html #### Possible fixes #### * igt@i915_selftest@live@hugepages: - bat-mtlp-8: [ABORT][6] ([i915#9414]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/bat-mtlp-8/igt@i915_selftest@live@hugepages.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-mtlp-8/igt@i915_selftest@live@hugepages.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][8] ([IGT#3]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-6: - bat-adlp-11: [DMESG-FAIL][10] ([i915#6868]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-6.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-6.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-5: - bat-adlp-11: [FAIL][12] ([i915#9047]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-5.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-5.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][14] ([i915#8668]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - bat-dg2-9: [FAIL][16] ([fdo#103375]) -> [PASS][17] +7 other tests pass [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981 [i915#9047]: https://gitlab.freedesktop.org/drm/intel/issues/9047 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7506 -> IGTPW_9894 CI-20190529: 20190529 CI_DRM_13692: 5a9d63c889bb8fd9aa2fbf73888ce98f3688add0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9894: 9894 IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_pm@d3-mmap-system +igt@xe_pm@d3-mmap-vram == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/index.html [-- Attachment #2: Type: text/html, Size: 6250 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add d3 mmap test (rev2) 2023-09-29 10:11 [igt-dev] [PATCH i-g-t v3 0/2] Add d3 mmap test Anshuman Gupta ` (3 preceding siblings ...) 2023-09-29 11:03 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-29 16:59 ` Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2023-09-29 16:59 UTC (permalink / raw) To: Anshuman Gupta; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 80885 bytes --] == Series Details == Series: Add d3 mmap test (rev2) URL : https://patchwork.freedesktop.org/series/124115/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13692_full -> IGTPW_9894_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9894_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9894_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9894/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_9894_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-glk9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@ab-hdmi-a1-hdmi-a2.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-glk6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-rkl: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@sysfs_timeslice_duration@timeout@rcs0: - shard-dg2: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-1/igt@sysfs_timeslice_duration@timeout@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@sysfs_timeslice_duration@timeout@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_content_protection@mei-interface}: - shard-rkl: [SKIP][7] ([i915#9424]) -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-1/igt@kms_content_protection@mei-interface.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-6/igt@kms_content_protection@mei-interface.html - shard-tglu: [SKIP][9] ([i915#9424]) -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-tglu-3/igt@kms_content_protection@mei-interface.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-4/igt@kms_content_protection@mei-interface.html New tests --------- New tests have been introduced between CI_DRM_13692_full and IGTPW_9894_full: ### New IGT tests (1) ### * igt@kms_plane_alpha_blend@alpha-basic@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9894_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +4 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-12/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +21 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@busy@vcs0: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-5/igt@drm_fdinfo@busy@vcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][15] -> [FAIL][16] ([i915#7742]) +1 other test fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@fbdev@write: - shard-dg1: [PASS][17] -> [FAIL][18] ([i915#7743]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-12/igt@fbdev@write.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-18/igt@fbdev@write.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-8/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][20] -> [ABORT][21] ([i915#7461]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][22] -> [FAIL][23] ([i915#6268]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#5882]) +9 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html - shard-rkl: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-12/igt@gem_eio@unwedge-stress.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-4/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#6334]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-tglu: NOTRUN -> [FAIL][33] ([i915#2842]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-9/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2842]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-7/igt@gem_exec_fair@basic-none-share@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-12/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][38] ([fdo#112283]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +11 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-7/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-16/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_schedule@independent@vcs0: - shard-mtlp: [PASS][43] -> [ABORT][44] ([i915#9414]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-4/igt@gem_exec_schedule@independent@vcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-5/igt@gem_exec_schedule@independent@vcs0.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-glk3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-apl: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@verify: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-5/igt@gem_lmem_swapping@verify.html * igt@gem_mmap_gtt@basic-write-cpu-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +10 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +6 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-6/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3282]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-7/igt@gem_pwrite@basic-random.html * igt@gem_pwrite_snooped: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3282]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-6/igt@gem_pwrite_snooped.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4079]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_spin_batch@user-each: - shard-mtlp: [PASS][61] -> [DMESG-FAIL][62] ([i915#8962]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-1/igt@gem_spin_batch@user-each.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-4/igt@gem_spin_batch@user-each.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gen3_render_mixed_blits: - shard-mtlp: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-6/igt@gen3_render_mixed_blits.html * igt@gen3_render_tiledy_blits: - shard-rkl: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@gen3_render_tiledy_blits.html - shard-dg1: NOTRUN -> [SKIP][68] ([fdo#109289]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][69] ([fdo#109289]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#2527]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-16/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4881]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@i915_fb_tiling.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [PASS][74] -> [FAIL][75] ([i915#7069]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-7/igt@i915_hangman@gt-engine-error@vcs0.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_module_load@load: - shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#6227]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl6/igt@i915_module_load@load.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][77] -> [SKIP][78] ([i915#1397]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#1397]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#1397]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [PASS][81] -> [SKIP][82] ([i915#1397]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109506]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#5723]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#5723]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@sysfs-reader: - shard-snb: NOTRUN -> [DMESG-WARN][86] ([i915#8841]) +1 other test dmesg-warn [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-snb2/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4215] / [i915#5190]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4212]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4212]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3826]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#8502] / [i915#8709]) +11 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][92] ([i915#8247]) +3 other tests fail [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#404]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#1769] / [i915#3555]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#111614]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#5286]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538] / [i915#5286]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][98] -> [FAIL][99] ([i915#5138]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][100] ([i915#5138]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#111614] / [i915#3638]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][102] ([fdo#111614]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-10/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][103] ([fdo#111614]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#5190]) +10 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][105] ([fdo#110723]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +6 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#2705]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#5354]) +22 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][110] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-9/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5354] / [i915#6095]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3734] / [i915#5354] / [i915#6095]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#3886] / [i915#5354] / [i915#6095]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#3886]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl2/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#3886]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-glk2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#5354]) +55 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-16/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3886] / [i915#5354] / [i915#6095]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-6/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3689] / [i915#3886] / [i915#5354]) +9 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#5354] / [i915#6095]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-8/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#5354] / [i915#6095]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5354]) +12 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html - shard-dg1: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@kms_ccs@pipe-d-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#3742]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-max: - shard-tglu: NOTRUN -> [SKIP][125] ([fdo#111827]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-7/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111827]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#7828]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-multiple.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#7828]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7828]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-2/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7118]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3299]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7118]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-6/igt@kms_content_protection@lic.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][133] ([i915#7173]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3359]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3359]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3555]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3555]) +9 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4103] / [i915#4213] / [i915#5608]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#109274] / [i915#5354]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][141] -> [FAIL][142] ([i915#2346]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@forked-bo@all-pipes: - shard-mtlp: [PASS][143] -> [DMESG-WARN][144] ([i915#2017]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-4/igt@kms_cursor_legacy@forked-bo@all-pipes.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-4/igt@kms_cursor_legacy@forked-bo@all-pipes.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4103] / [i915#4213]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#4103]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#9226] / [i915#9261]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#9227]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#3840]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_dsc@dsc-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#3840]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3840]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-apl: NOTRUN -> [SKIP][153] ([fdo#109271] / [fdo#111767]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl3/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111767] / [i915#3637]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#8381]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-4/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111825]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][157] ([fdo#109274]) +7 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@d-dp4: - shard-dg2: NOTRUN -> [FAIL][158] ([fdo#103375]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#2672]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][160] ([fdo#109285]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#5274]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8708]) +16 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109280]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][164] ([fdo#111825] / [i915#1825]) +5 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#1825]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [PASS][166] -> [FAIL][167] ([i915#6880]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#8708]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3458]) +22 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#110189]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-apl: NOTRUN -> [SKIP][171] ([fdo#109271]) +41 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][172] ([fdo#111825]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#3458]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3023]) +7 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#8708]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#6118]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#433]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-16/igt@kms_hdmi_inject@inject-audio.html - shard-tglu: [PASS][178] -> [SKIP][179] ([i915#433]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#8228]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#6301]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: NOTRUN -> [INCOMPLETE][183] ([i915#180] / [i915#9392]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8806]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-tglu: NOTRUN -> [SKIP][185] ([fdo#109274]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][186] ([fdo#109271]) +174 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-snb4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#5176]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#5235]) +19 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#5235]) +7 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#5235]) +11 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-dp-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#5235]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][192] ([fdo#109271] / [i915#658]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#658]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#1072]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@kms_psr@psr2_cursor_plane_onoff.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#1072]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-12/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#1072]) +7 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@kms_psr@psr2_dpms.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4235] / [i915#5190]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111615] / [i915#5289]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][199] ([fdo#111615] / [i915#5289]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#4235]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#4098]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][202] ([i915#5465]) +1 other test fail [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#8823]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][204] ([IGT#2]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#8623]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][206] ([i915#8623]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#8623]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@pipe-c-query-forked-busy-hang: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#4070] / [i915#6768]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_vblank@pipe-c-query-forked-busy-hang.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#4070] / [i915#533] / [i915#6768]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#2437]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][211] -> [FAIL][212] ([i915#7484]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#8516]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3708] / [i915#4077]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3291] / [i915#3708]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][216] ([fdo#109295]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-2/igt@prime_vgem@fence-write-hang.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][217] ([fdo#109307]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109315] / [i915#2575]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-9/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2575]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-5/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2575]) +14 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-rkl: NOTRUN -> [SKIP][221] ([fdo#109315]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_label_bo@set-label: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#7711]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@vc4/vc4_label_bo@set-label.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#2575]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-3/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#7711]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-6/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-glk: NOTRUN -> [SKIP][225] ([fdo#109271]) +40 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-glk5/igt@vc4/vc4_tiling@set-bad-flags.html * igt@vc4/vc4_tiling@set-get: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#7711]) +9 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@vc4/vc4_tiling@set-get.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#7711]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@vc4/vc4_wait_bo@used-bo-0ns.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-mtlp: [FAIL][228] ([i915#6268]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-1/igt@gem_ctx_exec@basic-nohangcheck.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][230] ([i915#6786]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-mtlp: [ABORT][232] ([i915#9262]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-4/igt@gem_ctx_isolation@preservation-s3@vecs0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-5/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_exec_capture@pi@vcs1: - shard-mtlp: [FAIL][234] ([i915#4475] / [i915#7765]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-3/igt@gem_exec_capture@pi@vcs1.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html * igt@gem_exec_capture@pi@vecs0: - shard-mtlp: [DMESG-WARN][236] ([i915#5591]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-3/igt@gem_exec_capture@pi@vecs0.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][238] ([i915#2842]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: [DMESG-WARN][240] ([i915#4391] / [i915#4423]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-17/igt@gem_lmem_swapping@heavy-random@lmem0.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-16/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][242] ([i915#5493]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_softpin@noreloc-s3: - shard-dg2: [FAIL][244] ([fdo#103375]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-5/igt@gem_softpin@noreloc-s3.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-1/igt@gem_softpin@noreloc-s3.html * igt@i915_hangman@engine-engine-hang@vcs0: - shard-mtlp: [FAIL][246] ([i915#7069]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-8/igt@i915_hangman@engine-engine-hang@vcs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@i915_hangman@engine-engine-hang@vcs0.html * igt@i915_module_load@load: - shard-dg1: [SKIP][248] ([i915#6227]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-15/igt@i915_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-14/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][250] ([i915#8617]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][252] ([i915#1397]) -> [PASS][253] +1 other test pass [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-12/igt@i915_pm_rpm@dpms-lpsp.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][254] ([i915#1397]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][256] ([i915#1397]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rps@waitboost: - shard-dg2: [FAIL][258] ([i915#8229]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-10/igt@i915_pm_rps@waitboost.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-2/igt@i915_pm_rps@waitboost.html - shard-dg1: [FAIL][260] ([i915#8229]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-18/igt@i915_pm_rps@waitboost.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-17/igt@i915_pm_rps@waitboost.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [DMESG-FAIL][262] -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-4/igt@i915_selftest@live@gt_pm.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][264] ([fdo#103375]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][266] ([i915#5138]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][268] ([i915#3743]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-a-edp-1: - shard-mtlp: [ABORT][270] ([i915#9414]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-a-edp-1.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-1/igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-a-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][272] ([i915#2346]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [INCOMPLETE][274] ([i915#1982] / [i915#9392]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * {igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a}: - shard-rkl: [SKIP][276] ([i915#1937]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html - shard-dg1: [SKIP][278] ([i915#1937]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-12/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-dg2: [FAIL][280] ([i915#9196]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-11/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-tglu: [FAIL][282] ([i915#9196]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-tglu: [INCOMPLETE][284] -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-tglu-4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][286] ([i915#4349]) -> [PASS][287] +1 other test pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-3/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [FAIL][288] ([i915#4521]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@ccs0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-2/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@frequency@gt0: - shard-glk: [SKIP][290] ([fdo#109271]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-glk6/igt@perf_pmu@frequency@gt0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-glk2/igt@perf_pmu@frequency@gt0.html - shard-snb: [SKIP][292] ([fdo#109271]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-snb2/igt@perf_pmu@frequency@gt0.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-snb4/igt@perf_pmu@frequency@gt0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][294] ([i915#1731]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-1/igt@sysfs_heartbeat_interval@mixed@vecs0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-6/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [TIMEOUT][296] ([i915#8521]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-mtlp-2/igt@sysfs_preempt_timeout@timeout@vecs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-mtlp-1/igt@sysfs_preempt_timeout@timeout@vecs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][298] ([i915#2681] / [i915#3591]) -> [WARN][299] ([i915#2681]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg1: [SKIP][300] ([i915#4423] / [i915#4538]) -> [SKIP][301] ([i915#4538]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-14/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][302] ([i915#7118]) -> [SKIP][303] ([i915#7118] / [i915#7162]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg2-2/igt@kms_content_protection@type1.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][304] ([fdo#110189] / [i915#3955]) -> [SKIP][305] ([i915#3955]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@flip-vs-suspend@b-vga1: - shard-snb: [INCOMPLETE][306] ([i915#4839] / [i915#8841]) -> [DMESG-WARN][307] ([i915#8841]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-snb7/igt@kms_flip@flip-vs-suspend@b-vga1.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-snb5/igt@kms_flip@flip-vs-suspend@b-vga1.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][308] ([i915#4816]) -> [SKIP][309] ([i915#4070] / [i915#4816]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][310] ([i915#1072]) -> [SKIP][311] ([i915#1072] / [i915#4078]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-19/igt@kms_psr@cursor_plane_move.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-16/igt@kms_psr@cursor_plane_move.html * igt@kms_scaling_modes@scaling-mode-full: - shard-dg1: [SKIP][312] ([i915#3555] / [i915#4423]) -> [SKIP][313] ([i915#3555]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13692/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-full.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/shard-dg1-12/igt@kms_scaling_modes@scaling-mode-full.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#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#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [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#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7743]: https://gitlab.freedesktop.org/drm/intel/issues/7743 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8229]: https://gitlab.freedesktop.org/drm/intel/issues/8229 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [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#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7506 -> IGTPW_9894 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13692: 5a9d63c889bb8fd9aa2fbf73888ce98f3688add0 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9894: 9894 IGT_7506: 4fdf544bd0a38c5a100ef43c30171827e1c8c442 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9894/index.html [-- Attachment #2: Type: text/html, Size: 98221 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-10-05 10:27 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-29 10:11 [igt-dev] [PATCH i-g-t v3 0/2] Add d3 mmap test Anshuman Gupta 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 1/2] test/xe_pm: Add exit handler to close fw handle Anshuman Gupta 2023-10-04 15:42 ` Rodrigo Vivi 2023-09-29 10:11 ` [igt-dev] [PATCH i-g-t v3 2/2] tests/xe_pm: Add d3-mmap IGT test Anshuman Gupta 2023-10-04 15:44 ` Rodrigo Vivi 2023-10-05 10:23 ` Kamil Konieczny 2023-10-05 10:27 ` Gupta, Anshuman 2023-09-29 10:58 ` [igt-dev] ✓ CI.xeBAT: success for Add d3 mmap test (rev2) Patchwork 2023-09-29 11:03 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-29 16:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox