* [igt-dev] [PATCH i-g-t] lib/igt_kms: Fixed the usage of Dereferencing of null pointer
@ 2023-01-18 14:57 Mohammed Thasleem
2023-01-18 18:46 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Mohammed Thasleem @ 2023-01-18 14:57 UTC (permalink / raw)
To: igt-dev; +Cc: petri.latvala, kamil.konieczny
Fixed the usage of Dereferencing of null pointer to avoid crash.
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
---
lib/igt_kms.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index b4a98ae1..b3334b3a 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1941,6 +1941,7 @@ kmstest_get_property(int drm_fd, uint32_t object_id, uint32_t object_type,
int i;
proplist = drmModeObjectGetProperties(drm_fd, object_id, object_type);
+ igt_require(proplist);
for (i = 0; i < proplist->count_props; i++) {
_prop = drmModeGetProperty(drm_fd, proplist->props[i]);
if (!_prop)
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_kms: Fixed the usage of Dereferencing of null pointer 2023-01-18 14:57 [igt-dev] [PATCH i-g-t] lib/igt_kms: Fixed the usage of Dereferencing of null pointer Mohammed Thasleem @ 2023-01-18 18:46 ` Patchwork 2023-01-18 19:57 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny 2023-01-19 17:54 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-01-18 18:46 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2978 bytes --] == Series Details == Series: lib/igt_kms: Fixed the usage of Dereferencing of null pointer URL : https://patchwork.freedesktop.org/series/113032/ State : success == Summary == CI Bug Log - changes from IGT_7123 -> IGTPW_8366 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): fi-pnv-d510 Missing (2): fi-rkl-11600 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_8366 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-dg1-6: NOTRUN -> [SKIP][1] ([i915#7828]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/bat-dg1-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][2] ([fdo#109271]) +44 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/fi-pnv-d510/igt@kms_psr@primary_page_flip.html #### Possible fixes #### * igt@i915_selftest@live@gt_lrc: - {bat-adln-1}: [INCOMPLETE][3] ([i915#4983] / [i915#7609]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/bat-adln-1/igt@i915_selftest@live@gt_lrc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/bat-adln-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@workarounds: - bat-dg1-6: [INCOMPLETE][5] ([i915#4983]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/bat-dg1-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/bat-dg1-6/igt@i915_selftest@live@workarounds.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#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7123 -> IGTPW_8366 CI-20190529: 20190529 CI_DRM_12601: 5fee98189f91987f2b91fa666541de66e6c4a5b9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8366: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/index.html IGT_7123: 2b29e8ac07fbcfadc48b9d60e4d736a6e3b289ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/index.html [-- Attachment #2: Type: text/html, Size: 3540 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/igt_kms: Fixed the usage of Dereferencing of null pointer 2023-01-18 14:57 [igt-dev] [PATCH i-g-t] lib/igt_kms: Fixed the usage of Dereferencing of null pointer Mohammed Thasleem 2023-01-18 18:46 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-01-18 19:57 ` Kamil Konieczny 2023-01-19 17:54 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Kamil Konieczny @ 2023-01-18 19:57 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala, kamil.konieczny On 2023-01-18 at 20:27:57 +0530, Mohammed Thasleem wrote: > Fixed the usage of Dereferencing of null pointer to avoid crash. -------------------- ^ Please make it lowercase, s/D/d/ Correct it also in your Subject. > > Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> > --- > lib/igt_kms.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c > index b4a98ae1..b3334b3a 100644 > --- a/lib/igt_kms.c > +++ b/lib/igt_kms.c > @@ -1941,6 +1941,7 @@ kmstest_get_property(int drm_fd, uint32_t object_id, uint32_t object_type, > int i; > > proplist = drmModeObjectGetProperties(drm_fd, object_id, object_type); > + igt_require(proplist); ------- ^ imho just return false here, so if (!proplist) return false; Regards, Kamil > for (i = 0; i < proplist->count_props; i++) { > _prop = drmModeGetProperty(drm_fd, proplist->props[i]); > if (!_prop) > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_kms: Fixed the usage of Dereferencing of null pointer 2023-01-18 14:57 [igt-dev] [PATCH i-g-t] lib/igt_kms: Fixed the usage of Dereferencing of null pointer Mohammed Thasleem 2023-01-18 18:46 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-18 19:57 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny @ 2023-01-19 17:54 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2023-01-19 17:54 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 23561 bytes --] == Series Details == Series: lib/igt_kms: Fixed the usage of Dereferencing of null pointer URL : https://patchwork.freedesktop.org/series/113032/ State : success == Summary == CI Bug Log - changes from IGT_7123_full -> IGTPW_8366_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-rkl0 Known issues ------------ Here are the changes found in IGTPW_8366_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: NOTRUN -> [FAIL][1] ([i915#2842]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_lmem_swapping@verify: - shard-apl: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl1/igt@gem_lmem_swapping@verify.html * igt@gem_mmap_gtt@fault-concurrent-x: - shard-snb: [PASS][3] -> [CRASH][4] ([i915#5161]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-snb4/igt@gem_mmap_gtt@fault-concurrent-x.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-snb4/igt@gem_mmap_gtt@fault-concurrent-x.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-apl: [PASS][5] -> [INCOMPLETE][6] ([i915#7708]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-apl7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][7] ([i915#2658]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl3/igt@gem_pwrite@basic-exhaustion.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#3886]) +4 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl7/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#3886]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-glk7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs: - shard-apl: NOTRUN -> [SKIP][10] ([fdo#109271]) +115 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271]) +12 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-glk3/igt@kms_ccs@pipe-d-bad-aux-stride-yf_tiled_ccs.html * igt@kms_vblank@invalid: - shard-snb: [PASS][12] -> [SKIP][13] ([fdo#109271]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-snb5/igt@kms_vblank@invalid.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-snb2/igt@kms_vblank@invalid.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][14] ([i915#4312]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-snb4/igt@runner@aborted.html #### Possible fixes #### * igt@api_intel_bb@object-reloc-keep-cache: - {shard-rkl}: [SKIP][15] ([i915#3281]) -> [PASS][16] +4 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-reset-rebind: - {shard-rkl}: [DMESG-WARN][17] ([i915#5507]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-4/igt@device_reset@unbind-reset-rebind.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@virtual-idle: - {shard-rkl}: [FAIL][19] ([i915#7742]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@fbdev@unaligned-write: - {shard-rkl}: [SKIP][21] ([i915#2582]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-2/igt@fbdev@unaligned-write.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@fbdev@unaligned-write.html * igt@feature_discovery@psr1: - {shard-rkl}: [SKIP][23] ([i915#658]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-2/igt@feature_discovery@psr1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@feature_discovery@psr1.html * igt@gem_caching@read-writes: - shard-apl: [INCOMPLETE][25] ([i915#7708]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-apl3/igt@gem_caching@read-writes.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl7/igt@gem_caching@read-writes.html * igt@gem_eio@reset-stress: - {shard-dg1}: [FAIL][27] ([i915#5784]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-dg1-17/igt@gem_eio@reset-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][29] ([i915#2842]) -> [PASS][30] +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - {shard-rkl}: [FAIL][31] ([i915#2842]) -> [PASS][32] +3 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_mmap_gtt@coherency: - {shard-rkl}: [SKIP][33] ([fdo#111656]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-3/igt@gem_mmap_gtt@coherency.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-5/igt@gem_mmap_gtt@coherency.html * igt@gem_partial_pwrite_pread@write-uncached: - {shard-rkl}: [SKIP][35] ([i915#3282]) -> [PASS][36] +4 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-4/igt@gem_partial_pwrite_pread@write-uncached.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-5/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_workarounds@suspend-resume-fd: - shard-apl: [DMESG-WARN][37] ([i915#180]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-apl3/igt@gem_workarounds@suspend-resume-fd.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl7/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [DMESG-WARN][39] ([i915#5566] / [i915#716]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-apl7/igt@gen9_exec_parse@allowed-single.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-far: - {shard-rkl}: [SKIP][41] ([i915#2527]) -> [PASS][42] +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_hangman@gt-engine-error@bcs0: - {shard-rkl}: [SKIP][43] ([i915#6258]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-5/igt@i915_hangman@gt-engine-error@bcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-4/igt@i915_hangman@gt-engine-error@bcs0.html * igt@i915_pm_dc@dc9-dpms: - {shard-rkl}: [SKIP][45] ([i915#3361]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - {shard-dg1}: [FAIL][47] ([i915#3591]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@cursor: - {shard-rkl}: [SKIP][49] ([i915#1849]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-2/igt@i915_pm_rpm@cursor.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@i915_pm_rpm@cursor.html * igt@i915_pm_rpm@drm-resources-equal: - {shard-rkl}: [SKIP][51] ([fdo#109308]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-5/igt@i915_pm_rpm@drm-resources-equal.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@i915_pm_rpm@drm-resources-equal.html * igt@i915_pm_rpm@modeset-lpsp: - {shard-rkl}: [SKIP][53] ([i915#1397]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][55] ([i915#5334]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-apl7/igt@i915_selftest@live@gt_heartbeat.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-apl7/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - {shard-rkl}: [SKIP][57] ([i915#1845] / [i915#4098]) -> [PASS][58] +22 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [FAIL][59] ([i915#79]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-valid-mode: - {shard-dg1}: [FAIL][61] -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-valid-mode.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - {shard-rkl}: [SKIP][63] ([i915#1849] / [i915#4098]) -> [PASS][64] +8 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_psr@sprite_mmap_gtt: - {shard-rkl}: [SKIP][65] ([i915#1072]) -> [PASS][66] +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7123/shard-rkl-4/igt@kms_psr@sprite_mmap_gtt.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/shard-rkl-6/igt@kms_psr@sprite_mmap_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#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#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [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#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [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#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [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#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [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#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#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#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [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#7708]: https://gitlab.freedesktop.org/drm/intel/issues/7708 [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 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7123 -> IGTPW_8366 CI-20190529: 20190529 CI_DRM_12601: 5fee98189f91987f2b91fa666541de66e6c4a5b9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8366: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/index.html IGT_7123: 2b29e8ac07fbcfadc48b9d60e4d736a6e3b289ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8366/index.html [-- Attachment #2: Type: text/html, Size: 17608 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-01-19 17:54 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-18 14:57 [igt-dev] [PATCH i-g-t] lib/igt_kms: Fixed the usage of Dereferencing of null pointer Mohammed Thasleem 2023-01-18 18:46 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-01-18 19:57 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny 2023-01-19 17:54 ` [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