* [PATCH] Revert "tests/intel/xe_vm: Do not error on -ECANCELED"
@ 2024-04-05 22:52 Matthew Brost
2024-04-05 23:46 ` ✓ CI.xeBAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Matthew Brost @ 2024-04-05 22:52 UTC (permalink / raw)
To: igt-dev; +Cc: Matthew Brost, Jonathan Cavitt
The test should never unbind an address used by hammer thread nor should
the exec queue in the hammer thread get banned.
This reverts commit 81462e71323ae6764d7f509f4a1bbd3e41aab13e.
Cc: Jonathan Cavitt <jonathan.cavitt@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
tests/intel/xe_vm.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index ecb2a783c4..bd4973cc38 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -1126,7 +1126,6 @@ static void *hammer_thread(void *tdata)
uint32_t exec_queue = xe_exec_queue_create(t->fd, t->vm, t->eci, 0);
int b;
int i = 0;
- int err = 0;
sync[0].handle = syncobj_create(t->fd, 0);
pthread_barrier_wait(t->barrier);
@@ -1149,15 +1148,14 @@ static void *hammer_thread(void *tdata)
exec.address = batch_addr;
if (i % 32) {
exec.num_syncs = 0;
- err = __xe_exec(t->fd, &exec);
+ xe_exec(t->fd, &exec);
} else {
exec.num_syncs = 1;
- err = __xe_exec(t->fd, &exec);
+ xe_exec(t->fd, &exec);
igt_assert(syncobj_wait(t->fd, &sync[0].handle, 1,
INT64_MAX, 0, NULL));
syncobj_reset(t->fd, &sync[0].handle, 1);
}
- igt_assert(!err || err == -ECANCELED);
++i;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* ✓ CI.xeBAT: success for Revert "tests/intel/xe_vm: Do not error on -ECANCELED" 2024-04-05 22:52 [PATCH] Revert "tests/intel/xe_vm: Do not error on -ECANCELED" Matthew Brost @ 2024-04-05 23:46 ` Patchwork 2024-04-05 23:53 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-04-10 15:49 ` [PATCH] " Cavitt, Jonathan 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2024-04-05 23:46 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2047 bytes --] == Series Details == Series: Revert "tests/intel/xe_vm: Do not error on -ECANCELED" URL : https://patchwork.freedesktop.org/series/132109/ State : success == Summary == CI Bug Log - changes from XEIGT_7801_BAT -> XEIGTPW_10987_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10987_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#616]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7801/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10987/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html #### Possible fixes #### * igt@xe_evict@evict-cm-threads-small: - bat-dg2-oem2: [TIMEOUT][3] ([Intel XE#1259] / [Intel XE#1473]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7801/bat-dg2-oem2/igt@xe_evict@evict-cm-threads-small.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10987/bat-dg2-oem2/igt@xe_evict@evict-cm-threads-small.html [Intel XE#1259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1259 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 Build changes ------------- * IGT: IGT_7801 -> IGTPW_10987 * Linux: xe-1046-5714711c6612120bd9c306824ec807d322c0735b -> xe-1049-11155f150a41d028c6ac7a141924fd4c8798721d IGTPW_10987: 10987 IGT_7801: 7801 xe-1046-5714711c6612120bd9c306824ec807d322c0735b: 5714711c6612120bd9c306824ec807d322c0735b xe-1049-11155f150a41d028c6ac7a141924fd4c8798721d: 11155f150a41d028c6ac7a141924fd4c8798721d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10987/index.html [-- Attachment #2: Type: text/html, Size: 2649 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ Fi.CI.BAT: failure for Revert "tests/intel/xe_vm: Do not error on -ECANCELED" 2024-04-05 22:52 [PATCH] Revert "tests/intel/xe_vm: Do not error on -ECANCELED" Matthew Brost 2024-04-05 23:46 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-04-05 23:53 ` Patchwork 2024-04-10 15:49 ` [PATCH] " Cavitt, Jonathan 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2024-04-05 23:53 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 26539 bytes --] == Series Details == Series: Revert "tests/intel/xe_vm: Do not error on -ECANCELED" URL : https://patchwork.freedesktop.org/series/132109/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14537 -> IGTPW_10987 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10987 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10987, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/index.html Participating hosts (33 -> 36) ------------------------------ Additional (7): bat-dg1-7 fi-glk-j4005 bat-atsm-1 fi-blb-e6850 bat-dg2-11 bat-mtlp-8 bat-arls-3 Missing (4): bat-arls-2 fi-cfl-8109u fi-snb-2520m fi-kbl-8809g Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10987: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gt_mocs: - bat-arls-3: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@i915_selftest@live@gt_mocs.html Known issues ------------ Here are the changes found in IGTPW_10987 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html - bat-arls-3: NOTRUN -> [SKIP][3] ([i915#9318]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - bat-atsm-1: NOTRUN -> [FAIL][4] ([i915#10563]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][5] ([i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-glk-j4005: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/fi-glk-j4005/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-arls-3: NOTRUN -> [SKIP][7] ([i915#10213]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4613]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#4083]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@gem_mmap@basic.html - bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#4083]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@gem_mmap@basic.html - bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4083]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@gem_mmap@basic.html - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#4083]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@gem_mmap@basic.html - bat-arls-3: NOTRUN -> [SKIP][13] ([i915#4083]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#4077]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#4079]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html - bat-arls-3: NOTRUN -> [SKIP][16] ([i915#10197] / [i915#10211] / [i915#4079]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][17] ([i915#10196] / [i915#4077]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@gem_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#4077]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html - bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#4077]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-atsm-1: NOTRUN -> [SKIP][20] ([i915#4079]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@gem_tiled_pread_basic.html - bat-dg1-7: NOTRUN -> [SKIP][21] ([i915#4079]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@gem_tiled_pread_basic.html - bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#4079]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@gem_tiled_pread_basic.html - bat-arls-3: NOTRUN -> [SKIP][23] ([i915#10206] / [i915#4079]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@gem_tiled_pread_basic.html * igt@i915_module_load@load: - bat-dg2-8: [PASS][24] -> [DMESG-WARN][25] ([i915#10014]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14537/bat-dg2-8/igt@i915_module_load@load.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-8/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - fi-blb-e6850: NOTRUN -> [SKIP][26] +32 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/fi-blb-e6850/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-dg1-7: NOTRUN -> [SKIP][27] ([i915#6621]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@i915_pm_rps@basic-api.html - bat-atsm-1: NOTRUN -> [SKIP][28] ([i915#6621]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@i915_pm_rps@basic-api.html - bat-dg2-9: NOTRUN -> [SKIP][29] ([i915#6621]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@i915_pm_rps@basic-api.html - bat-dg2-11: NOTRUN -> [SKIP][30] ([i915#6621]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@i915_pm_rps@basic-api.html - bat-mtlp-8: NOTRUN -> [SKIP][31] ([i915#6621]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@i915_pm_rps@basic-api.html - bat-arls-3: NOTRUN -> [SKIP][32] ([i915#10209]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gem: - bat-atsm-1: NOTRUN -> [ABORT][33] ([i915#10182] / [i915#10564]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@i915_selftest@live@gem.html * igt@i915_selftest@live@vma: - bat-dg2-14: [PASS][34] -> [ABORT][35] ([i915#10366]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14537/bat-dg2-14/igt@i915_selftest@live@vma.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-14/igt@i915_selftest@live@vma.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-arls-3: NOTRUN -> [SKIP][36] ([i915#10200]) +9 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#4212]) +7 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html - bat-dg2-11: NOTRUN -> [SKIP][38] ([i915#4212]) +7 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][39] ([i915#5190]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html - bat-dg2-11: NOTRUN -> [SKIP][40] ([i915#5190]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][41] ([i915#4212]) +8 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg1-7: NOTRUN -> [SKIP][42] ([i915#4215]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg2-11: NOTRUN -> [SKIP][43] ([i915#4215] / [i915#5190]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@size-max: - bat-atsm-1: NOTRUN -> [SKIP][44] ([i915#6077]) +37 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@kms_addfb_basic@size-max.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-glk-j4005: NOTRUN -> [SKIP][45] +10 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-dg2-11: NOTRUN -> [SKIP][46] ([i915#4103] / [i915#4213]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-arls-3: NOTRUN -> [SKIP][47] ([i915#10202]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][48] ([i915#4213]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-7: NOTRUN -> [SKIP][49] ([i915#4103] / [i915#4213]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-atsm-1: NOTRUN -> [SKIP][50] ([i915#6078]) +22 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_dsc@dsc-basic: - bat-dg2-11: NOTRUN -> [SKIP][51] ([i915#3555] / [i915#3840]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_dsc@dsc-basic.html - bat-arls-3: NOTRUN -> [SKIP][52] ([i915#9886]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@kms_dsc@dsc-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][53] ([i915#3555] / [i915#3840] / [i915#9159]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@kms_dsc@dsc-basic.html - bat-dg1-7: NOTRUN -> [SKIP][54] ([i915#3555] / [i915#3840]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-arls-3: NOTRUN -> [SKIP][55] ([i915#10207]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@kms_force_connector_basic@force-load-detect.html - bat-dg2-9: NOTRUN -> [SKIP][56] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html - bat-mtlp-8: NOTRUN -> [SKIP][57] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-7: NOTRUN -> [SKIP][58] [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html - bat-dg2-11: NOTRUN -> [SKIP][59] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-atsm-1: NOTRUN -> [SKIP][60] ([i915#6093]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html - bat-dg2-9: NOTRUN -> [SKIP][61] ([i915#5274]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html - bat-dg2-11: NOTRUN -> [SKIP][62] ([i915#5274]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html - bat-mtlp-8: NOTRUN -> [SKIP][63] ([i915#5274]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-7: NOTRUN -> [SKIP][64] ([i915#433]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24: - bat-atsm-1: NOTRUN -> [SKIP][65] ([i915#1836]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html * igt@kms_pipe_crc_basic@hang-read-crc: - bat-dg2-9: NOTRUN -> [SKIP][66] ([i915#9197]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pm_backlight@basic-brightness: - bat-dg1-7: NOTRUN -> [SKIP][67] ([i915#5354]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html - bat-dg2-11: NOTRUN -> [SKIP][68] ([i915#5354]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html - bat-arls-3: NOTRUN -> [SKIP][69] ([i915#9812]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@kms_pm_backlight@basic-brightness.html - bat-dg2-9: NOTRUN -> [SKIP][70] ([i915#5354]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_prop_blob@basic: - bat-atsm-1: NOTRUN -> [SKIP][71] ([i915#7357]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@kms_prop_blob@basic.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-arls-3: NOTRUN -> [SKIP][72] ([i915#9732]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - bat-mtlp-8: NOTRUN -> [SKIP][73] ([i915#4077] / [i915#9688]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr-primary-page-flip: - bat-dg1-7: NOTRUN -> [SKIP][74] ([i915#1072] / [i915#9732]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-dg2-11: NOTRUN -> [SKIP][75] ([i915#1072] / [i915#9732]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html - bat-dg2-9: NOTRUN -> [SKIP][76] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-atsm-1: NOTRUN -> [SKIP][77] ([i915#6094]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg2-9: NOTRUN -> [SKIP][78] ([i915#3555]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg2-11: NOTRUN -> [SKIP][79] ([i915#3555]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-8: NOTRUN -> [SKIP][80] ([i915#3555] / [i915#8809]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html - bat-arls-3: NOTRUN -> [SKIP][81] ([i915#10208] / [i915#8809]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg1-7: NOTRUN -> [SKIP][82] ([i915#3555]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg1-7: NOTRUN -> [SKIP][83] ([i915#3708]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html - bat-dg2-9: NOTRUN -> [SKIP][84] ([i915#3708] / [i915#9197]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html - bat-dg2-11: NOTRUN -> [SKIP][85] ([i915#3708]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-atsm-1: NOTRUN -> [SKIP][86] ([i915#4077]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html - bat-dg1-7: NOTRUN -> [SKIP][87] ([i915#3708] / [i915#4077]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html - bat-dg2-11: NOTRUN -> [SKIP][88] ([i915#3708] / [i915#4077]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html - bat-arls-3: NOTRUN -> [SKIP][89] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@prime_vgem@basic-fence-mmap.html - bat-dg2-9: NOTRUN -> [SKIP][90] ([i915#3708] / [i915#4077]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html - bat-mtlp-8: NOTRUN -> [SKIP][91] ([i915#3708] / [i915#4077]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][92] ([i915#3708]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html - bat-arls-3: NOTRUN -> [SKIP][93] ([i915#10212] / [i915#3708]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-dg2-11: NOTRUN -> [SKIP][94] ([i915#3291] / [i915#3708]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-11/igt@prime_vgem@basic-read.html - bat-arls-3: NOTRUN -> [SKIP][95] ([i915#10214] / [i915#3708]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-atsm-1: NOTRUN -> [SKIP][96] +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-atsm-1/igt@prime_vgem@basic-write.html - bat-dg2-9: NOTRUN -> [SKIP][97] ([i915#3291] / [i915#3708]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-dg2-9/igt@prime_vgem@basic-write.html - bat-mtlp-8: NOTRUN -> [SKIP][98] ([i915#10216] / [i915#3708]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-8/igt@prime_vgem@basic-write.html - bat-arls-3: NOTRUN -> [SKIP][99] ([i915#10216] / [i915#3708]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-arls-3/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@dmabuf@all-tests@dma_fence: - bat-adlp-11: [DMESG-FAIL][100] -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14537/bat-adlp-11/igt@dmabuf@all-tests@dma_fence.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-adlp-11/igt@dmabuf@all-tests@dma_fence.html * igt@dmabuf@all-tests@sanitycheck: - bat-adlp-11: [ABORT][102] -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14537/bat-adlp-11/igt@dmabuf@all-tests@sanitycheck.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-adlp-11/igt@dmabuf@all-tests@sanitycheck.html * igt@i915_selftest@live@hangcheck: - bat-mtlp-6: [DMESG-WARN][104] ([i915#9522]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14537/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10014]: https://gitlab.freedesktop.org/drm/intel/issues/10014 [i915#10182]: https://gitlab.freedesktop.org/drm/intel/issues/10182 [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10436]: https://gitlab.freedesktop.org/drm/intel/issues/10436 [i915#10563]: https://gitlab.freedesktop.org/drm/intel/issues/10563 [i915#10564]: https://gitlab.freedesktop.org/drm/intel/issues/10564 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093 [i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9522]: https://gitlab.freedesktop.org/drm/intel/issues/9522 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7801 -> IGTPW_10987 CI-20190529: 20190529 CI_DRM_14537: 11155f150a41d028c6ac7a141924fd4c8798721d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10987: 10987 IGT_7801: 7801 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10987/index.html [-- Attachment #2: Type: text/html, Size: 32993 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH] Revert "tests/intel/xe_vm: Do not error on -ECANCELED" 2024-04-05 22:52 [PATCH] Revert "tests/intel/xe_vm: Do not error on -ECANCELED" Matthew Brost 2024-04-05 23:46 ` ✓ CI.xeBAT: success for " Patchwork 2024-04-05 23:53 ` ✗ Fi.CI.BAT: failure " Patchwork @ 2024-04-10 15:49 ` Cavitt, Jonathan 2 siblings, 0 replies; 4+ messages in thread From: Cavitt, Jonathan @ 2024-04-10 15:49 UTC (permalink / raw) To: Brost, Matthew, igt-dev@lists.freedesktop.org -----Original Message----- From: Brost, Matthew <matthew.brost@intel.com> Sent: Friday, April 5, 2024 3:52 PM To: igt-dev@lists.freedesktop.org Cc: Brost, Matthew <matthew.brost@intel.com>; Cavitt, Jonathan <jonathan.cavitt@intel.com> Subject: [PATCH] Revert "tests/intel/xe_vm: Do not error on -ECANCELED" > > The test should never unbind an address used by hammer thread nor should > the exec queue in the hammer thread get banned. > > This reverts commit 81462e71323ae6764d7f509f4a1bbd3e41aab13e. > > Cc: Jonathan Cavitt <jonathan.cavitt@intel.com> > Signed-off-by: Matthew Brost <matthew.brost@intel.com> Acked-by: Jonathan Cavitt <jonathan.cavitt@intel.com> You also proposed an alternative solution that I verified to work (https://patchwork.freedesktop.org/patch/588571/?series=132238&rev=2) Perhaps this revert and the new patch can be posted together as part of the same series? -Jonathan Cavitt > --- > tests/intel/xe_vm.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c > index ecb2a783c4..bd4973cc38 100644 > --- a/tests/intel/xe_vm.c > +++ b/tests/intel/xe_vm.c > @@ -1126,7 +1126,6 @@ static void *hammer_thread(void *tdata) > uint32_t exec_queue = xe_exec_queue_create(t->fd, t->vm, t->eci, 0); > int b; > int i = 0; > - int err = 0; > > sync[0].handle = syncobj_create(t->fd, 0); > pthread_barrier_wait(t->barrier); > @@ -1149,15 +1148,14 @@ static void *hammer_thread(void *tdata) > exec.address = batch_addr; > if (i % 32) { > exec.num_syncs = 0; > - err = __xe_exec(t->fd, &exec); > + xe_exec(t->fd, &exec); > } else { > exec.num_syncs = 1; > - err = __xe_exec(t->fd, &exec); > + xe_exec(t->fd, &exec); > igt_assert(syncobj_wait(t->fd, &sync[0].handle, 1, > INT64_MAX, 0, NULL)); > syncobj_reset(t->fd, &sync[0].handle, 1); > } > - igt_assert(!err || err == -ECANCELED); > ++i; > } > > -- > 2.34.1 > > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-04-10 15:49 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-05 22:52 [PATCH] Revert "tests/intel/xe_vm: Do not error on -ECANCELED" Matthew Brost 2024-04-05 23:46 ` ✓ CI.xeBAT: success for " Patchwork 2024-04-05 23:53 ` ✗ Fi.CI.BAT: failure " Patchwork 2024-04-10 15:49 ` [PATCH] " Cavitt, Jonathan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox