* [igt-dev] [PATCH i-g-t] tests/xe: When GT is in RC6 donot assert if act freq is 0
@ 2023-06-22 9:37 Badal Nilawar
2023-06-22 11:54 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Badal Nilawar @ 2023-06-22 9:37 UTC (permalink / raw)
To: igt-dev
When GT is in RC6 state actual frequency reported will be 0.
So during RC6 no need to assert if act freq is not equal to curr freq.
Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests")
Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
---
tests/xe/xe_guc_pc.c | 51 +++++++++++++++++++++++---------------------
1 file changed, 27 insertions(+), 24 deletions(-)
diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c
index 60c93288b..a1cf2e039 100644
--- a/tests/xe/xe_guc_pc.c
+++ b/tests/xe/xe_guc_pc.c
@@ -30,6 +30,27 @@
*/
#define ACT_FREQ_LATENCY_US 100000
+/**
+ * SUBTEST: rc6_on_idle
+ * Description: check if GPU is in RC6 on idle
+ * Run type: BAT
+ *
+ * SUBTEST: rc0_on_exec
+ * Description: check if GPU is in RC0 on when doing some work
+ * Run type: BAT
+ */
+
+static bool in_rc6(int sysfs, int gt_id)
+{
+ char path[32];
+ char rc[8];
+
+ sprintf(path, "device/gt%d/rc_status", gt_id);
+ if (igt_sysfs_scanf(sysfs, path, "%s", rc) < 0)
+ return false;
+ return strcmp(rc, "rc6") == 0;
+}
+
static void exec_basic(int fd, struct drm_xe_engine_class_instance *eci,
int n_engines, int n_execs)
{
@@ -223,13 +244,15 @@ static void test_freq_fixed(int sysfs, int gt_id)
igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0);
usleep(ACT_FREQ_LATENCY_US);
igt_assert(get_freq(sysfs, gt_id, "cur") == rpn);
- igt_assert(get_freq(sysfs, gt_id, "act") == rpn);
+ if (!in_rc6(sysfs, gt_id))
+ igt_assert(get_freq(sysfs, gt_id, "act") == rpn);
igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0);
igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0);
usleep(ACT_FREQ_LATENCY_US);
igt_assert(get_freq(sysfs, gt_id, "cur") == rpe);
- igt_assert(get_freq(sysfs, gt_id, "act") == rpe);
+ if (!in_rc6(sysfs, gt_id))
+ igt_assert(get_freq(sysfs, gt_id, "act") == rpe);
igt_assert(set_freq(sysfs, gt_id, "min", rp0) > 0);
igt_assert(set_freq(sysfs, gt_id, "max", rp0) > 0);
@@ -269,7 +292,8 @@ static void test_freq_range(int sysfs, int gt_id)
cur = get_freq(sysfs, gt_id, "cur");
igt_assert(rpn <= cur && cur <= rpe);
act = get_freq(sysfs, gt_id, "act");
- igt_assert(rpn <= act && act <= rpe);
+ if (!in_rc6(sysfs, gt_id))
+ igt_assert(rpn <= act && act <= rpe);
igt_debug("Finished testing range request\n");
}
@@ -354,27 +378,6 @@ static void test_reset(int fd, int sysfs, int gt_id, int cycles)
}
}
-
-/**
- * SUBTEST: rc6_on_idle
- * Description: check if GPU is in RC6 on idle
- * Run type: BAT
- *
- * SUBTEST: rc0_on_exec
- * Description: check if GPU is in RC0 on when doing some work
- * Run type: BAT
- */
-
-static bool in_rc6(int sysfs, int gt_id)
-{
- char path[32];
- char rc[8];
- sprintf(path, "device/gt%d/rc_status", gt_id);
- if (igt_sysfs_scanf(sysfs, path, "%s", rc) < 0)
- return false;
- return strcmp(rc, "rc6") == 0;
-}
-
igt_main
{
struct drm_xe_engine_class_instance *hwe;
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for tests/xe: When GT is in RC6 donot assert if act freq is 0 2023-06-22 9:37 [igt-dev] [PATCH i-g-t] tests/xe: When GT is in RC6 donot assert if act freq is 0 Badal Nilawar @ 2023-06-22 11:54 ` Patchwork 2023-06-22 22:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-06-26 23:09 ` [igt-dev] [PATCH i-g-t] " Dixit, Ashutosh 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-06-22 11:54 UTC (permalink / raw) To: Badal Nilawar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7749 bytes --] == Series Details == Series: tests/xe: When GT is in RC6 donot assert if act freq is 0 URL : https://patchwork.freedesktop.org/series/119732/ State : success == Summary == CI Bug Log - changes from CI_DRM_13306 -> IGTPW_9239 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/index.html Participating hosts (42 -> 42) ------------------------------ Additional (1): bat-dg1-8 Missing (1): fi-kbl-soraka Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9239: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_create@create-massive-size}: - {bat-dg1-8}: NOTRUN -> [FAIL][1] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-dg1-8/igt@xe_create@create-massive-size.html Known issues ------------ Here are the changes found in IGTPW_9239 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-adlp-11: [PASS][2] -> [ABORT][3] ([i915#4423]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-adlp-11/igt@i915_module_load@load.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-adlp-11/igt@i915_module_load@load.html * igt@i915_selftest@live@requests: - bat-rpls-2: [PASS][4] -> [ABORT][5] ([i915#7913] / [i915#7982]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-rpls-2/igt@i915_selftest@live@requests.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-adlm-1: [PASS][6] -> [ABORT][7] ([i915#4983]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-adlm-1/igt@i915_selftest@live@reset.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-adlm-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-rpls-1: NOTRUN -> [DMESG-WARN][8] ([i915#6367]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][9] -> [DMESG-FAIL][10] ([i915#6763]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: NOTRUN -> [ABORT][11] ([i915#6687] / [i915#7978]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - fi-bsw-n3050: NOTRUN -> [SKIP][12] ([fdo#109271]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/fi-bsw-n3050/igt@kms_chamelium_hpd@common-hpd-after-suspend.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][13] ([i915#7911] / [i915#7913]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [DMESG-WARN][15] ([i915#7699]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-dg2-11/igt@i915_selftest@live@migrate.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@requests: - bat-rpls-1: [ABORT][17] ([i915#7911] / [i915#7920]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-rpls-1/igt@i915_selftest@live@requests.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-rpls-1/igt@i915_selftest@live@requests.html - bat-mtlp-6: [DMESG-FAIL][19] ([i915#8497]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-mtlp-6/igt@i915_selftest@live@requests.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [FAIL][21] ([i915#7932]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html #### Warnings #### * igt@kms_psr@cursor_plane_move: - bat-rplp-1: [SKIP][23] ([i915#1072]) -> [ABORT][24] ([i915#8434]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/bat-rplp-1/igt@kms_psr@cursor_plane_move.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/bat-rplp-1/igt@kms_psr@cursor_plane_move.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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8513]: https://gitlab.freedesktop.org/drm/intel/issues/8513 [i915#8676]: https://gitlab.freedesktop.org/drm/intel/issues/8676 [i915#8698]: https://gitlab.freedesktop.org/drm/intel/issues/8698 [i915#8699]: https://gitlab.freedesktop.org/drm/intel/issues/8699 [i915#8700]: https://gitlab.freedesktop.org/drm/intel/issues/8700 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7345 -> IGTPW_9239 CI-20190529: 20190529 CI_DRM_13306: fd802e7196f63720d52eb2bd6451ae9f61df6484 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9239: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/index.html IGT_7345: bedba6f82d70f8eb49c53cb2c45ee60a1eec04d1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/index.html [-- Attachment #2: Type: text/html, Size: 8074 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/xe: When GT is in RC6 donot assert if act freq is 0 2023-06-22 9:37 [igt-dev] [PATCH i-g-t] tests/xe: When GT is in RC6 donot assert if act freq is 0 Badal Nilawar 2023-06-22 11:54 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-06-22 22:51 ` Patchwork 2023-06-26 23:09 ` [igt-dev] [PATCH i-g-t] " Dixit, Ashutosh 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-06-22 22:51 UTC (permalink / raw) To: Badal Nilawar; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 41349 bytes --] == Series Details == Series: tests/xe: When GT is in RC6 donot assert if act freq is 0 URL : https://patchwork.freedesktop.org/series/119732/ State : success == Summary == CI Bug Log - changes from CI_DRM_13306_full -> IGTPW_9239_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/index.html Participating hosts (8 -> 9) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9239_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_eio@hibernate: - {shard-dg2}: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-6/igt@gem_eio@hibernate.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-dp-4: - {shard-dg2}: NOTRUN -> [SKIP][2] +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-dp-4.html New tests --------- New tests have been introduced between CI_DRM_13306_full and IGTPW_9239_full: ### New IGT tests (3) ### * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-dp-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9239_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#3555] / [i915#4579] / [i915#5325]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#4525]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][6] -> [FAIL][7] ([i915#2846]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][8] -> [FAIL][9] ([i915#2842]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-tglu: NOTRUN -> [FAIL][10] ([i915#2842]) +5 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-2/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_reloc@basic-gtt: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@gem_exec_reloc@basic-gtt.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-apl: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-apl6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#4613]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@gem_lmem_swapping@verify.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3282]) +2 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#4270]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#4270]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#3297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3297]) +2 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_userptr_blits@vma-merge: - shard-tglu: NOTRUN -> [FAIL][19] ([i915#3318]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-6/igt@gem_userptr_blits@vma-merge.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][20] -> [ABORT][21] ([i915#5566]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-apl3/igt@gen9_exec_parse@allowed-single.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#2527]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#2527] / [i915#2856]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-2/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#7707]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@i915_hwmon@hwmon-read.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [PASS][25] -> [FAIL][26] ([i915#3989] / [i915#454]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#6245]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-6/igt@i915_query@hwconfig_table.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271]) +45 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-apl1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#5286]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][30] ([fdo#111614]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][31] ([fdo#110723]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-tglu: NOTRUN -> [SKIP][32] ([fdo#111615]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-9/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3734] / [i915#5354] / [i915#6095]) +3 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][35] ([i915#5354] / [i915#6095]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-5/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#5354] / [i915#6095]) +4 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#5354]) +8 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#3742]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-5/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#7828]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-3/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#7828]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_concurrent@pipe-c: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4070] / [i915#6768]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@kms_concurrent@pipe-c.html * igt@kms_content_protection@content_type_change: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4579] / [i915#7118]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@kms_content_protection@content_type_change.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3555] / [i915#4579]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#4579]) +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-apl4/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3359]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][47] ([fdo#109274]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4103]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][49] ([fdo#111825]) +2 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-tglu: NOTRUN -> [SKIP][50] ([fdo#109274] / [fdo#111767]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][51] -> [FAIL][52] ([i915#2346]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#3555] / [i915#4579]) +4 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: NOTRUN -> [SKIP][54] ([fdo#109271]) +11 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate.html - shard-tglu: NOTRUN -> [SKIP][55] ([fdo#109274] / [i915#3637]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1: - shard-glk: [PASS][56] -> [FAIL][57] ([i915#2122]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-glk5/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-glk7/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#2587] / [i915#2672] / [i915#4579]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#2672] / [i915#4579]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][60] ([fdo#111825] / [i915#1825]) +9 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][61] ([fdo#109280]) +8 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#5439]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][63] ([fdo#110189]) +7 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3023]) +4 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#1839]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-dp-2 (NEW): - {shard-dg2}: NOTRUN -> [SKIP][67] ([i915#5176]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-12/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-dp-2.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#4579]) +8 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-snb1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#4579] / [i915#5176]) +2 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#5176]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#5235]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#5235]) +2 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-9/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#4579] / [i915#5235]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-9/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4579] / [i915#5235]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-apl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#658]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-apl6/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#5289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][78] ([fdo#111615] / [i915#5289]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vblank@pipe-d-ts-continuation-idle: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@kms_vblank@pipe-d-ts-continuation-idle.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109295] / [i915#3291] / [i915#3708]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-read-hang: - shard-tglu: NOTRUN -> [SKIP][81] ([fdo#109295]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@prime_vgem@fence-read-hang.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][82] ([fdo#109307]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-tglu: NOTRUN -> [SKIP][83] ([fdo#109315] / [i915#2575]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-rkl: NOTRUN -> [SKIP][84] ([fdo#109315]) +4 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-2/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2575]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#7711]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@vc4/vc4_perfmon@create-two-perfmon.html #### Possible fixes #### * igt@gem_barrier_race@remote-request@rcs0: - shard-tglu: [ABORT][87] ([i915#8211] / [i915#8234]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-tglu-7/igt@gem_barrier_race@remote-request@rcs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-2/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_eio@in-flight-contexts-10ms: - shard-tglu: [TIMEOUT][89] ([i915#3063] / [i915#7941]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-tglu-3/igt@gem_eio@in-flight-contexts-10ms.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-3/igt@gem_eio@in-flight-contexts-10ms.html * igt@gem_exec_balancer@full-late-pulse: - {shard-dg2}: [FAIL][91] ([i915#6032]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg2-11/igt@gem_exec_balancer@full-late-pulse.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-12/igt@gem_exec_balancer@full-late-pulse.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [FAIL][93] ([i915#2842]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-rkl-7/igt@gem_exec_fair@basic-none@vecs0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][95] ([i915#2842]) -> [PASS][96] +3 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][97] ([i915#2842]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg2}: [TIMEOUT][99] ([i915#5493]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html - {shard-dg1}: [TIMEOUT][101] ([i915#5493]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - {shard-dg2}: [DMESG-WARN][103] ([i915#7061]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][105] ([fdo#109271]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - {shard-dg1}: [FAIL][107] ([i915#3591]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-dg1}: [SKIP][109] ([i915#1397]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg1-15/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][111] ([i915#1397]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@system-suspend: - {shard-dg2}: [FAIL][113] ([fdo#103375]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg2-5/igt@i915_pm_rpm@system-suspend.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-1/igt@i915_pm_rpm@system-suspend.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][115] ([i915#3743]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@forked-bo@pipe-b: - {shard-dg2}: [INCOMPLETE][117] ([i915#8011]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg2-10/igt@kms_cursor_legacy@forked-bo@pipe-b.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-12/igt@kms_cursor_legacy@forked-bo@pipe-b.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-apl: [ABORT][119] ([i915#180]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@perf_pmu@semaphore-busy@ccs3: - {shard-dg2}: [FAIL][121] ([i915#4349]) -> [PASS][122] +8 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg2-11/igt@perf_pmu@semaphore-busy@ccs3.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg2-2/igt@perf_pmu@semaphore-busy@ccs3.html * igt@perf_pmu@semaphore-busy@vcs1: - {shard-dg1}: [FAIL][123] ([i915#4349]) -> [PASS][124] +2 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-dg1-13/igt@perf_pmu@semaphore-busy@vcs1.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-dg1-15/igt@perf_pmu@semaphore-busy@vcs1.html #### Warnings #### * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][125] ([fdo#109300]) -> [SKIP][126] ([i915#4579] / [i915#7118]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-rkl-7/igt@kms_content_protection@mei_interface.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-7/igt@kms_content_protection@mei_interface.html - shard-apl: [SKIP][127] ([fdo#109271]) -> [SKIP][128] ([fdo#109271] / [i915#4579]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-apl6/igt@kms_content_protection@mei_interface.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-apl1/igt@kms_content_protection@mei_interface.html - shard-snb: [SKIP][129] ([fdo#109271]) -> [SKIP][130] ([fdo#109271] / [i915#4579]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-snb4/igt@kms_content_protection@mei_interface.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-snb4/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][131] ([fdo#109300]) -> [SKIP][132] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-tglu-10/igt@kms_content_protection@mei_interface.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-tglu-3/igt@kms_content_protection@mei_interface.html - shard-glk: [SKIP][133] ([fdo#109271]) -> [SKIP][134] ([fdo#109271] / [i915#4579]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-glk9/igt@kms_content_protection@mei_interface.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-glk5/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][135] ([i915#3955]) -> [SKIP][136] ([fdo#110189] / [i915#3955]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][137] ([i915#4816]) -> [SKIP][138] ([i915#4070] / [i915#4816]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13306/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.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#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#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#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [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#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#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [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#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [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#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7679]: https://gitlab.freedesktop.org/drm/intel/issues/7679 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211 [i915#8234]: https://gitlab.freedesktop.org/drm/intel/issues/8234 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7345 -> IGTPW_9239 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13306: fd802e7196f63720d52eb2bd6451ae9f61df6484 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9239: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9239/index.html IGT_7345: bedba6f82d70f8eb49c53cb2c45ee60a1eec04d1 @ 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_9239/index.html [-- Attachment #2: Type: text/html, Size: 46575 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/xe: When GT is in RC6 donot assert if act freq is 0 2023-06-22 9:37 [igt-dev] [PATCH i-g-t] tests/xe: When GT is in RC6 donot assert if act freq is 0 Badal Nilawar 2023-06-22 11:54 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-06-22 22:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2023-06-26 23:09 ` Dixit, Ashutosh 2023-06-30 11:00 ` Nilawar, Badal 2 siblings, 1 reply; 5+ messages in thread From: Dixit, Ashutosh @ 2023-06-26 23:09 UTC (permalink / raw) To: Badal Nilawar; +Cc: igt-dev On Thu, 22 Jun 2023 02:37:18 -0700, Badal Nilawar wrote: > > @@ -223,13 +244,15 @@ static void test_freq_fixed(int sysfs, int gt_id) > igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0); > usleep(ACT_FREQ_LATENCY_US); > igt_assert(get_freq(sysfs, gt_id, "cur") == rpn); > - igt_assert(get_freq(sysfs, gt_id, "act") == rpn); > + if (!in_rc6(sysfs, gt_id)) > + igt_assert(get_freq(sysfs, gt_id, "act") == rpn); > > igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0); > igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0); > usleep(ACT_FREQ_LATENCY_US); > igt_assert(get_freq(sysfs, gt_id, "cur") == rpe); > - igt_assert(get_freq(sysfs, gt_id, "act") == rpe); > + if (!in_rc6(sysfs, gt_id)) > + igt_assert(get_freq(sysfs, gt_id, "act") == rpe); > > igt_assert(set_freq(sysfs, gt_id, "min", rp0) > 0); > igt_assert(set_freq(sysfs, gt_id, "max", rp0) > 0); > @@ -269,7 +292,8 @@ static void test_freq_range(int sysfs, int gt_id) > cur = get_freq(sysfs, gt_id, "cur"); > igt_assert(rpn <= cur && cur <= rpe); > act = get_freq(sysfs, gt_id, "act"); > - igt_assert(rpn <= act && act <= rpe); > + if (!in_rc6(sysfs, gt_id)) > + igt_assert(rpn <= act && act <= rpe); Basically slightly racy because in_rc6() and get_freq() are not done atomically, but maybe ok here if not causing false positives? Further, do we need to add the following else's here: if (!in_rc6(sysfs, gt_id)) igt_assert(rpn <= act && act <= rpe); else igt_assert(act == 0); Or is that likely to blow up? Ashutosh ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/xe: When GT is in RC6 donot assert if act freq is 0 2023-06-26 23:09 ` [igt-dev] [PATCH i-g-t] " Dixit, Ashutosh @ 2023-06-30 11:00 ` Nilawar, Badal 0 siblings, 0 replies; 5+ messages in thread From: Nilawar, Badal @ 2023-06-30 11:00 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On 27-06-2023 04:39, Dixit, Ashutosh wrote: > On Thu, 22 Jun 2023 02:37:18 -0700, Badal Nilawar wrote: >> >> @@ -223,13 +244,15 @@ static void test_freq_fixed(int sysfs, int gt_id) >> igt_assert(set_freq(sysfs, gt_id, "max", rpn) > 0); >> usleep(ACT_FREQ_LATENCY_US); >> igt_assert(get_freq(sysfs, gt_id, "cur") == rpn); >> - igt_assert(get_freq(sysfs, gt_id, "act") == rpn); >> + if (!in_rc6(sysfs, gt_id)) >> + igt_assert(get_freq(sysfs, gt_id, "act") == rpn); >> >> igt_assert(set_freq(sysfs, gt_id, "min", rpe) > 0); >> igt_assert(set_freq(sysfs, gt_id, "max", rpe) > 0); >> usleep(ACT_FREQ_LATENCY_US); >> igt_assert(get_freq(sysfs, gt_id, "cur") == rpe); >> - igt_assert(get_freq(sysfs, gt_id, "act") == rpe); >> + if (!in_rc6(sysfs, gt_id)) >> + igt_assert(get_freq(sysfs, gt_id, "act") == rpe); >> >> igt_assert(set_freq(sysfs, gt_id, "min", rp0) > 0); >> igt_assert(set_freq(sysfs, gt_id, "max", rp0) > 0); >> @@ -269,7 +292,8 @@ static void test_freq_range(int sysfs, int gt_id) >> cur = get_freq(sysfs, gt_id, "cur"); >> igt_assert(rpn <= cur && cur <= rpe); >> act = get_freq(sysfs, gt_id, "act"); >> - igt_assert(rpn <= act && act <= rpe); >> + if (!in_rc6(sysfs, gt_id)) >> + igt_assert(rpn <= act && act <= rpe); > > Basically slightly racy because in_rc6() and get_freq() are not done > atomically, but maybe ok here if not causing false positives? Not sure how to handle race here. Not observed any false positives. > > Further, do we need to add the following else's here: > > if (!in_rc6(sysfs, gt_id)) > igt_assert(rpn <= act && act <= rpe); > else > igt_assert(act == 0); Instead of this to accommodate idle and exec test should we pass flag (is_idle) here. So this will be. if (is_idle) igt_assert(act == 0); else igt_assert(rpn <= act && act <= rpe); Regards, Badal > > Or is that likely to blow up > > Ashutosh ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-06-30 11:00 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-06-22 9:37 [igt-dev] [PATCH i-g-t] tests/xe: When GT is in RC6 donot assert if act freq is 0 Badal Nilawar 2023-06-22 11:54 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-06-22 22:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-06-26 23:09 ` [igt-dev] [PATCH i-g-t] " Dixit, Ashutosh 2023-06-30 11:00 ` Nilawar, Badal
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox