* [igt-dev] [PATCH i-g-t 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC
@ 2023-03-31 19:59 Umesh Nerlige Ramappa
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Umesh Nerlige Ramappa @ 2023-03-31 19:59 UTC (permalink / raw)
To: igt-dev
From: root <root@DUT5130ATSM.fm.intel.com>
With GuC scheduling backends, the context busyness for a active context is
obtained from the GUC FW. The support for this is WIP, so disable tests that
check TEST_BUSY until the feature is implemented.
Bug Id: https://gitlab.freedesktop.org/drm/intel/-/issues/8303
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Umesh Nerlige Ramappa (2):
lib/drm_fdinfo: Check for compute engines when parsing
tests/drm_fdinfo: Drop active busyness tests for GuC backend
lib/igt_drm_fdinfo.c | 1 +
tests/i915/drm_fdinfo.c | 148 +++++++++++++++++++++-------------------
2 files changed, 80 insertions(+), 69 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t 1/2] lib/drm_fdinfo: Check for compute engines when parsing
2023-03-31 19:59 [igt-dev] [PATCH i-g-t 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa
@ 2023-03-31 19:59 ` Umesh Nerlige Ramappa
2023-04-03 10:12 ` Tvrtko Ursulin
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend Umesh Nerlige Ramappa
` (2 subsequent siblings)
3 siblings, 1 reply; 7+ messages in thread
From: Umesh Nerlige Ramappa @ 2023-03-31 19:59 UTC (permalink / raw)
To: igt-dev
DG2 has compute engine support. When parsing the fdinfo for available engines,
also check for compute. This fixes drm_fdinfo@basic for platforms where compute
is present.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
lib/igt_drm_fdinfo.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/igt_drm_fdinfo.c b/lib/igt_drm_fdinfo.c
index 250d9e89..5beb30b0 100644
--- a/lib/igt_drm_fdinfo.c
+++ b/lib/igt_drm_fdinfo.c
@@ -60,6 +60,7 @@ static int parse_engine(char *line, struct drm_client_fdinfo *info,
"copy",
"video",
"video-enhance",
+ "compute",
};
ssize_t name_len;
char *name, *p;
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend
2023-03-31 19:59 [igt-dev] [PATCH i-g-t 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa
@ 2023-03-31 19:59 ` Umesh Nerlige Ramappa
2023-04-03 10:20 ` Tvrtko Ursulin
2023-03-31 21:18 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Patchwork
2023-04-01 21:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 1 reply; 7+ messages in thread
From: Umesh Nerlige Ramappa @ 2023-03-31 19:59 UTC (permalink / raw)
To: igt-dev
With GuC scheduling backends, the context busyness for an active context is
obtained from the GuC FW. The support for this is WIP, so disable tests that
check TEST_BUSY until the feature is implemented.
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
tests/i915/drm_fdinfo.c | 148 +++++++++++++++++++++-------------------
1 file changed, 79 insertions(+), 69 deletions(-)
diff --git a/tests/i915/drm_fdinfo.c b/tests/i915/drm_fdinfo.c
index 65b8b830..5df33933 100644
--- a/tests/i915/drm_fdinfo.c
+++ b/tests/i915/drm_fdinfo.c
@@ -761,83 +761,93 @@ igt_main
igt_subtest("virtual-idle")
virtual(i915, &ctx->cfg, 0);
- /**
- * Test that a single engine reports load correctly.
- */
- test_each_engine("busy", i915, ctx, e)
- single(i915, ctx, e, TEST_BUSY);
-
- igt_subtest("virtual-busy")
- virtual(i915, &ctx->cfg, TEST_BUSY);
-
- test_each_engine("busy-idle", i915, ctx, e)
- single(i915, ctx, e, TEST_BUSY | TEST_TRAILING_IDLE);
-
- igt_subtest("virtual-busy-idle")
- virtual(i915, &ctx->cfg, TEST_BUSY | TEST_TRAILING_IDLE);
-
- test_each_engine("busy-hang", i915, ctx, e) {
- igt_hang_t hang = igt_allow_hang(i915, ctx->id, 0);
-
- single(i915, ctx, e, TEST_BUSY | FLAG_HANG);
-
- igt_disallow_hang(i915, hang);
- }
-
- igt_subtest("virtual-busy-hang")
- virtual(i915, &ctx->cfg, TEST_BUSY | FLAG_HANG);
-
- /**
- * Test that when one engine is loaded other report no
- * load.
- */
- test_each_engine("busy-check-all", i915, ctx, e)
- busy_check_all(i915, ctx, e, num_engines, classes, num_classes,
- TEST_BUSY);
+ igt_fixture {
+ /**
+ * With GuC scheduling backends, the context busyness for a
+ * active context is obtained from the GUC FW. The support for
+ * this is WIP, so disable tests that check TEST_BUSY until the
+ * feature is implemented.
+ */
+ igt_require(!gem_using_guc_submission(i915));
- test_each_engine("busy-idle-check-all", i915, ctx, e)
- busy_check_all(i915, ctx, e, num_engines, classes, num_classes,
- TEST_BUSY | TEST_TRAILING_IDLE);
+ /**
+ * Test that a single engine reports load correctly.
+ */
+ test_each_engine("busy", i915, ctx, e)
+ single(i915, ctx, e, TEST_BUSY);
- /**
- * Test that when all except one engine are loaded all
- * loads are correctly reported.
- */
- test_each_engine("most-busy-check-all", i915, ctx, e)
- most_busy_check_all(i915, ctx, e, num_engines,
- classes, num_classes,
- TEST_BUSY);
+ igt_subtest("virtual-busy")
+ virtual(i915, &ctx->cfg, TEST_BUSY);
- test_each_engine("most-busy-idle-check-all", i915, ctx, e)
- most_busy_check_all(i915, ctx, e, num_engines,
- classes, num_classes,
- TEST_BUSY | TEST_TRAILING_IDLE);
+ test_each_engine("busy-idle", i915, ctx, e)
+ single(i915, ctx, e, TEST_BUSY | TEST_TRAILING_IDLE);
- /**
- * Test that when all engines are loaded all loads are
- * correctly reported.
- */
- igt_subtest("all-busy-check-all")
- all_busy_check_all(i915, ctx, num_engines, classes, num_classes,
- TEST_BUSY);
+ igt_subtest("virtual-busy-idle")
+ virtual(i915, &ctx->cfg, TEST_BUSY | TEST_TRAILING_IDLE);
- igt_subtest("all-busy-idle-check-all")
- all_busy_check_all(i915, ctx, num_engines, classes, num_classes,
- TEST_BUSY | TEST_TRAILING_IDLE);
+ test_each_engine("busy-hang", i915, ctx, e) {
+ igt_hang_t hang = igt_allow_hang(i915, ctx->id, 0);
- igt_subtest("virtual-busy-all")
- virtual_all(i915, &ctx->cfg, TEST_BUSY);
+ single(i915, ctx, e, TEST_BUSY | FLAG_HANG);
- igt_subtest("virtual-busy-idle-all")
- virtual_all(i915, &ctx->cfg, TEST_BUSY | TEST_TRAILING_IDLE);
+ igt_disallow_hang(i915, hang);
+ }
- igt_subtest("virtual-busy-hang-all")
- virtual_all(i915, &ctx->cfg, TEST_BUSY | FLAG_HANG);
- /**
- * Test for no cross-client contamination.
- */
- test_each_engine("isolation", i915, ctx, e)
- single(i915, ctx, e, TEST_BUSY | TEST_ISOLATION);
+ igt_subtest("virtual-busy-hang")
+ virtual(i915, &ctx->cfg, TEST_BUSY | FLAG_HANG);
+
+ /**
+ * Test that when one engine is loaded other report no
+ * load.
+ */
+ test_each_engine("busy-check-all", i915, ctx, e)
+ busy_check_all(i915, ctx, e, num_engines, classes, num_classes,
+ TEST_BUSY);
+
+ test_each_engine("busy-idle-check-all", i915, ctx, e)
+ busy_check_all(i915, ctx, e, num_engines, classes, num_classes,
+ TEST_BUSY | TEST_TRAILING_IDLE);
+
+ /**
+ * Test that when all except one engine are loaded all
+ * loads are correctly reported.
+ */
+ test_each_engine("most-busy-check-all", i915, ctx, e)
+ most_busy_check_all(i915, ctx, e, num_engines,
+ classes, num_classes,
+ TEST_BUSY);
+
+ test_each_engine("most-busy-idle-check-all", i915, ctx, e)
+ most_busy_check_all(i915, ctx, e, num_engines,
+ classes, num_classes,
+ TEST_BUSY | TEST_TRAILING_IDLE);
+
+ /**
+ * Test that when all engines are loaded all loads are
+ * correctly reported.
+ */
+ igt_subtest("all-busy-check-all")
+ all_busy_check_all(i915, ctx, num_engines, classes, num_classes,
+ TEST_BUSY);
+
+ igt_subtest("all-busy-idle-check-all")
+ all_busy_check_all(i915, ctx, num_engines, classes, num_classes,
+ TEST_BUSY | TEST_TRAILING_IDLE);
+
+ igt_subtest("virtual-busy-all")
+ virtual_all(i915, &ctx->cfg, TEST_BUSY);
+
+ igt_subtest("virtual-busy-idle-all")
+ virtual_all(i915, &ctx->cfg, TEST_BUSY | TEST_TRAILING_IDLE);
+
+ igt_subtest("virtual-busy-hang-all")
+ virtual_all(i915, &ctx->cfg, TEST_BUSY | FLAG_HANG);
+ /**
+ * Test for no cross-client contamination.
+ */
+ test_each_engine("isolation", i915, ctx, e)
+ single(i915, ctx, e, TEST_BUSY | TEST_ISOLATION);
+ }
igt_fixture {
intel_ctx_destroy(i915, ctx);
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC
2023-03-31 19:59 [igt-dev] [PATCH i-g-t 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend Umesh Nerlige Ramappa
@ 2023-03-31 21:18 ` Patchwork
2023-04-01 21:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-03-31 21:18 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6011 bytes --]
== Series Details ==
Series: tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC
URL : https://patchwork.freedesktop.org/series/115957/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12952 -> IGTPW_8732
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/index.html
Participating hosts (38 -> 36)
------------------------------
Missing (2): fi-kbl-soraka fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_8732 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s3@smem:
- bat-dg2-11: [PASS][1] -> [INCOMPLETE][2] ([i915#6311])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/bat-dg2-11/igt@gem_exec_suspend@basic-s3@smem.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-dg2-11/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_selftest@live@requests:
- bat-rpls-2: [PASS][3] -> [ABORT][4] ([i915#7913] / [i915#7982])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/bat-rpls-2/igt@i915_selftest@live@requests.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-rpls-2/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-adln-1: NOTRUN -> [DMESG-FAIL][5] ([i915#6997])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-adln-1/igt@i915_selftest@live@slpc.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-adln-1: NOTRUN -> [SKIP][6] ([i915#7828])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-adln-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1:
- bat-dg2-8: [PASS][7] -> [FAIL][8] ([i915#7932])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-1.html
* igt@kms_pipe_crc_basic@read-crc:
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#5354])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc.html
#### Possible fixes ####
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: [FAIL][10] ([i915#8308]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/bat-dg2-11/igt@i915_pm_rps@basic-api.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [DMESG-FAIL][12] ([i915#5334]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_lrc:
- bat-adln-1: [INCOMPLETE][14] ([i915#4983] / [i915#7609]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/bat-adln-1/igt@i915_selftest@live@gt_lrc.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-adln-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@slpc:
- bat-rpls-1: [DMESG-FAIL][16] ([i915#6367]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/bat-rpls-1/igt@i915_selftest@live@slpc.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1:
- bat-dg2-8: [FAIL][18] ([i915#7932]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
[i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7231 -> IGTPW_8732
CI-20190529: 20190529
CI_DRM_12952: 51cf6fb5e846c1adbe92debb7282d0dcc3934ecb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8732: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/index.html
IGT_7231: 94188a1dc91b6ef1cf3e9df1440ff00b6ff25935 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@drm_fdinfo@all-busy-check-all
-igt@drm_fdinfo@all-busy-idle-check-all
-igt@drm_fdinfo@busy
-igt@drm_fdinfo@busy-check-all
-igt@drm_fdinfo@busy-hang
-igt@drm_fdinfo@busy-idle
-igt@drm_fdinfo@busy-idle-check-all
-igt@drm_fdinfo@isolation
-igt@drm_fdinfo@most-busy-check-all
-igt@drm_fdinfo@most-busy-idle-check-all
-igt@drm_fdinfo@virtual-busy
-igt@drm_fdinfo@virtual-busy-all
-igt@drm_fdinfo@virtual-busy-hang
-igt@drm_fdinfo@virtual-busy-hang-all
-igt@drm_fdinfo@virtual-busy-idle
-igt@drm_fdinfo@virtual-busy-idle-all
-igt@intel_cmds_check
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/index.html
[-- Attachment #2: Type: text/html, Size: 7033 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC
2023-03-31 19:59 [igt-dev] [PATCH i-g-t 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa
` (2 preceding siblings ...)
2023-03-31 21:18 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Patchwork
@ 2023-04-01 21:27 ` Patchwork
3 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-04-01 21:27 UTC (permalink / raw)
To: Umesh Nerlige Ramappa; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12600 bytes --]
== Series Details ==
Series: tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC
URL : https://patchwork.freedesktop.org/series/115957/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12952_full -> IGTPW_8732_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/index.html
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_8732_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][1] -> [FAIL][2] ([i915#2842])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-snb2/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][4] -> [FAIL][5] ([i915#2346])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1:
- shard-glk: [PASS][6] -> [FAIL][7] ([i915#2122])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-glk2/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-glk2/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1.html
#### Possible fixes ####
* igt@gem_eio@in-flight-contexts-1us:
- {shard-tglu}: [TIMEOUT][8] ([i915#3063]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-tglu-9/igt@gem_eio@in-flight-contexts-1us.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-tglu-6/igt@gem_eio@in-flight-contexts-1us.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- {shard-tglu}: [FAIL][10] ([i915#2842]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-glk: [DMESG-FAIL][12] ([i915#5334]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-glk9/igt@i915_selftest@live@gt_heartbeat.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-glk2/igt@i915_selftest@live@gt_heartbeat.html
- shard-apl: [DMESG-FAIL][14] ([i915#5334]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][16] ([i915#2346]) -> [PASS][17] +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2:
- shard-glk: [FAIL][18] ([i915#79]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
* igt@perf_pmu@module-unload:
- shard-snb: [ABORT][20] ([i915#4528]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-snb2/igt@perf_pmu@module-unload.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-snb4/igt@perf_pmu@module-unload.html
#### Warnings ####
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][22] ([fdo#109271]) -> [FAIL][23] ([i915#4275])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12952/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[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#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#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#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[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#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[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#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[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#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[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#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#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8150]: https://gitlab.freedesktop.org/drm/intel/issues/8150
[i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7231 -> IGTPW_8732
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12952: 51cf6fb5e846c1adbe92debb7282d0dcc3934ecb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8732: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8732/index.html
IGT_7231: 94188a1dc91b6ef1cf3e9df1440ff00b6ff25935 @ 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_8732/index.html
[-- Attachment #2: Type: text/html, Size: 7461 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/drm_fdinfo: Check for compute engines when parsing
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa
@ 2023-04-03 10:12 ` Tvrtko Ursulin
0 siblings, 0 replies; 7+ messages in thread
From: Tvrtko Ursulin @ 2023-04-03 10:12 UTC (permalink / raw)
To: Umesh Nerlige Ramappa, igt-dev
On 31/03/2023 20:59, Umesh Nerlige Ramappa wrote:
> DG2 has compute engine support. When parsing the fdinfo for available engines,
> also check for compute. This fixes drm_fdinfo@basic for platforms where compute
> is present.
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
> lib/igt_drm_fdinfo.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/lib/igt_drm_fdinfo.c b/lib/igt_drm_fdinfo.c
> index 250d9e89..5beb30b0 100644
> --- a/lib/igt_drm_fdinfo.c
> +++ b/lib/igt_drm_fdinfo.c
> @@ -60,6 +60,7 @@ static int parse_engine(char *line, struct drm_client_fdinfo *info,
> "copy",
> "video",
> "video-enhance",
> + "compute",
> };
> ssize_t name_len;
> char *name, *p;
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Regards,
Tvrtko
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend Umesh Nerlige Ramappa
@ 2023-04-03 10:20 ` Tvrtko Ursulin
0 siblings, 0 replies; 7+ messages in thread
From: Tvrtko Ursulin @ 2023-04-03 10:20 UTC (permalink / raw)
To: Umesh Nerlige Ramappa, igt-dev
On 31/03/2023 20:59, Umesh Nerlige Ramappa wrote:
> With GuC scheduling backends, the context busyness for an active context is
> obtained from the GuC FW. The support for this is WIP, so disable tests that
> check TEST_BUSY until the feature is implemented.
>
> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
> ---
> tests/i915/drm_fdinfo.c | 148 +++++++++++++++++++++-------------------
> 1 file changed, 79 insertions(+), 69 deletions(-)
>
> diff --git a/tests/i915/drm_fdinfo.c b/tests/i915/drm_fdinfo.c
> index 65b8b830..5df33933 100644
> --- a/tests/i915/drm_fdinfo.c
> +++ b/tests/i915/drm_fdinfo.c
> @@ -761,83 +761,93 @@ igt_main
> igt_subtest("virtual-idle")
> virtual(i915, &ctx->cfg, 0);
>
> - /**
> - * Test that a single engine reports load correctly.
> - */
> - test_each_engine("busy", i915, ctx, e)
> - single(i915, ctx, e, TEST_BUSY);
> -
> - igt_subtest("virtual-busy")
> - virtual(i915, &ctx->cfg, TEST_BUSY);
> -
> - test_each_engine("busy-idle", i915, ctx, e)
> - single(i915, ctx, e, TEST_BUSY | TEST_TRAILING_IDLE);
> -
> - igt_subtest("virtual-busy-idle")
> - virtual(i915, &ctx->cfg, TEST_BUSY | TEST_TRAILING_IDLE);
> -
> - test_each_engine("busy-hang", i915, ctx, e) {
> - igt_hang_t hang = igt_allow_hang(i915, ctx->id, 0);
> -
> - single(i915, ctx, e, TEST_BUSY | FLAG_HANG);
> -
> - igt_disallow_hang(i915, hang);
> - }
> -
> - igt_subtest("virtual-busy-hang")
> - virtual(i915, &ctx->cfg, TEST_BUSY | FLAG_HANG);
> -
> - /**
> - * Test that when one engine is loaded other report no
> - * load.
> - */
> - test_each_engine("busy-check-all", i915, ctx, e)
> - busy_check_all(i915, ctx, e, num_engines, classes, num_classes,
> - TEST_BUSY);
> + igt_fixture {
> + /**
> + * With GuC scheduling backends, the context busyness for a
> + * active context is obtained from the GUC FW. The support for
> + * this is WIP, so disable tests that check TEST_BUSY until the
> + * feature is implemented.
> + */
> + igt_require(!gem_using_guc_submission(i915));
>
> - test_each_engine("busy-idle-check-all", i915, ctx, e)
> - busy_check_all(i915, ctx, e, num_engines, classes, num_classes,
> - TEST_BUSY | TEST_TRAILING_IDLE);
> + /**
> + * Test that a single engine reports load correctly.
> + */
> + test_each_engine("busy", i915, ctx, e)
> + single(i915, ctx, e, TEST_BUSY);
Hm I think executing tests from fixture blocks shouldn't be done. Don't
remember why but I thought so..
Maybe as an alternative you put that igt_require into tests themselves?
Like:
if (flags & TEST_BUSY)
igt_require(!gem_using_guc_submission(i915));
Thoughts?
Regards,
Tvrtko
>
> - /**
> - * Test that when all except one engine are loaded all
> - * loads are correctly reported.
> - */
> - test_each_engine("most-busy-check-all", i915, ctx, e)
> - most_busy_check_all(i915, ctx, e, num_engines,
> - classes, num_classes,
> - TEST_BUSY);
> + igt_subtest("virtual-busy")
> + virtual(i915, &ctx->cfg, TEST_BUSY);
>
> - test_each_engine("most-busy-idle-check-all", i915, ctx, e)
> - most_busy_check_all(i915, ctx, e, num_engines,
> - classes, num_classes,
> - TEST_BUSY | TEST_TRAILING_IDLE);
> + test_each_engine("busy-idle", i915, ctx, e)
> + single(i915, ctx, e, TEST_BUSY | TEST_TRAILING_IDLE);
>
> - /**
> - * Test that when all engines are loaded all loads are
> - * correctly reported.
> - */
> - igt_subtest("all-busy-check-all")
> - all_busy_check_all(i915, ctx, num_engines, classes, num_classes,
> - TEST_BUSY);
> + igt_subtest("virtual-busy-idle")
> + virtual(i915, &ctx->cfg, TEST_BUSY | TEST_TRAILING_IDLE);
>
> - igt_subtest("all-busy-idle-check-all")
> - all_busy_check_all(i915, ctx, num_engines, classes, num_classes,
> - TEST_BUSY | TEST_TRAILING_IDLE);
> + test_each_engine("busy-hang", i915, ctx, e) {
> + igt_hang_t hang = igt_allow_hang(i915, ctx->id, 0);
>
> - igt_subtest("virtual-busy-all")
> - virtual_all(i915, &ctx->cfg, TEST_BUSY);
> + single(i915, ctx, e, TEST_BUSY | FLAG_HANG);
>
> - igt_subtest("virtual-busy-idle-all")
> - virtual_all(i915, &ctx->cfg, TEST_BUSY | TEST_TRAILING_IDLE);
> + igt_disallow_hang(i915, hang);
> + }
>
> - igt_subtest("virtual-busy-hang-all")
> - virtual_all(i915, &ctx->cfg, TEST_BUSY | FLAG_HANG);
> - /**
> - * Test for no cross-client contamination.
> - */
> - test_each_engine("isolation", i915, ctx, e)
> - single(i915, ctx, e, TEST_BUSY | TEST_ISOLATION);
> + igt_subtest("virtual-busy-hang")
> + virtual(i915, &ctx->cfg, TEST_BUSY | FLAG_HANG);
> +
> + /**
> + * Test that when one engine is loaded other report no
> + * load.
> + */
> + test_each_engine("busy-check-all", i915, ctx, e)
> + busy_check_all(i915, ctx, e, num_engines, classes, num_classes,
> + TEST_BUSY);
> +
> + test_each_engine("busy-idle-check-all", i915, ctx, e)
> + busy_check_all(i915, ctx, e, num_engines, classes, num_classes,
> + TEST_BUSY | TEST_TRAILING_IDLE);
> +
> + /**
> + * Test that when all except one engine are loaded all
> + * loads are correctly reported.
> + */
> + test_each_engine("most-busy-check-all", i915, ctx, e)
> + most_busy_check_all(i915, ctx, e, num_engines,
> + classes, num_classes,
> + TEST_BUSY);
> +
> + test_each_engine("most-busy-idle-check-all", i915, ctx, e)
> + most_busy_check_all(i915, ctx, e, num_engines,
> + classes, num_classes,
> + TEST_BUSY | TEST_TRAILING_IDLE);
> +
> + /**
> + * Test that when all engines are loaded all loads are
> + * correctly reported.
> + */
> + igt_subtest("all-busy-check-all")
> + all_busy_check_all(i915, ctx, num_engines, classes, num_classes,
> + TEST_BUSY);
> +
> + igt_subtest("all-busy-idle-check-all")
> + all_busy_check_all(i915, ctx, num_engines, classes, num_classes,
> + TEST_BUSY | TEST_TRAILING_IDLE);
> +
> + igt_subtest("virtual-busy-all")
> + virtual_all(i915, &ctx->cfg, TEST_BUSY);
> +
> + igt_subtest("virtual-busy-idle-all")
> + virtual_all(i915, &ctx->cfg, TEST_BUSY | TEST_TRAILING_IDLE);
> +
> + igt_subtest("virtual-busy-hang-all")
> + virtual_all(i915, &ctx->cfg, TEST_BUSY | FLAG_HANG);
> + /**
> + * Test for no cross-client contamination.
> + */
> + test_each_engine("isolation", i915, ctx, e)
> + single(i915, ctx, e, TEST_BUSY | TEST_ISOLATION);
> + }
>
> igt_fixture {
> intel_ctx_destroy(i915, ctx);
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-04-03 10:20 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-31 19:59 [igt-dev] [PATCH i-g-t 0/2] tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Umesh Nerlige Ramappa
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 1/2] lib/drm_fdinfo: Check for compute engines when parsing Umesh Nerlige Ramappa
2023-04-03 10:12 ` Tvrtko Ursulin
2023-03-31 19:59 ` [igt-dev] [PATCH i-g-t 2/2] tests/drm_fdinfo: Drop active busyness tests for GuC backend Umesh Nerlige Ramappa
2023-04-03 10:20 ` Tvrtko Ursulin
2023-03-31 21:18 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/drm_fdinfo: Drop tests with TEST_BUSY for GuC Patchwork
2023-04-01 21:27 ` [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