* [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_* macros for Xe tests @ 2023-03-17 6:27 Zbigniew Kempczyński 2023-03-17 7:51 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-03-17 9:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Zbigniew Kempczyński @ 2023-03-17 6:27 UTC (permalink / raw) To: igt-dev As i915 and xe start to coexist in igt ensure iterators for Xe tests are unique and won't conflict in the future merges. Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/xe/xe_query.h | 6 ++-- tests/xe/xe_debugfs.c | 2 +- tests/xe/xe_dma_buf_sync.c | 2 +- tests/xe/xe_evict.c | 2 +- tests/xe/xe_exec_balancer.c | 50 ++++++++++++++-------------- tests/xe/xe_exec_basic.c | 12 +++---- tests/xe/xe_exec_compute_mode.c | 8 ++--- tests/xe/xe_exec_fault_mode.c | 16 ++++----- tests/xe/xe_exec_reset.c | 58 ++++++++++++++++----------------- tests/xe/xe_exec_threads.c | 18 +++++----- tests/xe/xe_guc_pc.c | 30 ++++++++--------- tests/xe/xe_pm.c | 14 ++++---- tests/xe/xe_query.c | 2 +- tests/xe/xe_vm.c | 52 ++++++++++++++--------------- 14 files changed, 136 insertions(+), 136 deletions(-) diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h index beea9d0949..70de183cc0 100644 --- a/lib/xe/xe_query.h +++ b/lib/xe/xe_query.h @@ -63,13 +63,13 @@ struct xe_device { uint16_t dev_id; }; -#define for_each_hw_engine(__fd, __hwe) \ +#define xe_for_each_hw_engine(__fd, __hwe) \ for (int __i = 0; __i < xe_number_hw_engines(__fd) && \ (__hwe = xe_hw_engine(__fd, __i)); ++__i) -#define for_each_hw_engine_class(__class) \ +#define xe_for_each_hw_engine_class(__class) \ for (__class = 0; __class < DRM_XE_ENGINE_CLASS_COMPUTE + 1; \ ++__class) -#define for_each_gt(__fd, __gt) \ +#define xe_for_each_gt(__fd, __gt) \ for (__gt = 0; __gt < xe_number_gt(__fd); ++__gt) #define XE_IS_CLASS_SYSMEM(__region) ((__region)->mem_class == XE_MEM_REGION_CLASS_SYSMEM) diff --git a/tests/xe/xe_debugfs.c b/tests/xe/xe_debugfs.c index 38c8beccc5..29b0078f39 100644 --- a/tests/xe/xe_debugfs.c +++ b/tests/xe/xe_debugfs.c @@ -260,7 +260,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) igt_subtest("gt") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { snprintf(devnode, sizeof(devnode), "gt%d", gt); igt_require(igt_debugfs_exists(fd, devnode, O_RDONLY)); test_gt(fd, gt); diff --git a/tests/xe/xe_dma_buf_sync.c b/tests/xe/xe_dma_buf_sync.c index e1a652ff53..8b97480a79 100644 --- a/tests/xe/xe_dma_buf_sync.c +++ b/tests/xe/xe_dma_buf_sync.c @@ -234,7 +234,7 @@ igt_main fd = drm_open_driver(DRIVER_XE); xe_device_get(fd); - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) if (hwe0 == NULL) { hwe0 = hwe; } else { diff --git a/tests/xe/xe_evict.c b/tests/xe/xe_evict.c index edd4b6d2e6..eddbbd6f4c 100644 --- a/tests/xe/xe_evict.c +++ b/tests/xe/xe_evict.c @@ -673,7 +673,7 @@ igt_main vram_size = xe_vram_size(fd, 0); igt_assert(vram_size); - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COPY) break; } diff --git a/tests/xe/xe_exec_balancer.c b/tests/xe/xe_exec_balancer.c index a247b1d268..f3341a99e9 100644 --- a/tests/xe/xe_exec_balancer.c +++ b/tests/xe/xe_exec_balancer.c @@ -57,7 +57,7 @@ static void test_all_active(int fd, int gt, int class) struct drm_xe_engine_class_instance eci[MAX_INSTANCE]; int i, num_placements = 0; - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { if (hwe->engine_class != class || hwe->gt_id != gt) continue; @@ -203,7 +203,7 @@ test_exec(int fd, int gt, int class, int n_engines, int n_execs, igt_assert(n_engines <= MAX_N_ENGINES); - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { if (hwe->engine_class != class || hwe->gt_id != gt) continue; @@ -426,7 +426,7 @@ test_cm(int fd, int gt, int class, int n_engines, int n_execs, igt_assert(n_engines <= MAX_N_ENGINES); - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { if (hwe->engine_class != class || hwe->gt_id != gt) continue; @@ -632,42 +632,42 @@ igt_main } igt_subtest("virtual-all-active") - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_all_active(fd, gt, class); for (const struct section *s = sections; s->name; s++) { igt_subtest_f("once-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_exec(fd, gt, class, 1, 1, s->flags); igt_subtest_f("twice-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_exec(fd, gt, class, 1, 2, s->flags); igt_subtest_f("many-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_exec(fd, gt, class, 1, s->flags & (REBIND | INVALIDATE) ? 64 : 1024, s->flags); igt_subtest_f("many-engines-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_exec(fd, gt, class, 16, s->flags & (REBIND | INVALIDATE) ? 64 : 1024, s->flags); igt_subtest_f("no-exec-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_exec(fd, gt, class, 1, 0, s->flags); @@ -675,34 +675,34 @@ igt_main continue; igt_subtest_f("once-cm-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_cm(fd, gt, class, 1, 1, s->flags); igt_subtest_f("twice-cm-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_cm(fd, gt, class, 1, 2, s->flags); igt_subtest_f("many-cm-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_cm(fd, gt, class, 1, s->flags & (REBIND | INVALIDATE) ? 64 : 1024, s->flags); igt_subtest_f("many-engines-cm-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_cm(fd, gt, class, 16, s->flags & (REBIND | INVALIDATE) ? 64 : 1024, s->flags); igt_subtest_f("no-exec-cm-%s", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_cm(fd, gt, class, 1, 0, s->flags); } diff --git a/tests/xe/xe_exec_basic.c b/tests/xe/xe_exec_basic.c index 106980e844..2a3cebd368 100644 --- a/tests/xe/xe_exec_basic.c +++ b/tests/xe/xe_exec_basic.c @@ -318,36 +318,36 @@ igt_main for (const struct section *s = sections; s->name; s++) { igt_subtest_f("once-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, 1, 1, s->flags); igt_subtest_f("twice-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, 2, 1, s->flags); igt_subtest_f("many-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, s->flags & (REBIND | INVALIDATE) ? 64 : 1024, 1, s->flags); igt_subtest_f("many-engines-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 16, s->flags & (REBIND | INVALIDATE) ? 64 : 1024, 1, s->flags); igt_subtest_f("many-engines-many-vm-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 16, s->flags & (REBIND | INVALIDATE) ? 64 : 1024, 16, s->flags); igt_subtest_f("no-exec-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, 0, 1, s->flags); } diff --git a/tests/xe/xe_exec_compute_mode.c b/tests/xe/xe_exec_compute_mode.c index e65767ae4f..60713a9581 100644 --- a/tests/xe/xe_exec_compute_mode.c +++ b/tests/xe/xe_exec_compute_mode.c @@ -334,15 +334,15 @@ igt_main for (const struct section *s = sections; s->name; s++) { igt_subtest_f("once-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, 1, s->flags); igt_subtest_f("twice-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, 2, s->flags); igt_subtest_f("many-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, s->flags & (REBIND | INVALIDATE) ? 64 : 128, @@ -352,7 +352,7 @@ igt_main continue; igt_subtest_f("many-engines-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 16, s->flags & (REBIND | INVALIDATE) ? 64 : 128, diff --git a/tests/xe/xe_exec_fault_mode.c b/tests/xe/xe_exec_fault_mode.c index 2a67352c2a..b5d924a338 100644 --- a/tests/xe/xe_exec_fault_mode.c +++ b/tests/xe/xe_exec_fault_mode.c @@ -530,22 +530,22 @@ igt_main for (const struct section *s = sections; s->name; s++) { igt_subtest_f("once-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, 1, s->flags); igt_subtest_f("twice-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, 2, s->flags); igt_subtest_f("many-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 1, s->flags & (REBIND | INVALIDATE) ? 64 : 128, s->flags); igt_subtest_f("many-engines-%s", s->name) - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_exec(fd, hwe, 16, s->flags & (REBIND | INVALIDATE) ? 64 : 128, @@ -553,19 +553,19 @@ igt_main } igt_subtest("atomic-once") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_atomic(fd, hwe, 1, 0); igt_subtest("atomic-once-wait") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_atomic(fd, hwe, 1, WAIT_ATOMIC); igt_subtest("atomic-many") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_atomic(fd, hwe, 8, 0); igt_subtest("atomic-many-wait") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_atomic(fd, hwe, 8, WAIT_ATOMIC); igt_fixture { diff --git a/tests/xe/xe_exec_reset.c b/tests/xe/xe_exec_reset.c index 106fe941c1..57dc90dd00 100644 --- a/tests/xe/xe_exec_reset.c +++ b/tests/xe/xe_exec_reset.c @@ -183,7 +183,7 @@ test_balancer(int fd, int gt, int class, int n_engines, int n_execs, xe_device_get(fd); } - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { if (hwe->engine_class != class || hwe->gt_id != gt) continue; @@ -837,106 +837,106 @@ igt_main } igt_subtest("spin") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_spin(fd, hwe); igt_subtest("cancel") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_legacy_mode(fd, hwe, 1, 1, CANCEL); igt_subtest("engine-reset") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_legacy_mode(fd, hwe, 2, 2, ENGINE_RESET); igt_subtest("cat-error") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_legacy_mode(fd, hwe, 2, 2, CAT_ERROR); igt_subtest("gt-reset") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_legacy_mode(fd, hwe, 2, 2, GT_RESET); igt_subtest("close-fd-no-exec") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_legacy_mode(-1, hwe, 16, 0, CLOSE_FD); igt_subtest("close-fd") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_legacy_mode(-1, hwe, 16, 256, CLOSE_FD); igt_subtest("close-engines-close-fd") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_legacy_mode(-1, hwe, 16, 256, CLOSE_FD | CLOSE_ENGINES); igt_subtest("cm-engine-reset") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_compute_mode(fd, hwe, 2, 2, ENGINE_RESET); igt_subtest("cm-cat-error") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_compute_mode(fd, hwe, 2, 2, CAT_ERROR); igt_subtest("cm-gt-reset") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_compute_mode(fd, hwe, 2, 2, GT_RESET); igt_subtest("cm-close-fd-no-exec") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_compute_mode(-1, hwe, 16, 0, CLOSE_FD); igt_subtest("cm-close-fd") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_compute_mode(-1, hwe, 16, 256, CLOSE_FD); igt_subtest("cm-close-engines-close-fd") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_compute_mode(-1, hwe, 16, 256, CLOSE_FD | CLOSE_ENGINES); for (const struct section *s = sections; s->name; s++) { igt_subtest_f("%s-cancel", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_balancer(fd, gt, class, 1, 1, CANCEL | s->flags); igt_subtest_f("%s-engine-reset", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_balancer(fd, gt, class, MAX_INSTANCE + 1, MAX_INSTANCE + 1, ENGINE_RESET | s->flags); igt_subtest_f("%s-cat-error", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_balancer(fd, gt, class, MAX_INSTANCE + 1, MAX_INSTANCE + 1, CAT_ERROR | s->flags); igt_subtest_f("%s-gt-reset", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_balancer(fd, gt, class, MAX_INSTANCE + 1, MAX_INSTANCE + 1, GT_RESET | s->flags); igt_subtest_f("%s-close-fd-no-exec", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_balancer(-1, gt, class, 16, 0, CLOSE_FD | s->flags); igt_subtest_f("%s-close-fd", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_balancer(-1, gt, class, 16, 256, CLOSE_FD | s->flags); igt_subtest_f("%s-close-engines-close-fd", s->name) - for_each_gt(fd, gt) - for_each_hw_engine_class(class) + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) test_balancer(-1, gt, class, 16, 256, CLOSE_FD | CLOSE_ENGINES | s->flags); } diff --git a/tests/xe/xe_exec_threads.c b/tests/xe/xe_exec_threads.c index 69055a829b..c34d8aec6b 100644 --- a/tests/xe/xe_exec_threads.c +++ b/tests/xe/xe_exec_threads.c @@ -82,7 +82,7 @@ test_balancer(int fd, int gt, uint32_t vm, uint64_t addr, uint64_t userptr, owns_vm = true; } - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { if (hwe->engine_class != class || hwe->gt_id != gt) continue; @@ -1038,15 +1038,15 @@ static void threads(int fd, int flags) int n_threads = 0; int gt; - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) ++n_hw_engines; if (flags & BALANCER) { - for_each_gt(fd, gt) - for_each_hw_engine_class(class) { + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) { int num_placements = 0; - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { if (hwe->engine_class != class || hwe->gt_id != gt) continue; @@ -1089,7 +1089,7 @@ static void threads(int fd, int flags) } - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { threads_data[i].mutex = &mutex; threads_data[i].cond = &cond; #define ADDRESS_SHIFT 39 @@ -1126,11 +1126,11 @@ static void threads(int fd, int flags) } if (flags & BALANCER) { - for_each_gt(fd, gt) - for_each_hw_engine_class(class) { + xe_for_each_gt(fd, gt) + xe_for_each_hw_engine_class(class) { int num_placements = 0; - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { if (hwe->engine_class != class || hwe->gt_id != gt) continue; diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c index 3f520d7bf4..60c93288bf 100644 --- a/tests/xe/xe_guc_pc.c +++ b/tests/xe/xe_guc_pc.c @@ -398,19 +398,19 @@ igt_main } igt_subtest("freq_basic_api") { - for_each_gt(fd, gt) + xe_for_each_gt(fd, gt) test_freq_basic_api(sysfs, gt); } igt_subtest("freq_fixed_idle") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { test_freq_fixed(sysfs, gt); } } igt_subtest("freq_fixed_exec") { - for_each_gt(fd, gt) { - for_each_hw_engine(fd, hwe) + xe_for_each_gt(fd, gt) { + xe_for_each_hw_engine(fd, hwe) igt_fork(child, ncpus) { igt_debug("Execution Started\n"); exec_basic(fd, hwe, MAX_N_ENGINES, 16); @@ -423,14 +423,14 @@ igt_main } igt_subtest("freq_range_idle") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { test_freq_range(sysfs, gt); } } igt_subtest("freq_range_exec") { - for_each_gt(fd, gt) { - for_each_hw_engine(fd, hwe) + xe_for_each_gt(fd, gt) { + xe_for_each_hw_engine(fd, hwe) igt_fork(child, ncpus) { igt_debug("Execution Started\n"); exec_basic(fd, hwe, MAX_N_ENGINES, 16); @@ -443,39 +443,39 @@ igt_main } igt_subtest("freq_low_max") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { test_freq_low_max(sysfs, gt); } } igt_subtest("freq_suspend") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { test_suspend(sysfs, gt); } } igt_subtest("freq_reset") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { test_reset(fd, sysfs, gt, 1); } } igt_subtest("freq_reset_multiple") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { test_reset(fd, sysfs, gt, 50); } } igt_subtest("rc6_on_idle") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { assert(igt_wait(in_rc6(sysfs, gt), 1000, 1)); } } igt_subtest("rc0_on_exec") { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { assert(igt_wait(in_rc6(sysfs, gt), 1000, 1)); - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) igt_fork(child, ncpus) { igt_debug("Execution Started\n"); exec_basic(fd, hwe, MAX_N_ENGINES, 16); @@ -488,7 +488,7 @@ igt_main } igt_fixture { - for_each_gt(fd, gt) { + xe_for_each_gt(fd, gt) { set_freq(sysfs, gt, "min", stash_min); set_freq(sysfs, gt, "max", stash_max); } diff --git a/tests/xe/xe_pm.c b/tests/xe/xe_pm.c index eb752b0208..23b8246ede 100644 --- a/tests/xe/xe_pm.c +++ b/tests/xe/xe_pm.c @@ -373,7 +373,7 @@ igt_main xe_device_get(device.fd_xe); /* Always perform initial once-basic exec checking for health */ - for_each_hw_engine(device.fd_xe, hwe) + xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 1, NO_SUSPEND, NO_RPM); get_d3cold_allowed(device.pci_xe, d3cold_allowed); @@ -387,7 +387,7 @@ igt_main } igt_subtest_f("%s-basic-exec", s->name) { - for_each_hw_engine(device.fd_xe, hwe) + xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, NO_RPM); } @@ -395,13 +395,13 @@ igt_main igt_subtest_f("%s-exec-after", s->name) { igt_system_suspend_autoresume(s->state, SUSPEND_TEST_NONE); - for_each_hw_engine(device.fd_xe, hwe) + xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, NO_SUSPEND, NO_RPM); } igt_subtest_f("%s-multiple-execs", s->name) { - for_each_hw_engine(device.fd_xe, hwe) + xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, s->state, NO_RPM); } @@ -409,7 +409,7 @@ igt_main for (const struct d_state *d = d_states; d->name; d++) { igt_subtest_f("%s-%s-basic-exec", s->name, d->name) { igt_assert(setup_d3(device, d->state)); - for_each_hw_engine(device.fd_xe, hwe) + xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, NO_RPM); } @@ -424,14 +424,14 @@ igt_main igt_subtest_f("%s-basic-exec", d->name) { igt_assert(setup_d3(device, d->state)); - for_each_hw_engine(device.fd_xe, hwe) + xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 1, NO_SUSPEND, d->state); } igt_subtest_f("%s-multiple-execs", d->name) { igt_assert(setup_d3(device, d->state)); - for_each_hw_engine(device.fd_xe, hwe) + xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, NO_SUSPEND, d->state); } diff --git a/tests/xe/xe_query.c b/tests/xe/xe_query.c index b5b78517ce..3f03822555 100644 --- a/tests/xe/xe_query.c +++ b/tests/xe/xe_query.c @@ -181,7 +181,7 @@ test_query_engines(int fd) struct drm_xe_engine_class_instance *hwe; int i = 0; - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { igt_assert(hwe); igt_info("engine %d: %s\n", i++, xe_engine_class_string(hwe->engine_class)); diff --git a/tests/xe/xe_vm.c b/tests/xe/xe_vm.c index 265308a111..15356c704d 100644 --- a/tests/xe/xe_vm.c +++ b/tests/xe/xe_vm.c @@ -1619,7 +1619,7 @@ igt_main fd = drm_open_driver(DRIVER_XE); xe_device_get(fd); - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COPY) { hwe_non_copy = hwe; break; @@ -1654,41 +1654,41 @@ igt_main vm_async_ops_err(fd, true); igt_subtest("shared-pte-page") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) shared_pte_page(fd, hwe, 4, xe_get_default_alignment(fd)); igt_subtest("shared-pde-page") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) shared_pte_page(fd, hwe, 4, 0x1000ul * 512); igt_subtest("shared-pde2-page") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) shared_pte_page(fd, hwe, 4, 0x1000ul * 512 * 512); igt_subtest("shared-pde3-page") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) shared_pte_page(fd, hwe, 4, 0x1000ul * 512 * 512 * 512); igt_subtest("bind-engines-independent") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_bind_engines_independent(fd, hwe); igt_subtest("bind-array-twice") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_bind_array(fd, hwe, 2, 0); igt_subtest("bind-array-many") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_bind_array(fd, hwe, 16, 0); igt_subtest("bind-array-engine-twice") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_bind_array(fd, hwe, 2, BIND_ARRAY_BIND_ENGINE_FLAG); igt_subtest("bind-array-engine-many") - for_each_hw_engine(fd, hwe) + xe_for_each_hw_engine(fd, hwe) test_bind_array(fd, hwe, 16, BIND_ARRAY_BIND_ENGINE_FLAG); @@ -1696,41 +1696,41 @@ igt_main bind_size = bind_size << 1) { igt_subtest_f("large-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, 0); break; } igt_subtest_f("large-split-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_SPLIT); break; } igt_subtest_f("large-misaligned-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_MISALIGNED); break; } igt_subtest_f("large-split-misaligned-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_SPLIT | LARGE_BIND_FLAG_MISALIGNED); break; } igt_subtest_f("large-userptr-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_USERPTR); break; } igt_subtest_f("large-userptr-split-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_SPLIT | LARGE_BIND_FLAG_USERPTR); @@ -1738,7 +1738,7 @@ igt_main } igt_subtest_f("large-userptr-misaligned-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_MISALIGNED | LARGE_BIND_FLAG_USERPTR); @@ -1746,7 +1746,7 @@ igt_main } igt_subtest_f("large-userptr-split-misaligned-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_SPLIT | LARGE_BIND_FLAG_MISALIGNED | @@ -1757,13 +1757,13 @@ igt_main bind_size = (0x1ull << 21) + (0x1ull << 20); igt_subtest_f("mixed-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, 0); break; } igt_subtest_f("mixed-misaligned-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_MISALIGNED); break; @@ -1771,14 +1771,14 @@ igt_main bind_size = (0x1ull << 30) + (0x1ull << 29) + (0x1ull << 20); igt_subtest_f("mixed-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, 0); break; } bind_size = (0x1ull << 30) + (0x1ull << 29) + (0x1ull << 20); igt_subtest_f("mixed-misaligned-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_MISALIGNED); break; @@ -1786,7 +1786,7 @@ igt_main bind_size = (0x1ull << 21) + (0x1ull << 20); igt_subtest_f("mixed-userptr-binds-%lld", (long long) bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_USERPTR); break; @@ -1794,7 +1794,7 @@ igt_main igt_subtest_f("mixed-userptr-misaligned-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_MISALIGNED | LARGE_BIND_FLAG_USERPTR); @@ -1803,7 +1803,7 @@ igt_main bind_size = (0x1ull << 30) + (0x1ull << 29) + (0x1ull << 20); igt_subtest_f("mixed-userptr-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_USERPTR); break; @@ -1812,7 +1812,7 @@ igt_main bind_size = (0x1ull << 30) + (0x1ull << 29) + (0x1ull << 20); igt_subtest_f("mixed-userptr-misaligned-binds-%lld", (long long)bind_size) - for_each_hw_engine(fd, hwe) { + xe_for_each_hw_engine(fd, hwe) { test_large_binds(fd, hwe, 4, 16, bind_size, LARGE_BIND_FLAG_MISALIGNED | LARGE_BIND_FLAG_USERPTR); -- 2.34.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/xe_query: Rename for_each_* macros for Xe tests 2023-03-17 6:27 [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_* macros for Xe tests Zbigniew Kempczyński @ 2023-03-17 7:51 ` Patchwork 2023-03-17 9:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2023-03-17 7:51 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 11972 bytes --] == Series Details == Series: lib/xe_query: Rename for_each_* macros for Xe tests URL : https://patchwork.freedesktop.org/series/115304/ State : success == Summary == CI Bug Log - changes from CI_DRM_12873 -> IGTPW_8631 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/index.html Participating hosts (35 -> 37) ------------------------------ Additional (3): fi-kbl-soraka bat-atsm-1 bat-dg1-6 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8631 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@eof: - bat-atsm-1: NOTRUN -> [SKIP][1] ([i915#2582]) +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-atsm-1/igt@fbdev@eof.html * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: NOTRUN -> [ABORT][2] ([i915#6687] / [i915#7978]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-atsm-1/igt@gem_mmap@basic.html - bat-dg1-6: NOTRUN -> [SKIP][6] ([i915#4083]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg1-6: NOTRUN -> [SKIP][7] ([i915#4079]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@gem_render_tiled_blits@basic.html * igt@gem_sync@basic-each: - bat-atsm-1: NOTRUN -> [FAIL][8] ([i915#8062]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-atsm-1/igt@gem_sync@basic-each.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-6: NOTRUN -> [SKIP][9] ([i915#4077]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@gem_tiled_fence_blits@basic.html - bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#4077]) +2 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-atsm-1: NOTRUN -> [SKIP][11] ([i915#4079]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-atsm-1/igt@gem_tiled_pread_basic.html * igt@i915_hangman@error-state-basic: - bat-atsm-1: NOTRUN -> [ABORT][12] ([i915#8060]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-atsm-1/igt@i915_hangman@error-state-basic.html * igt@i915_pm_backlight@basic-brightness: - bat-dg1-6: NOTRUN -> [SKIP][13] ([i915#7561]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rps@basic-api: - bat-dg1-6: NOTRUN -> [SKIP][14] ([i915#6621]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gem_contexts: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][15] ([i915#7913]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-kbl-soraka/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][16] ([i915#5334] / [i915#7872]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][17] ([i915#1886]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@slpc: - bat-rpls-1: NOTRUN -> [DMESG-FAIL][18] ([i915#6367]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-6: NOTRUN -> [SKIP][19] ([i915#4215]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg1-6: NOTRUN -> [SKIP][20] ([i915#4212]) +7 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_chamelium_frames@hdmi-crc-fast: - fi-kbl-soraka: NOTRUN -> [SKIP][21] ([fdo#109271]) +16 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-dg1-6: NOTRUN -> [SKIP][22] ([i915#7828]) +8 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - fi-bsw-nick: NOTRUN -> [SKIP][23] ([fdo#109271]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-bsw-nick/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - bat-jsl-3: NOTRUN -> [SKIP][24] ([i915#7828]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-jsl-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - fi-bsw-n3050: NOTRUN -> [SKIP][25] ([fdo#109271]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-bsw-n3050/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-dg1-6: NOTRUN -> [SKIP][26] ([i915#4103] / [i915#4213]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg1-6: NOTRUN -> [SKIP][27] ([fdo#109285]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@sprite_plane_onoff: - bat-dg1-6: NOTRUN -> [SKIP][28] ([i915#1072] / [i915#4078]) +3 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-6: NOTRUN -> [SKIP][29] ([i915#3555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-gtt: - bat-dg1-6: NOTRUN -> [SKIP][30] ([i915#3708] / [i915#4077]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-dg1-6: NOTRUN -> [SKIP][31] ([i915#3708]) +3 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - bat-dg1-6: NOTRUN -> [SKIP][32] ([i915#3708] / [i915#4873]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-dg1-6/igt@prime_vgem@basic-userptr.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][33] ([i915#7911]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-bsw-n3050/igt@i915_selftest@live@execlists.html - fi-bsw-nick: [ABORT][35] ([i915#7911] / [i915#7913]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/fi-bsw-nick/igt@i915_selftest@live@execlists.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gem_contexts: - bat-jsl-3: [INCOMPLETE][37] -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@hangcheck: - fi-skl-guc: [DMESG-WARN][39] ([i915#8073]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/fi-skl-guc/igt@i915_selftest@live@hangcheck.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/fi-skl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][41] ([i915#4983]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/bat-rpls-1/igt@i915_selftest@live@reset.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/bat-rpls-1/igt@i915_selftest@live@reset.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8060]: https://gitlab.freedesktop.org/drm/intel/issues/8060 [i915#8062]: https://gitlab.freedesktop.org/drm/intel/issues/8062 [i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7202 -> IGTPW_8631 CI-20190529: 20190529 CI_DRM_12873: b97925f47e2a20e1b79bc7c8cc236ded1bd431df @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8631: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/index.html IGT_7202: b4ec7dac375eed2dda89c64d4de94c4c9205b601 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/index.html [-- Attachment #2: Type: text/html, Size: 14325 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/xe_query: Rename for_each_* macros for Xe tests 2023-03-17 6:27 [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_* macros for Xe tests Zbigniew Kempczyński 2023-03-17 7:51 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-03-17 9:57 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2023-03-17 9:57 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 25822 bytes --] == Series Details == Series: lib/xe_query: Rename for_each_* macros for Xe tests URL : https://patchwork.freedesktop.org/series/115304/ State : success == Summary == CI Bug Log - changes from CI_DRM_12873_full -> IGTPW_8631_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_8631_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: [PASS][1] -> [FAIL][2] ([i915#2842]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-glk2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][3] -> [ABORT][4] ([i915#5566]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-apl6/igt@gen9_exec_parse@allowed-single.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_module_load@reload-no-display: - shard-snb: [PASS][5] -> [ABORT][6] ([i915#4528]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-snb5/igt@i915_module_load@reload-no-display.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-snb2/igt@i915_module_load@reload-no-display.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#72]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2346]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][11] -> [FAIL][12] ([i915#2346]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-snb: [PASS][13] -> [DMESG-WARN][14] ([i915#5090]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-snb7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-snb2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html #### Possible fixes #### * igt@fbdev@eof: - {shard-tglu}: [SKIP][15] ([i915#2582]) -> [PASS][16] +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-9/igt@fbdev@eof.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-4/igt@fbdev@eof.html * igt@fbdev@info: - {shard-rkl}: [SKIP][17] ([i915#2582]) -> [PASS][18] +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-1/igt@fbdev@info.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@fbdev@info.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][19] ([fdo#103375]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - {shard-rkl}: [FAIL][21] ([i915#2842]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-3/igt@gem_exec_fair@basic-none-rrul@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][23] ([i915#2842]) -> [PASS][24] +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - {shard-rkl}: [SKIP][25] ([i915#3281]) -> [PASS][26] +8 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_lmem_swapping@verify@lmem0: - {shard-dg1}: [DMESG-WARN][27] -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-dg1-13/igt@gem_lmem_swapping@verify@lmem0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-dg1-17/igt@gem_lmem_swapping@verify@lmem0.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - {shard-rkl}: [SKIP][29] ([i915#3282]) -> [PASS][30] +4 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gen9_exec_parse@batch-invalid-length: - {shard-rkl}: [SKIP][31] ([i915#2527]) -> [PASS][32] +4 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@i915_hangman@engine-engine-error@bcs0: - {shard-rkl}: [SKIP][33] ([i915#6258]) -> [PASS][34] +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@i915_hangman@engine-engine-error@bcs0.html * igt@i915_module_load@reload-with-fault-injection: - {shard-tglu}: [DMESG-WARN][35] ([i915#2867]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][37] ([fdo#109271]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-apl6/igt@i915_pm_dc@dc9-dpms.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-apl2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@drm-resources-equal: - {shard-tglu}: [SKIP][39] ([i915#3547]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-9/igt@i915_pm_rpm@drm-resources-equal.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-6/igt@i915_pm_rpm@drm-resources-equal.html - {shard-rkl}: [SKIP][41] ([fdo#109308]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-1/igt@i915_pm_rpm@drm-resources-equal.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@i915_pm_rpm@drm-resources-equal.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][43] ([i915#5334]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_atomic@plane-overlay-legacy: - {shard-rkl}: [SKIP][45] ([i915#1845] / [i915#4098]) -> [PASS][46] +32 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-2/igt@kms_atomic@plane-overlay-legacy.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@kms_atomic@plane-overlay-legacy.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs: - {shard-tglu}: [SKIP][47] ([i915#1845]) -> [PASS][48] +39 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-10/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-vga1: - shard-snb: [FAIL][49] ([i915#79]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-snb7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-vga1.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-snb7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-vga1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - {shard-tglu}: [SKIP][51] ([i915#1849]) -> [PASS][52] +16 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - {shard-rkl}: [SKIP][53] ([i915#1849] / [i915#4098]) -> [PASS][54] +16 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_plane@plane-position-covered@pipe-a-planes: - {shard-rkl}: [SKIP][55] ([i915#1849]) -> [PASS][56] +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-1/igt@kms_plane@plane-position-covered@pipe-a-planes.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@kms_plane@plane-position-covered@pipe-a-planes.html - {shard-tglu}: [SKIP][57] ([i915#1849] / [i915#3558]) -> [PASS][58] +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-9/igt@kms_plane@plane-position-covered@pipe-a-planes.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-6/igt@kms_plane@plane-position-covered@pipe-a-planes.html * igt@kms_psr@cursor_blt: - {shard-rkl}: [SKIP][59] ([i915#1072]) -> [PASS][60] +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-1/igt@kms_psr@cursor_blt.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@kms_psr@cursor_blt.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - {shard-rkl}: [SKIP][61] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-a: - {shard-tglu}: [SKIP][63] ([fdo#109274]) -> [PASS][64] +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-9/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html * igt@kms_vblank@pipe-d-wait-forked-busy: - {shard-tglu}: [SKIP][65] ([i915#1845] / [i915#7651]) -> [PASS][66] +18 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-9/igt@kms_vblank@pipe-d-wait-forked-busy.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-5/igt@kms_vblank@pipe-d-wait-forked-busy.html * igt@perf@mi-rpc: - {shard-rkl}: [SKIP][67] ([i915#2434]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-6/igt@perf@mi-rpc.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][69] ([i915#4349]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-1/igt@perf_pmu@idle@rcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-5/igt@perf_pmu@idle@rcs0.html * igt@prime_vgem@basic-fence-flip: - {shard-tglu}: [SKIP][71] ([fdo#109295]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-tglu-9/igt@prime_vgem@basic-fence-flip.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-tglu-5/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-write: - {shard-rkl}: [SKIP][73] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-rkl-3/igt@prime_vgem@basic-write.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@sysfs_timeslice_duration@timeout@vcs1: - {shard-dg1}: [FAIL][75] ([i915#1755]) -> [PASS][76] +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12873/shard-dg1-12/igt@sysfs_timeslice_duration@timeout@vcs1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/shard-dg1-15/igt@sysfs_timeslice_duration@timeout@vcs1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#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#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [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#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [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#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#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7202 -> IGTPW_8631 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12873: b97925f47e2a20e1b79bc7c8cc236ded1bd431df @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8631: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8631/index.html IGT_7202: b4ec7dac375eed2dda89c64d4de94c4c9205b601 @ 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_8631/index.html [-- Attachment #2: Type: text/html, Size: 19675 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-03-17 9:57 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-17 6:27 [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_* macros for Xe tests Zbigniew Kempczyński 2023-03-17 7:51 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-03-17 9:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox