* [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement
@ 2023-01-27 18:09 Ashutosh Dixit
2023-01-27 18:09 ` [igt-dev] [PATCH i-g-t 1/2] " Ashutosh Dixit
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Ashutosh Dixit @ 2023-01-27 18:09 UTC (permalink / raw)
To: igt-dev
Ashutosh Dixit (2):
i915/i915_power: Sanity check power measurement
HAX: Add i915_power@sanity to fast-feedback.testlist
tests/i915/i915_power.c | 72 +++++++++++++++++++++++++++
tests/intel-ci/fast-feedback.testlist | 1 +
tests/meson.build | 1 +
3 files changed, 74 insertions(+)
create mode 100644 tests/i915/i915_power.c
--
2.38.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] i915/i915_power: Sanity check power measurement 2023-01-27 18:09 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit @ 2023-01-27 18:09 ` Ashutosh Dixit 2023-01-27 18:09 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit ` (2 subsequent siblings) 3 siblings, 0 replies; 8+ messages in thread From: Ashutosh Dixit @ 2023-01-27 18:09 UTC (permalink / raw) To: igt-dev Add a test to sanity check power measurement on integrated/discrete by requiring power under load to be > 0 and >= idle power. v2: Code reorganization (Kamil K) v3: More code reorganization (Kamil K) v4: Make sleep duration uint32_t and use #define (Kamil K) Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Riana Tauro <riana.tauro@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- tests/i915/i915_power.c | 72 +++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 73 insertions(+) create mode 100644 tests/i915/i915_power.c diff --git a/tests/i915/i915_power.c b/tests/i915/i915_power.c new file mode 100644 index 00000000000..f2fd228698a --- /dev/null +++ b/tests/i915/i915_power.c @@ -0,0 +1,72 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2023 Intel Corporation + */ + +#include "igt.h" +#include "i915/gem.h" +#include "igt_power.h" + +IGT_TEST_DESCRIPTION("i915 power measurement tests"); + +static double measure_power(struct igt_power *pwr, uint32_t duration_sec) +{ + struct power_sample sample[2]; + + igt_power_get_energy(pwr, &sample[0]); + usleep(duration_sec * USEC_PER_SEC); + igt_power_get_energy(pwr, &sample[1]); + + return igt_power_get_mW(pwr, &sample[0], &sample[1]); +} + +static void sanity(int i915) +{ + const intel_ctx_t *ctx; + struct igt_power pwr; + double idle, busy; + igt_spin_t *spin; + uint64_t ahnd; + +#define DURATION_SEC 2 + + /* Idle power */ + igt_require(!igt_power_open(i915, &pwr, "gpu")); + gem_quiescent_gpu(i915); + idle = measure_power(&pwr, DURATION_SEC); + + /* Busy power */ + ctx = intel_ctx_create_all_physical(i915); + ahnd = get_reloc_ahnd(i915, ctx->id); + spin = igt_spin_new(i915, .ahnd = ahnd, .ctx = ctx, + .engine = ALL_ENGINES, + .flags = IGT_SPIN_POLL_RUN); + /* Wait till at least one spinner starts */ + igt_spin_busywait_until_started(spin); + busy = measure_power(&pwr, DURATION_SEC); + igt_free_spins(i915); + put_ahnd(ahnd); + intel_ctx_destroy(i915, ctx); + igt_power_close(&pwr); + + igt_info("Measured power: idle: %g mW, busy: %g mW\n", idle, busy); + igt_assert(idle >= 0 && busy > 0 && busy > idle); +} + +igt_main +{ + int i915; + + igt_fixture { + i915 = drm_open_driver_master(DRIVER_INTEL); + } + + igt_describe("Sanity check gpu power measurement"); + igt_subtest("sanity") { + sanity(i915); + } + + igt_fixture { + close(i915); + } +} diff --git a/tests/meson.build b/tests/meson.build index cce9d89e1c8..d93a07c9ed6 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -213,6 +213,7 @@ i915_progs = [ 'i915_pm_dc', 'i915_pm_rps', 'i915_pm_sseu', + 'i915_power', 'i915_query', 'i915_selftest', 'i915_suspend', -- 2.38.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist 2023-01-27 18:09 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit 2023-01-27 18:09 ` [igt-dev] [PATCH i-g-t 1/2] " Ashutosh Dixit @ 2023-01-27 18:09 ` Ashutosh Dixit 2023-01-27 19:14 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/i915_power: Sanity check power measurement Patchwork 2023-01-27 23:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Ashutosh Dixit @ 2023-01-27 18:09 UTC (permalink / raw) To: igt-dev CI. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- tests/intel-ci/fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 4188e97375d..a266c316db9 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -128,6 +128,7 @@ igt@i915_pm_backlight@basic-brightness igt@i915_pm_rpm@basic-pci-d3-state igt@i915_pm_rpm@basic-rte igt@i915_pm_rps@basic-api +igt@i915_power@sanity igt@prime_self_import@basic-llseek-bad igt@prime_self_import@basic-llseek-size igt@prime_self_import@basic-with_fd_dup -- 2.38.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/i915_power: Sanity check power measurement 2023-01-27 18:09 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit 2023-01-27 18:09 ` [igt-dev] [PATCH i-g-t 1/2] " Ashutosh Dixit 2023-01-27 18:09 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit @ 2023-01-27 19:14 ` Patchwork 2023-01-27 23:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-27 19:14 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3549 bytes --] == Series Details == Series: i915/i915_power: Sanity check power measurement URL : https://patchwork.freedesktop.org/series/113445/ State : success == Summary == CI Bug Log - changes from IGT_7141 -> IGTPW_8413 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/index.html Participating hosts (25 -> 24) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8413: ### IGT changes ### #### Possible regressions #### * {igt@i915_power@sanity} (NEW): - {bat-jsl-3}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/bat-jsl-3/igt@i915_power@sanity.html - {bat-jsl-1}: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/bat-jsl-1/igt@i915_power@sanity.html New tests --------- New tests have been introduced between IGT_7141 and IGTPW_8413: ### New IGT tests (1) ### * igt@i915_power@sanity: - Statuses : 19 pass(s) 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8413 that come from known issues: ### IGT changes ### #### Issues hit #### * {igt@i915_power@sanity} (NEW): - fi-blb-e6850: NOTRUN -> [SKIP][3] ([fdo#109271]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/fi-blb-e6850/igt@i915_power@sanity.html - fi-bsw-n3050: NOTRUN -> [SKIP][4] ([fdo#109271]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/fi-bsw-n3050/igt@i915_power@sanity.html - fi-bsw-nick: NOTRUN -> [SKIP][5] ([fdo#109271]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/fi-bsw-nick/igt@i915_power@sanity.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - {bat-dg2-9}: [ABORT][6] -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/bat-dg2-9/igt@i915_selftest@live@hangcheck.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/bat-dg2-9/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@reset: - {bat-rpls-2}: [ABORT][8] -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/bat-rpls-2/igt@i915_selftest@live@reset.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/bat-rpls-2/igt@i915_selftest@live@reset.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#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7141 -> IGTPW_8413 CI-20190529: 20190529 CI_DRM_12656: 5a9d8eeec978f2373afe9e049eaa42f67b42074a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8413: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/index.html IGT_7141: a978df7912acda18eada1b1d2ae4b438ed3e940b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@i915_power@sanity == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/index.html [-- Attachment #2: Type: text/html, Size: 4199 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/i915_power: Sanity check power measurement 2023-01-27 18:09 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit ` (2 preceding siblings ...) 2023-01-27 19:14 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/i915_power: Sanity check power measurement Patchwork @ 2023-01-27 23:44 ` Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-27 23:44 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 22455 bytes --] == Series Details == Series: i915/i915_power: Sanity check power measurement URL : https://patchwork.freedesktop.org/series/113445/ State : success == Summary == CI Bug Log - changes from IGT_7141_full -> IGTPW_8413_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8413_full: ### IGT changes ### #### Possible regressions #### * {igt@i915_power@sanity} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@i915_power@sanity.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_suspend@basic-s4-devices@smem: - {shard-rkl}: NOTRUN -> [ABORT][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices@smem.html New tests --------- New tests have been introduced between IGT_7141_full and IGTPW_8413_full: ### New IGT tests (1) ### * igt@i915_power@sanity: - Statuses : 2 pass(s) 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8413_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs: - shard-glk: NOTRUN -> [SKIP][3] ([fdo#109271]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-glk1/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2: - shard-glk: [PASS][4] -> [FAIL][5] ([i915#79]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html #### Possible fixes #### * igt@fbdev@unaligned-write: - {shard-rkl}: [SKIP][6] ([i915#2582]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-1/igt@fbdev@unaligned-write.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@fbdev@unaligned-write.html * igt@gem_ctx_persistence@engines-hang@bcs0: - {shard-rkl}: [SKIP][8] ([i915#6252]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-5/igt@gem_ctx_persistence@engines-hang@bcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-1/igt@gem_ctx_persistence@engines-hang@bcs0.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][10] ([fdo#103375]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-1/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][12] ([i915#2842]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-rkl}: [FAIL][14] ([i915#2842]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html - {shard-tglu-9}: [FAIL][16] ([i915#2842]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - {shard-rkl}: [SKIP][18] ([i915#3281]) -> [PASS][19] +5 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_set_tiling_vs_pwrite: - {shard-rkl}: [SKIP][20] ([i915#3282]) -> [PASS][21] +5 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html * igt@gen9_exec_parse@unaligned-access: - {shard-rkl}: [SKIP][22] ([i915#2527]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-1/igt@gen9_exec_parse@unaligned-access.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - {shard-tglu}: [WARN][24] ([i915#2681]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - {shard-rkl}: [SKIP][26] ([i915#1397]) -> [PASS][27] +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-5/igt@i915_pm_rpm@dpms-lpsp.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@i2c: - {shard-rkl}: [SKIP][28] ([fdo#109308]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-3/igt@i915_pm_rpm@i2c.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@i915_pm_rpm@i2c.html * igt@i915_pm_sseu@full-enable: - {shard-rkl}: [SKIP][30] ([i915#4387]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-2/igt@i915_pm_sseu@full-enable.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-5/igt@i915_pm_sseu@full-enable.html * igt@kms_big_fb@linear-32bpp-rotate-0: - {shard-rkl}: [SKIP][32] ([i915#1845] / [i915#4098]) -> [PASS][33] +32 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-1/igt@kms_big_fb@linear-32bpp-rotate-0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-0.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - {shard-rkl}: [SKIP][34] ([i915#1849] / [i915#4098]) -> [PASS][35] +19 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right@pipe-a-planes: - {shard-rkl}: [SKIP][36] ([i915#1849]) -> [PASS][37] +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html * igt@kms_psr@sprite_mmap_gtt: - {shard-rkl}: [SKIP][38] ([i915#1072]) -> [PASS][39] +2 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-1/igt@kms_psr@sprite_mmap_gtt.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@kms_psr@sprite_mmap_gtt.html * igt@kms_rotation_crc@primary-rotation-90: - {shard-tglu}: [SKIP][40] ([i915#7651]) -> [PASS][41] +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-tglu-6/igt@kms_rotation_crc@primary-rotation-90.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-tglu-5/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - {shard-rkl}: [SKIP][42] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_universal_plane@universal-plane-pipe-b-sanity: - {shard-tglu}: [SKIP][44] ([fdo#109274]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-tglu-6/igt@kms_universal_plane@universal-plane-pipe-b-sanity.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-tglu-2/igt@kms_universal_plane@universal-plane-pipe-b-sanity.html * igt@kms_vblank@pipe-d-query-forked-hang: - {shard-tglu}: [SKIP][46] ([i915#1845] / [i915#7651]) -> [PASS][47] +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-tglu-6/igt@kms_vblank@pipe-d-query-forked-hang.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-tglu-5/igt@kms_vblank@pipe-d-query-forked-hang.html * igt@perf@mi-rpc: - {shard-rkl}: [SKIP][48] ([i915#2434]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-3/igt@perf@mi-rpc.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][50] ([i915#4349]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-2/igt@perf_pmu@idle@rcs0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-2/igt@perf_pmu@idle@rcs0.html * igt@prime_vgem@basic-write: - {shard-rkl}: [SKIP][52] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][53] [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-3/igt@prime_vgem@basic-write.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - {shard-rkl}: [SKIP][54] ([fdo#109295] / [fdo#111656] / [i915#3708]) -> [PASS][55] [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7141/shard-rkl-3/igt@prime_vgem@coherency-gtt.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/shard-rkl-5/igt@prime_vgem@coherency-gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#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#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7141 -> IGTPW_8413 CI-20190529: 20190529 CI_DRM_12656: 5a9d8eeec978f2373afe9e049eaa42f67b42074a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8413: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/index.html IGT_7141: a978df7912acda18eada1b1d2ae4b438ed3e940b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8413/index.html [-- Attachment #2: Type: text/html, Size: 15227 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement @ 2023-01-27 16:08 Ashutosh Dixit 2023-01-27 16:08 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit 0 siblings, 1 reply; 8+ messages in thread From: Ashutosh Dixit @ 2023-01-27 16:08 UTC (permalink / raw) To: igt-dev Ashutosh Dixit (2): i915/i915_power: Sanity check power measurement HAX: Add i915_power@sanity to fast-feedback.testlist tests/i915/i915_power.c | 70 +++++++++++++++++++++++++++ tests/intel-ci/fast-feedback.testlist | 1 + tests/meson.build | 1 + 3 files changed, 72 insertions(+) create mode 100644 tests/i915/i915_power.c -- 2.38.0 ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist 2023-01-27 16:08 [igt-dev] [PATCH i-g-t 0/2] " Ashutosh Dixit @ 2023-01-27 16:08 ` Ashutosh Dixit 0 siblings, 0 replies; 8+ messages in thread From: Ashutosh Dixit @ 2023-01-27 16:08 UTC (permalink / raw) To: igt-dev CI. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- tests/intel-ci/fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 4188e97375d..a266c316db9 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -128,6 +128,7 @@ igt@i915_pm_backlight@basic-brightness igt@i915_pm_rpm@basic-pci-d3-state igt@i915_pm_rpm@basic-rte igt@i915_pm_rps@basic-api +igt@i915_power@sanity igt@prime_self_import@basic-llseek-bad igt@prime_self_import@basic-llseek-size igt@prime_self_import@basic-with_fd_dup -- 2.38.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement @ 2023-01-27 6:25 Ashutosh Dixit 2023-01-27 6:25 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit 0 siblings, 1 reply; 8+ messages in thread From: Ashutosh Dixit @ 2023-01-27 6:25 UTC (permalink / raw) To: igt-dev Ashutosh Dixit (2): i915/i915_power: Sanity check power measurement HAX: Add i915_power@sanity to fast-feedback.testlist tests/i915/i915_power.c | 80 +++++++++++++++++++++++++++ tests/intel-ci/fast-feedback.testlist | 1 + tests/meson.build | 1 + 3 files changed, 82 insertions(+) create mode 100644 tests/i915/i915_power.c -- 2.38.0 ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist 2023-01-27 6:25 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit @ 2023-01-27 6:25 ` Ashutosh Dixit 0 siblings, 0 replies; 8+ messages in thread From: Ashutosh Dixit @ 2023-01-27 6:25 UTC (permalink / raw) To: igt-dev CI. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- tests/intel-ci/fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 4188e97375d..a266c316db9 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -128,6 +128,7 @@ igt@i915_pm_backlight@basic-brightness igt@i915_pm_rpm@basic-pci-d3-state igt@i915_pm_rpm@basic-rte igt@i915_pm_rps@basic-api +igt@i915_power@sanity igt@prime_self_import@basic-llseek-bad igt@prime_self_import@basic-llseek-size igt@prime_self_import@basic-with_fd_dup -- 2.38.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement @ 2023-01-21 5:41 Ashutosh Dixit 2023-01-21 5:41 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit 0 siblings, 1 reply; 8+ messages in thread From: Ashutosh Dixit @ 2023-01-21 5:41 UTC (permalink / raw) To: igt-dev; +Cc: Badal Nilawar Ashutosh Dixit (2): i915/i915_power: Sanity check power measurement HAX: Add i915_power@sanity to fast-feedback.testlist tests/i915/i915_power.c | 73 +++++++++++++++++++++++++++ tests/intel-ci/fast-feedback.testlist | 1 + tests/meson.build | 1 + 3 files changed, 75 insertions(+) create mode 100644 tests/i915/i915_power.c -- 2.38.0 ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist 2023-01-21 5:41 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit @ 2023-01-21 5:41 ` Ashutosh Dixit 0 siblings, 0 replies; 8+ messages in thread From: Ashutosh Dixit @ 2023-01-21 5:41 UTC (permalink / raw) To: igt-dev; +Cc: Badal Nilawar CI. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- tests/intel-ci/fast-feedback.testlist | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 4188e97375d..a266c316db9 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -128,6 +128,7 @@ igt@i915_pm_backlight@basic-brightness igt@i915_pm_rpm@basic-pci-d3-state igt@i915_pm_rpm@basic-rte igt@i915_pm_rps@basic-api +igt@i915_power@sanity igt@prime_self_import@basic-llseek-bad igt@prime_self_import@basic-llseek-size igt@prime_self_import@basic-with_fd_dup -- 2.38.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-01-27 23:44 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-27 18:09 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit 2023-01-27 18:09 ` [igt-dev] [PATCH i-g-t 1/2] " Ashutosh Dixit 2023-01-27 18:09 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit 2023-01-27 19:14 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/i915_power: Sanity check power measurement Patchwork 2023-01-27 23:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2023-01-27 16:08 [igt-dev] [PATCH i-g-t 0/2] " Ashutosh Dixit 2023-01-27 16:08 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit 2023-01-27 6:25 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit 2023-01-27 6:25 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit 2023-01-21 5:41 [igt-dev] [PATCH i-g-t 0/2] i915/i915_power: Sanity check power measurement Ashutosh Dixit 2023-01-21 5:41 ` [igt-dev] [PATCH i-g-t 2/2] HAX: Add i915_power@sanity to fast-feedback.testlist Ashutosh Dixit
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox