* [igt-dev] [PATCH i-g-t v2] lib/xe_query: fix vram_memory() and vram_if_possible()
@ 2023-04-06 8:21 Matthew Auld
2023-04-06 10:06 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Matthew Auld @ 2023-04-06 8:21 UTC (permalink / raw)
To: igt-dev
vram_memory() is meant to return VRAM if supported. If we call this on
igpu it should return zero. There is at least one user relying on this
in xe_mmap@vram, where we want to skip if the mask here is zero.
vram_if_possible() should account for the per GT VRAM when returning
the mask. Currently it just returns the mask for all VRAM instances.
v2 (Niranjana):
- Squash into a single patch
- Fold in the differences from the version by Matt Brost & Zbigniew
Reported-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Matthew Brost <matthew.brost@intel.com>
---
lib/xe/xe_query.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 24a258a5e..2b627a78a 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -380,7 +380,7 @@ uint64_t vram_memory(int fd, int gt)
igt_assert(xe_dev);
igt_assert(gt >= 0 && gt < xe_dev->number_gt);
- return native_region_for_gt(xe_dev->gts, gt);
+ return xe_has_vram(fd) ? native_region_for_gt(xe_dev->gts, gt) : 0;
}
/**
@@ -393,11 +393,7 @@ uint64_t vram_memory(int fd, int gt)
*/
uint64_t vram_if_possible(int fd, int gt)
{
- uint64_t regions = all_memory_regions(fd);
- uint64_t system_memory = regions & 0x1;
- uint64_t vram = regions & (~0x1);
-
- return vram ? vram : system_memory;
+ return vram_memory(fd, gt) ?: system_memory(fd);
}
/**
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for lib/xe_query: fix vram_memory() and vram_if_possible() 2023-04-06 8:21 [igt-dev] [PATCH i-g-t v2] lib/xe_query: fix vram_memory() and vram_if_possible() Matthew Auld @ 2023-04-06 10:06 ` Patchwork 2023-04-06 16:38 ` [igt-dev] [PATCH i-g-t v2] " Niranjana Vishwanathapura 2023-04-06 23:43 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-04-06 10:06 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4539 bytes --] == Series Details == Series: lib/xe_query: fix vram_memory() and vram_if_possible() URL : https://patchwork.freedesktop.org/series/116177/ State : success == Summary == CI Bug Log - changes from CI_DRM_12979 -> IGTPW_8765 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/index.html Participating hosts (36 -> 35) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8765 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@hangcheck: - fi-skl-guc: [PASS][1] -> [DMESG-WARN][2] ([i915#8073]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/fi-skl-guc/igt@i915_selftest@live@hangcheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/fi-skl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@requests: - bat-rpls-2: [PASS][3] -> [ABORT][4] ([i915#4983] / [i915#7913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/bat-rpls-2/igt@i915_selftest@live@requests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-rpls-1: NOTRUN -> [SKIP][5] ([i915#7828]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-1: NOTRUN -> [SKIP][6] ([i915#1845]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: [ABORT][7] ([i915#6687] / [i915#7978]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [DMESG-WARN][9] ([i915#7699]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/bat-dg2-11/igt@i915_selftest@live@migrate.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1: - bat-dg2-8: [FAIL][11] ([i915#7932]) -> [PASS][12] +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html #### Warnings #### * igt@i915_selftest@live@slpc: - bat-rpls-1: [DMESG-FAIL][13] ([i915#6367] / [i915#7996]) -> [DMESG-FAIL][14] ([i915#6367]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/bat-rpls-1/igt@i915_selftest@live@slpc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/bat-rpls-1/igt@i915_selftest@live@slpc.html [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 [i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7242 -> IGTPW_8765 CI-20190529: 20190529 CI_DRM_12979: e0f93494298ec55cb7cd551251e6653df57f6b07 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8765: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/index.html IGT_7242: 32df2fea760a8b72516761657971a7edb08bd0bb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/index.html [-- Attachment #2: Type: text/html, Size: 5384 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] lib/xe_query: fix vram_memory() and vram_if_possible() 2023-04-06 8:21 [igt-dev] [PATCH i-g-t v2] lib/xe_query: fix vram_memory() and vram_if_possible() Matthew Auld 2023-04-06 10:06 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-04-06 16:38 ` Niranjana Vishwanathapura 2023-04-06 23:43 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Niranjana Vishwanathapura @ 2023-04-06 16:38 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev On Thu, Apr 06, 2023 at 09:21:57AM +0100, Matthew Auld wrote: >vram_memory() is meant to return VRAM if supported. If we call this on >igpu it should return zero. There is at least one user relying on this >in xe_mmap@vram, where we want to skip if the mask here is zero. > >vram_if_possible() should account for the per GT VRAM when returning >the mask. Currently it just returns the mask for all VRAM instances. > >v2 (Niranjana): > - Squash into a single patch > - Fold in the differences from the version by Matt Brost & Zbigniew > LGTM. Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> >Reported-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com> >Signed-off-by: Matthew Auld <matthew.auld@intel.com> >Cc: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> >Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> >Cc: Matthew Brost <matthew.brost@intel.com> >--- > lib/xe/xe_query.c | 8 ++------ > 1 file changed, 2 insertions(+), 6 deletions(-) > >diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c >index 24a258a5e..2b627a78a 100644 >--- a/lib/xe/xe_query.c >+++ b/lib/xe/xe_query.c >@@ -380,7 +380,7 @@ uint64_t vram_memory(int fd, int gt) > igt_assert(xe_dev); > igt_assert(gt >= 0 && gt < xe_dev->number_gt); > >- return native_region_for_gt(xe_dev->gts, gt); >+ return xe_has_vram(fd) ? native_region_for_gt(xe_dev->gts, gt) : 0; > } > > /** >@@ -393,11 +393,7 @@ uint64_t vram_memory(int fd, int gt) > */ > uint64_t vram_if_possible(int fd, int gt) > { >- uint64_t regions = all_memory_regions(fd); >- uint64_t system_memory = regions & 0x1; >- uint64_t vram = regions & (~0x1); >- >- return vram ? vram : system_memory; >+ return vram_memory(fd, gt) ?: system_memory(fd); > } > > /** >-- >2.39.2 > ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/xe_query: fix vram_memory() and vram_if_possible() 2023-04-06 8:21 [igt-dev] [PATCH i-g-t v2] lib/xe_query: fix vram_memory() and vram_if_possible() Matthew Auld 2023-04-06 10:06 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-04-06 16:38 ` [igt-dev] [PATCH i-g-t v2] " Niranjana Vishwanathapura @ 2023-04-06 23:43 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-04-06 23:43 UTC (permalink / raw) To: Matthew Auld; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 18319 bytes --] == Series Details == Series: lib/xe_query: fix vram_memory() and vram_if_possible() URL : https://patchwork.freedesktop.org/series/116177/ State : success == Summary == CI Bug Log - changes from CI_DRM_12979_full -> IGTPW_8765_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_8765_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-apl: [PASS][1] -> [FAIL][2] ([i915#2842]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-apl1/igt@gem_exec_fair@basic-pace-share@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [PASS][3] -> [ABORT][4] ([i915#5566]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-apl6/igt@gen9_exec_parse@allowed-all.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl1/igt@gen9_exec_parse@allowed-all.html - shard-glk: [PASS][5] -> [ABORT][6] ([i915#5566]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-glk5/igt@gen9_exec_parse@allowed-all.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-glk3/igt@gen9_exec_parse@allowed-all.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#3886]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl4/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][8] -> [FAIL][9] ([i915#2346]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_hdr@invalid-hdr@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][10] ([i915#8253]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl1/igt@kms_hdr@invalid-hdr@pipe-a-dp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#658]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@perf@stress-open-close@0-rcs0: - shard-glk: [PASS][12] -> [ABORT][13] ([i915#5213]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-glk5/igt@perf@stress-open-close@0-rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-glk1/igt@perf@stress-open-close@0-rcs0.html * igt@v3d/v3d_perfmon@destroy-valid-perfmon: - shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271]) +48 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl7/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - {shard-tglu}: [FAIL][15] ([i915#6268]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@kms: - {shard-dg1}: [FAIL][17] ([i915#5784]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-dg1-15/igt@gem_eio@kms.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-dg1-16/igt@gem_eio@kms.html * igt@gem_exec_endless@dispatch@vcs0: - {shard-dg1}: [TIMEOUT][19] ([i915#3778]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-dg1-17/igt@gem_exec_endless@dispatch@vcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-dg1-15/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][21] ([i915#2842]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][23] ([i915#2842]) -> [PASS][24] +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-glk9/igt@gem_exec_fair@basic-pace@vcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][25] -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_dc@dc6-dpms: - {shard-tglu}: [FAIL][27] ([i915#3989] / [i915#454]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-tglu-6/igt@i915_pm_dc@dc6-dpms.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][29] ([fdo#109271]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-apl4/igt@i915_pm_dc@dc9-dpms.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@modeset-non-lpsp: - {shard-rkl}: [SKIP][31] ([i915#1397]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_selftest@live@hangcheck: - {shard-dg1}: [ABORT][33] ([i915#4983]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-dg1-15/igt@i915_selftest@live@hangcheck.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-dg1-17/igt@i915_selftest@live@hangcheck.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][35] ([i915#72]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][37] ([i915#2346]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [FAIL][39] ([i915#2346]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [ABORT][41] ([i915#180]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_hdmi_inject@inject-audio: - {shard-tglu}: [SKIP][43] ([i915#433]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-2: - {shard-rkl}: [FAIL][45] ([i915#8292]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-rkl-4/igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-2.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-rkl-2/igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-2.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][47] ([i915#4349]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-rkl-2/igt@perf_pmu@idle@rcs0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-rkl-3/igt@perf_pmu@idle@rcs0.html #### Warnings #### * igt@kms_content_protection@legacy@pipe-a-dp-1: - shard-apl: [TIMEOUT][49] ([i915#7173]) -> [FAIL][50] ([fdo#110321]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12979/shard-apl3/igt@kms_content_protection@legacy@pipe-a-dp-1.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/shard-apl1/igt@kms_content_protection@legacy@pipe-a-dp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [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#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#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [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#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [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#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#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#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#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#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#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#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#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [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#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155 [i915#8253]: https://gitlab.freedesktop.org/drm/intel/issues/8253 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7242 -> IGTPW_8765 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12979: e0f93494298ec55cb7cd551251e6653df57f6b07 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8765: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8765/index.html IGT_7242: 32df2fea760a8b72516761657971a7edb08bd0bb @ 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_8765/index.html [-- Attachment #2: Type: text/html, Size: 13676 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-04-06 23:43 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-04-06 8:21 [igt-dev] [PATCH i-g-t v2] lib/xe_query: fix vram_memory() and vram_if_possible() Matthew Auld 2023-04-06 10:06 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-04-06 16:38 ` [igt-dev] [PATCH i-g-t v2] " Niranjana Vishwanathapura 2023-04-06 23:43 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox