* [igt-dev] [PATCH] tests/xe/xe_vm: Add a userptr-invalid test
@ 2023-03-15 14:14 Thomas Hellström
2023-03-15 15:12 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Thomas Hellström @ 2023-03-15 14:14 UTC (permalink / raw)
To: igt-dev; +Cc: Thomas Hellström
Add a small userptr-invalid test that adds some coverage for the
error paths in the userptr binding code.
Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
tests/xe/xe_vm.c | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/tests/xe/xe_vm.c b/tests/xe/xe_vm.c
index 4103bd7c..80dcda72 100644
--- a/tests/xe/xe_vm.c
+++ b/tests/xe/xe_vm.c
@@ -292,6 +292,32 @@ static void unbind_all(int fd, int n_vmas)
xe_vm_destroy(fd, vm);
}
+#define MAP_ADDRESS 0x00007fadeadbe000
+
+/*
+ * This tests verifies that mapping an invalid userptr returns -EFAULT,
+ * and that it is correctly handled.
+ */
+static void userptr_invalid(int fd)
+{
+ size_t size = xe_get_default_alignment(fd);
+ uint32_t vm;
+ void *data;
+ int ret;
+
+ data = mmap((void *)MAP_ADDRESS, size, PROT_READ |
+ PROT_WRITE, MAP_SHARED | MAP_FIXED | MAP_ANONYMOUS, -1, 0);
+ igt_assert(data != MAP_FAILED);
+
+ vm = xe_vm_create(fd, 0, 0);
+ munmap(data, size);
+ ret = __xe_vm_bind(fd, vm, 0, 0, to_user_pointer(data), 0x40000,
+ size, XE_VM_BIND_OP_MAP_USERPTR, NULL, 0, 0, 0);
+ igt_assert(ret == -EFAULT);
+
+ xe_vm_destroy(fd, vm);
+}
+
struct vm_thread_data {
pthread_t thread;
struct drm_xe_vm_bind_op_error_capture *capture;
@@ -1618,6 +1644,9 @@ igt_main
igt_subtest("unbind-all-8-vmas")
unbind_all(fd, 8);
+ igt_subtest("userptr-invalid")
+ userptr_invalid(fd);
+
igt_subtest("vm-async-ops-err")
vm_async_ops_err(fd, false);
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/xe/xe_vm: Add a userptr-invalid test 2023-03-15 14:14 [igt-dev] [PATCH] tests/xe/xe_vm: Add a userptr-invalid test Thomas Hellström @ 2023-03-15 15:12 ` Patchwork 2023-03-15 15:18 ` [igt-dev] [PATCH] " Matthew Brost 2023-03-16 3:07 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-03-15 15:12 UTC (permalink / raw) To: Thomas Hellström; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3232 bytes --] == Series Details == Series: tests/xe/xe_vm: Add a userptr-invalid test URL : https://patchwork.freedesktop.org/series/115205/ State : success == Summary == CI Bug Log - changes from CI_DRM_12864 -> IGTPW_8610 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/index.html Participating hosts (38 -> 36) ------------------------------ Missing (2): fi-kbl-soraka fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8610 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@slpc: - bat-rpls-1: NOTRUN -> [DMESG-FAIL][1] ([i915#6367] / [i915#7996]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - fi-bsw-n3050: NOTRUN -> [SKIP][2] ([fdo#109271]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/fi-bsw-n3050/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - bat-rpls-1: NOTRUN -> [SKIP][3] ([i915#7828]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-1: NOTRUN -> [SKIP][4] ([i915#1845]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][5] ([i915#7911]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@reset: - bat-rpls-1: [ABORT][7] ([i915#4983]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/bat-rpls-1/igt@i915_selftest@live@reset.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/bat-rpls-1/igt@i915_selftest@live@reset.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7196 -> IGTPW_8610 CI-20190529: 20190529 CI_DRM_12864: efb4d3263a1932187dd525628e8b35d327f17a6f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8610: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/index.html IGT_7196: 9b8c5dbe8cd82163ee198c43b81222d2b9b75fd4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_vm@userptr-invalid == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/index.html [-- Attachment #2: Type: text/html, Size: 3960 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH] tests/xe/xe_vm: Add a userptr-invalid test 2023-03-15 14:14 [igt-dev] [PATCH] tests/xe/xe_vm: Add a userptr-invalid test Thomas Hellström 2023-03-15 15:12 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-03-15 15:18 ` Matthew Brost 2023-03-16 3:07 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Matthew Brost @ 2023-03-15 15:18 UTC (permalink / raw) To: Thomas Hellström; +Cc: igt-dev On Wed, Mar 15, 2023 at 03:14:53PM +0100, Thomas Hellström wrote: > Add a small userptr-invalid test that adds some coverage for the > error paths in the userptr binding code. > > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com> > --- > tests/xe/xe_vm.c | 29 +++++++++++++++++++++++++++++ > 1 file changed, 29 insertions(+) > > diff --git a/tests/xe/xe_vm.c b/tests/xe/xe_vm.c > index 4103bd7c..80dcda72 100644 > --- a/tests/xe/xe_vm.c > +++ b/tests/xe/xe_vm.c > @@ -292,6 +292,32 @@ static void unbind_all(int fd, int n_vmas) > xe_vm_destroy(fd, vm); > } > > +#define MAP_ADDRESS 0x00007fadeadbe000 > + > +/* > + * This tests verifies that mapping an invalid userptr returns -EFAULT, > + * and that it is correctly handled. > + */ > +static void userptr_invalid(int fd) > +{ > + size_t size = xe_get_default_alignment(fd); > + uint32_t vm; > + void *data; > + int ret; > + > + data = mmap((void *)MAP_ADDRESS, size, PROT_READ | > + PROT_WRITE, MAP_SHARED | MAP_FIXED | MAP_ANONYMOUS, -1, 0); > + igt_assert(data != MAP_FAILED); > + > + vm = xe_vm_create(fd, 0, 0); > + munmap(data, size); > + ret = __xe_vm_bind(fd, vm, 0, 0, to_user_pointer(data), 0x40000, > + size, XE_VM_BIND_OP_MAP_USERPTR, NULL, 0, 0, 0); > + igt_assert(ret == -EFAULT); > + > + xe_vm_destroy(fd, vm); > +} > + > struct vm_thread_data { > pthread_t thread; > struct drm_xe_vm_bind_op_error_capture *capture; > @@ -1618,6 +1644,9 @@ igt_main > igt_subtest("unbind-all-8-vmas") > unbind_all(fd, 8); > > + igt_subtest("userptr-invalid") > + userptr_invalid(fd); > + > igt_subtest("vm-async-ops-err") > vm_async_ops_err(fd, false); > > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/xe/xe_vm: Add a userptr-invalid test 2023-03-15 14:14 [igt-dev] [PATCH] tests/xe/xe_vm: Add a userptr-invalid test Thomas Hellström 2023-03-15 15:12 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-03-15 15:18 ` [igt-dev] [PATCH] " Matthew Brost @ 2023-03-16 3:07 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-03-16 3:07 UTC (permalink / raw) To: Thomas Hellström; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 28645 bytes --] == Series Details == Series: tests/xe/xe_vm: Add a userptr-invalid test URL : https://patchwork.freedesktop.org/series/115205/ State : success == Summary == CI Bug Log - changes from CI_DRM_12864_full -> IGTPW_8610_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8610_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25}: - {shard-tglu}: NOTRUN -> [SKIP][1] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25.html * igt@sysfs_heartbeat_interval@nopreempt@vecs0: - {shard-dg1}: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-dg1-12/igt@sysfs_heartbeat_interval@nopreempt@vecs0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-dg1-14/igt@sysfs_heartbeat_interval@nopreempt@vecs0.html New tests --------- New tests have been introduced between CI_DRM_12864_full and IGTPW_8610_full: ### New IGT tests (1) ### * igt@xe_vm@userptr-invalid: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8610_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_eio@in-flight-suspend: - shard-apl: [PASS][4] -> [ABORT][5] ([i915#180]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl3/igt@gem_eio@in-flight-suspend.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl3/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: [PASS][6] -> [FAIL][7] ([i915#2842]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-glk6/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_lmem_swapping@verify: - shard-apl: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl6/igt@gem_lmem_swapping@verify.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][9] -> [SKIP][10] ([fdo#109271]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl6/igt@i915_pm_dc@dc9-dpms.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#1937]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-glk2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#3886]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#3886]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-glk3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_chamelium_color@ctm-0-75: - shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271]) +76 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl2/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_content_protection@atomic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][15] ([i915#7173]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl2/igt@kms_content_protection@atomic@pipe-a-dp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][16] -> [FAIL][17] ([i915#2346]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][18] ([fdo#109271]) +39 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-glk5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][19] ([i915#7862]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl4/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-apl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#658]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#658]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-glk1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@perf@stress-open-close: - shard-glk: [PASS][22] -> [ABORT][23] ([i915#5213]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk4/igt@perf@stress-open-close.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-glk5/igt@perf@stress-open-close.html * {igt@xe_vm@userptr-invalid} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][24] ([fdo#109315]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-1/igt@xe_vm@userptr-invalid.html - shard-snb: NOTRUN -> [SKIP][25] ([fdo#109271]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-snb2/igt@xe_vm@userptr-invalid.html - {shard-tglu}: NOTRUN -> [SKIP][26] ([fdo#109315] / [i915#2575]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-4/igt@xe_vm@userptr-invalid.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - {shard-rkl}: [FAIL][27] ([i915#7742]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html * igt@drm_read@short-buffer-block: - {shard-rkl}: [SKIP][29] ([i915#4098]) -> [PASS][30] +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@drm_read@short-buffer-block.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-6/igt@drm_read@short-buffer-block.html * igt@fbdev@eof: - {shard-rkl}: [SKIP][31] ([i915#2582]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-5/igt@fbdev@eof.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-3/igt@fbdev@eof.html * igt@fbdev@info: - {shard-tglu}: [SKIP][33] ([i915#2582]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@fbdev@info.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-5/igt@fbdev@info.html * igt@gem_ctx_isolation@preservation-s3@vecs0: - shard-apl: [DMESG-WARN][35] ([i915#180]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl3/igt@gem_ctx_isolation@preservation-s3@vecs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl4/igt@gem_ctx_isolation@preservation-s3@vecs0.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: [FAIL][37] ([i915#2842]) -> [PASS][38] +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk2/igt@gem_exec_fair@basic-none-rrul@rcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - {shard-rkl}: [FAIL][39] ([i915#2842]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-5/igt@gem_exec_fair@basic-none-share@rcs0.html - shard-apl: [SKIP][41] ([fdo#109271]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_ppgtt@shrink-vs-evict-any: - {shard-rkl}: [ABORT][43] -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@gem_ppgtt@shrink-vs-evict-any.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-3/igt@gem_ppgtt@shrink-vs-evict-any.html * igt@gem_workarounds@suspend-resume-fd: - {shard-rkl}: [ABORT][45] ([i915#5122]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html - {shard-tglu}: [ABORT][47] ([i915#5122]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@gem_workarounds@suspend-resume-fd.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-3/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][49] ([i915#5566]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@gen9_exec_parse@allowed-single.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc6-dpms: - {shard-tglu}: [FAIL][51] ([i915#3989] / [i915#454]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-8/igt@i915_pm_dc@dc6-dpms.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - {shard-rkl}: [SKIP][53] ([i915#1397]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * {igt@i915_power@sanity}: - {shard-rkl}: [SKIP][55] ([i915#7984]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@i915_power@sanity.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-5/igt@i915_power@sanity.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][57] ([i915#5334]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl3/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - {shard-tglu}: [SKIP][59] ([i915#1845] / [i915#7651]) -> [PASS][60] +20 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-8/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][61] ([i915#2346]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][63] ([i915#2346]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_draw_crc@fill-fb: - {shard-tglu}: [SKIP][65] ([i915#1845]) -> [PASS][66] +25 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_draw_crc@fill-fb.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-7/igt@kms_draw_crc@fill-fb.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [FAIL][67] ([i915#4767]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - {shard-tglu}: [SKIP][69] ([i915#1849]) -> [PASS][70] +16 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - {shard-rkl}: [SKIP][71] ([i915#1849] / [i915#4098]) -> [PASS][72] +10 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - {shard-tglu}: [SKIP][73] ([i915#1849] / [i915#3558]) -> [PASS][74] +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_psr@suspend: - {shard-rkl}: [SKIP][75] ([i915#1072]) -> [PASS][76] +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@kms_psr@suspend.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-6/igt@kms_psr@suspend.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-a: - {shard-tglu}: [SKIP][77] ([fdo#109274]) -> [PASS][78] +3 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-tglu-10/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-tglu-5/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html * igt@kms_universal_plane@universal-plane-pipe-a-sanity: - {shard-rkl}: [SKIP][79] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-a-sanity.html * igt@kms_vblank@pipe-a-ts-continuation-idle: - {shard-rkl}: [SKIP][81] ([i915#1845] / [i915#4098]) -> [PASS][82] +23 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-1/igt@kms_vblank@pipe-a-ts-continuation-idle.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-idle.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-apl: [ABORT][83] ([i915#180]) -> [PASS][84] +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-apl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@perf@gen12-oa-tlb-invalidate: - {shard-rkl}: [SKIP][85] ([fdo#109289]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12864/shard-rkl-5/igt@perf@gen12-oa-tlb-invalidate.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/shard-rkl-2/igt@perf@gen12-oa-tlb-invalidate.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [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#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [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#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#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#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [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#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#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [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#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [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#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#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [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#6530]: https://gitlab.freedesktop.org/drm/intel/issues/6530 [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#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [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#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [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_7196 -> IGTPW_8610 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12864: efb4d3263a1932187dd525628e8b35d327f17a6f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8610: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8610/index.html IGT_7196: 9b8c5dbe8cd82163ee198c43b81222d2b9b75fd4 @ 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_8610/index.html [-- Attachment #2: Type: text/html, Size: 24032 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-16 3:07 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-03-15 14:14 [igt-dev] [PATCH] tests/xe/xe_vm: Add a userptr-invalid test Thomas Hellström 2023-03-15 15:12 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-03-15 15:18 ` [igt-dev] [PATCH] " Matthew Brost 2023-03-16 3:07 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox