* [Intel-gfx] [PATCH] drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist()
@ 2022-07-08 8:41 Dan Carpenter
2022-07-08 8:55 ` Andrzej Hajda
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Dan Carpenter @ 2022-07-08 8:41 UTC (permalink / raw)
To: Zhenyu Wang, Chris Wilson
Cc: David Airlie, intel-gfx, kernel-janitors, Rodrigo Vivi,
intel-gvt-dev
The shmem_pin_map() function returns NULL, it doesn't return error
pointers.
Fixes: 97ea656521c8 ("drm/i915/gvt: Parse default state to update reg whitelist")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
drivers/gpu/drm/i915/gvt/cmd_parser.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/gvt/cmd_parser.c b/drivers/gpu/drm/i915/gvt/cmd_parser.c
index b9eb75a2b400..1c35a41620ae 100644
--- a/drivers/gpu/drm/i915/gvt/cmd_parser.c
+++ b/drivers/gpu/drm/i915/gvt/cmd_parser.c
@@ -3117,9 +3117,9 @@ void intel_gvt_update_reg_whitelist(struct intel_vgpu *vgpu)
continue;
vaddr = shmem_pin_map(engine->default_state);
- if (IS_ERR(vaddr)) {
- gvt_err("failed to map %s->default state, err:%zd\n",
- engine->name, PTR_ERR(vaddr));
+ if (!vaddr) {
+ gvt_err("failed to map %s->default state\n",
+ engine->name);
return;
}
--
2.35.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() 2022-07-08 8:41 [Intel-gfx] [PATCH] drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() Dan Carpenter @ 2022-07-08 8:55 ` Andrzej Hajda 2022-07-11 2:58 ` Zhenyu Wang 2022-07-08 10:26 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Andrzej Hajda @ 2022-07-08 8:55 UTC (permalink / raw) To: Dan Carpenter, Zhenyu Wang, Chris Wilson Cc: David Airlie, intel-gvt-dev, intel-gfx, kernel-janitors, Rodrigo Vivi On 08.07.2022 10:41, Dan Carpenter wrote: > The shmem_pin_map() function returns NULL, it doesn't return error > pointers. > > Fixes: 97ea656521c8 ("drm/i915/gvt: Parse default state to update reg whitelist") > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > --- > drivers/gpu/drm/i915/gvt/cmd_parser.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gvt/cmd_parser.c b/drivers/gpu/drm/i915/gvt/cmd_parser.c > index b9eb75a2b400..1c35a41620ae 100644 > --- a/drivers/gpu/drm/i915/gvt/cmd_parser.c > +++ b/drivers/gpu/drm/i915/gvt/cmd_parser.c > @@ -3117,9 +3117,9 @@ void intel_gvt_update_reg_whitelist(struct intel_vgpu *vgpu) > continue; > > vaddr = shmem_pin_map(engine->default_state); > - if (IS_ERR(vaddr)) { > - gvt_err("failed to map %s->default state, err:%zd\n", > - engine->name, PTR_ERR(vaddr)); > + if (!vaddr) { > + gvt_err("failed to map %s->default state\n", > + engine->name); > return; > } > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() 2022-07-08 8:55 ` Andrzej Hajda @ 2022-07-11 2:58 ` Zhenyu Wang 0 siblings, 0 replies; 6+ messages in thread From: Zhenyu Wang @ 2022-07-11 2:58 UTC (permalink / raw) To: Andrzej Hajda Cc: David Airlie, intel-gfx, kernel-janitors, Chris Wilson, Rodrigo Vivi, intel-gvt-dev, Dan Carpenter [-- Attachment #1: Type: text/plain, Size: 1286 bytes --] On 2022.07.08 10:55:52 +0200, Andrzej Hajda wrote: > On 08.07.2022 10:41, Dan Carpenter wrote: > > The shmem_pin_map() function returns NULL, it doesn't return error > > pointers. > > > > Fixes: 97ea656521c8 ("drm/i915/gvt: Parse default state to update reg whitelist") > > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> > > Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> > Acked-by: Zhenyu Wang <zhenyuw@linux.intel.com> Thanks! Will push to -fixes. > > > --- > > drivers/gpu/drm/i915/gvt/cmd_parser.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/gvt/cmd_parser.c b/drivers/gpu/drm/i915/gvt/cmd_parser.c > > index b9eb75a2b400..1c35a41620ae 100644 > > --- a/drivers/gpu/drm/i915/gvt/cmd_parser.c > > +++ b/drivers/gpu/drm/i915/gvt/cmd_parser.c > > @@ -3117,9 +3117,9 @@ void intel_gvt_update_reg_whitelist(struct intel_vgpu *vgpu) > > continue; > > vaddr = shmem_pin_map(engine->default_state); > > - if (IS_ERR(vaddr)) { > > - gvt_err("failed to map %s->default state, err:%zd\n", > > - engine->name, PTR_ERR(vaddr)); > > + if (!vaddr) { > > + gvt_err("failed to map %s->default state\n", > > + engine->name); > > return; > > } > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 195 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() 2022-07-08 8:41 [Intel-gfx] [PATCH] drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() Dan Carpenter 2022-07-08 8:55 ` Andrzej Hajda @ 2022-07-08 10:26 ` Patchwork 2022-07-08 15:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() (rev2) Patchwork 2022-07-09 2:52 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-07-08 10:26 UTC (permalink / raw) To: Dan Carpenter; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 11136 bytes --] == Series Details == Series: drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() URL : https://patchwork.freedesktop.org/series/106095/ State : failure == Summary == CI Bug Log - changes from CI_DRM_11860 -> Patchwork_106095v1 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_106095v1 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_106095v1, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/index.html Participating hosts (36 -> 38) ------------------------------ Additional (3): fi-hsw-4770 bat-rpls-2 fi-rkl-11600 Missing (1): bat-dg2-8 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_106095v1: ### IGT changes ### #### Possible regressions #### * igt@kms_addfb_basic@unused-handle: - fi-kbl-soraka: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/fi-kbl-soraka/igt@kms_addfb_basic@unused-handle.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-kbl-soraka/igt@kms_addfb_basic@unused-handle.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@hangcheck: - {fi-ehl-2}: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/fi-ehl-2/igt@i915_selftest@live@hangcheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-ehl-2/igt@i915_selftest@live@hangcheck.html Known issues ------------ Here are the changes found in Patchwork_106095v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][5] ([i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#4613]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][7] ([i915#3282]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][8] ([i915#3012]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html - fi-hsw-4770: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#3012]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-hsw-4770/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@execlists: - fi-bdw-gvtdvm: [PASS][10] -> [INCOMPLETE][11] ([i915#2940]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/fi-bdw-gvtdvm/igt@i915_selftest@live@execlists.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-bdw-gvtdvm/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gem: - fi-pnv-d510: NOTRUN -> [DMESG-FAIL][12] ([i915#4528]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-pnv-d510/igt@i915_selftest@live@gem.html * igt@i915_selftest@live@hangcheck: - bat-dg1-6: [PASS][13] -> [DMESG-FAIL][14] ([i915#4494] / [i915#4957]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/bat-dg1-6/igt@i915_selftest@live@hangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/bat-dg1-6/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: NOTRUN -> [INCOMPLETE][15] ([i915#5982]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][16] ([fdo#109271]) +9 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_chamelium@dp-crc-fast: - fi-hsw-4770: NOTRUN -> [SKIP][17] ([fdo#109271] / [fdo#111827]) +8 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-hsw-4770/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-rkl-11600: NOTRUN -> [SKIP][18] ([fdo#111827]) +7 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - fi-rkl-11600: NOTRUN -> [SKIP][19] ([i915#4103]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][20] ([fdo#109285] / [i915#4098]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@sprite_plane_onoff: - fi-rkl-11600: NOTRUN -> [SKIP][21] ([i915#1072]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@kms_psr@sprite_plane_onoff.html - fi-hsw-4770: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1072]) +3 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#4098]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][24] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - fi-rkl-11600: NOTRUN -> [SKIP][25] ([fdo#109295] / [i915#3301] / [i915#3708]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-rkl-11600/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-bdw-gvtdvm: NOTRUN -> [FAIL][26] ([i915#4312]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-bdw-gvtdvm/igt@runner@aborted.html #### Possible fixes #### * igt@i915_selftest@live@active: - {bat-dg2-9}: [DMESG-WARN][27] ([i915#5763]) -> [PASS][28] +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/bat-dg2-9/igt@i915_selftest@live@active.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/bat-dg2-9/igt@i915_selftest@live@active.html * igt@i915_selftest@live@requests: - fi-pnv-d510: [DMESG-FAIL][29] ([i915#4528]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/fi-pnv-d510/igt@i915_selftest@live@requests.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/fi-pnv-d510/igt@i915_selftest@live@requests.html * igt@kms_busy@basic@flip: - {bat-adln-1}: [DMESG-WARN][31] ([i915#3576]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/bat-adln-1/igt@kms_busy@basic@flip.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/bat-adln-1/igt@kms_busy@basic@flip.html - bat-adlp-4: [DMESG-WARN][33] ([i915#3576]) -> [PASS][34] +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/bat-adlp-4/igt@kms_busy@basic@flip.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/bat-adlp-4/igt@kms_busy@basic@flip.html * igt@kms_busy@basic@modeset: - {bat-adlp-6}: [DMESG-WARN][35] ([i915#3576]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11860/bat-adlp-6/igt@kms_busy@basic@modeset.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/bat-adlp-6/igt@kms_busy@basic@modeset.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957 [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763 [i915#5950]: https://gitlab.freedesktop.org/drm/intel/issues/5950 [i915#5982]: https://gitlab.freedesktop.org/drm/intel/issues/5982 [i915#6297]: https://gitlab.freedesktop.org/drm/intel/issues/6297 Build changes ------------- * Linux: CI_DRM_11860 -> Patchwork_106095v1 CI-20190529: 20190529 CI_DRM_11860: b3e10c252fd020e86f9d05b9750bdf448c5f8b51 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6563: 7d43b49bf10788d4870668f93a800888fc8ab339 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_106095v1: b3e10c252fd020e86f9d05b9750bdf448c5f8b51 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 797e97b26b39 drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v1/index.html [-- Attachment #2: Type: text/html, Size: 13021 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() (rev2) 2022-07-08 8:41 [Intel-gfx] [PATCH] drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() Dan Carpenter 2022-07-08 8:55 ` Andrzej Hajda 2022-07-08 10:26 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork @ 2022-07-08 15:46 ` Patchwork 2022-07-09 2:52 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-07-08 15:46 UTC (permalink / raw) To: Dan Carpenter; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5932 bytes --] == Series Details == Series: drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() (rev2) URL : https://patchwork.freedesktop.org/series/106095/ State : success == Summary == CI Bug Log - changes from CI_DRM_11862 -> Patchwork_106095v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/index.html Participating hosts (45 -> 40) ------------------------------ Additional (1): bat-dg2-9 Missing (6): fi-cml-u2 fi-rkl-11600 fi-bxt-dsi fi-hsw-4200u fi-ctg-p8600 fi-hsw-4770 Known issues ------------ Here are the changes found in Patchwork_106095v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - fi-kbl-soraka: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/fi-kbl-soraka/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/fi-kbl-soraka/igt@i915_module_load@load.html * igt@kms_busy@basic@flip: - bat-adlp-4: [PASS][3] -> [DMESG-WARN][4] ([i915#3576]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/bat-adlp-4/igt@kms_busy@basic@flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/bat-adlp-4/igt@kms_busy@basic@flip.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-pnv-d510: NOTRUN -> [SKIP][5] ([fdo#109271]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/fi-pnv-d510/igt@kms_chamelium@common-hpd-after-suspend.html #### Possible fixes #### * igt@i915_module_load@reload: - {bat-adln-1}: [DMESG-WARN][6] ([i915#6297]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/bat-adln-1/igt@i915_module_load@reload.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/bat-adln-1/igt@i915_module_load@reload.html * igt@i915_selftest@live@requests: - fi-pnv-d510: [DMESG-FAIL][8] ([i915#4528]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/fi-pnv-d510/igt@i915_selftest@live@requests.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/fi-pnv-d510/igt@i915_selftest@live@requests.html * igt@kms_flip@basic-flip-vs-modeset@a-edp1: - {bat-adlp-6}: [DMESG-WARN][10] ([i915#3576]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html * igt@vgem_basic@setversion: - fi-kbl-soraka: [INCOMPLETE][12] -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/fi-kbl-soraka/igt@vgem_basic@setversion.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/fi-kbl-soraka/igt@vgem_basic@setversion.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5537]: https://gitlab.freedesktop.org/drm/intel/issues/5537 [i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763 [i915#5950]: https://gitlab.freedesktop.org/drm/intel/issues/5950 [i915#6297]: https://gitlab.freedesktop.org/drm/intel/issues/6297 Build changes ------------- * Linux: CI_DRM_11862 -> Patchwork_106095v2 CI-20190529: 20190529 CI_DRM_11862: ffee806d103b9604db7eb9cd689c098aca1ffa96 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6563: 7d43b49bf10788d4870668f93a800888fc8ab339 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_106095v2: ffee806d103b9604db7eb9cd689c098aca1ffa96 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 7f705871960a drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/index.html [-- Attachment #2: Type: text/html, Size: 5025 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() (rev2) 2022-07-08 8:41 [Intel-gfx] [PATCH] drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() Dan Carpenter ` (2 preceding siblings ...) 2022-07-08 15:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() (rev2) Patchwork @ 2022-07-09 2:52 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-07-09 2:52 UTC (permalink / raw) To: Dan Carpenter; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 44288 bytes --] == Series Details == Series: drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() (rev2) URL : https://patchwork.freedesktop.org/series/106095/ State : success == Summary == CI Bug Log - changes from CI_DRM_11862_full -> Patchwork_106095v2_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 13) ------------------------------ Additional (3): shard-rkl shard-dg1 shard-tglu Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_106095v2_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d}: - shard-tglb: NOTRUN -> [SKIP][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * {igt@kms_invalid_mode@zero-vdisplay@hdmi-a-1-pipe-a}: - {shard-dg1}: NOTRUN -> [WARN][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-dg1-13/igt@kms_invalid_mode@zero-vdisplay@hdmi-a-1-pipe-a.html * {igt@kms_rmfb@rmfb-ioctl@pipe-d-hdmi-a-1}: - {shard-dg1}: NOTRUN -> [FAIL][3] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-dg1-13/igt@kms_rmfb@rmfb-ioctl@pipe-d-hdmi-a-1.html Known issues ------------ Here are the changes found in Patchwork_106095v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-massive: - shard-apl: NOTRUN -> [DMESG-WARN][4] ([i915#4991]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl1/igt@gem_create@create-massive.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-snb5/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@hostile: - shard-tglb: NOTRUN -> [FAIL][6] ([i915#2410]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@gem_ctx_persistence@hostile.html * igt@gem_exec_balancer@parallel-balancer: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271]) +26 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-snb5/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: [PASS][8] -> [SKIP][9] ([i915#4525]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb4/igt@gem_exec_balancer@parallel-contexts.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb3/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: NOTRUN -> [FAIL][10] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-iclb: [PASS][13] -> [FAIL][14] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb1/igt@gem_exec_fair@basic-pace@bcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb7/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk9/igt@gem_exec_fair@basic-pace@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-kbl: [PASS][17] -> [FAIL][18] ([i915#2842]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@gem_exec_fair@basic-pace@vecs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@verify: - shard-kbl: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#4613]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl7/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-ccs: - shard-skl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#4613]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl4/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_pxp@create-regular-context-1: - shard-tglb: NOTRUN -> [SKIP][21] ([i915#4270]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-skl: NOTRUN -> [SKIP][22] ([fdo#109271]) +93 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_softpin@evict-snoop-interruptible: - shard-tglb: NOTRUN -> [SKIP][23] ([fdo#109312]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_workarounds@suspend-resume: - shard-apl: [PASS][24] -> [DMESG-WARN][25] ([i915#180]) +3 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl1/igt@gem_workarounds@suspend-resume.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl6/igt@gem_workarounds@suspend-resume.html - shard-skl: [PASS][26] -> [INCOMPLETE][27] ([i915#4939] / [i915#5129]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl6/igt@gem_workarounds@suspend-resume.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl6/igt@gem_workarounds@suspend-resume.html * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#658]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk6/igt@i915_pm_dc@dc3co-vpb-simulation.html - shard-skl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#658]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl4/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][30] -> [FAIL][31] ([i915#454]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb4/igt@i915_pm_dc@dc6-psr.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglb: NOTRUN -> [WARN][32] ([i915#2681]) +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-d-edp-1: - shard-tglb: [PASS][33] -> [FAIL][34] ([i915#2521]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb3/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-edp-1.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb7/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-edp-1.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][35] ([i915#3743]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl7/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-skl: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3886]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl3/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_ccs: - shard-kbl: NOTRUN -> [SKIP][40] ([fdo#109271]) +29 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][41] ([i915#6095]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#111615] / [i915#3689]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_chamelium@dp-crc-multiple: - shard-skl: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +8 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl4/igt@kms_chamelium@dp-crc-multiple.html * igt@kms_chamelium@dp-hpd-after-suspend: - shard-snb: NOTRUN -> [SKIP][44] ([fdo#109271] / [fdo#111827]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-snb5/igt@kms_chamelium@dp-hpd-after-suspend.html * igt@kms_chamelium@dp-hpd-fast: - shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +2 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk6/igt@kms_chamelium@dp-hpd-fast.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl4/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_content_protection@lic: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#1063]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_content_protection@lic.html * igt@kms_content_protection@srm: - shard-kbl: NOTRUN -> [TIMEOUT][48] ([i915#1319]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl7/igt@kms_content_protection@srm.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#109274] / [fdo#111825]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [PASS][50] -> [FAIL][51] ([i915#72]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-apl: [PASS][52] -> [FAIL][53] ([i915#2346]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor@legacy: - shard-skl: NOTRUN -> [FAIL][54] ([i915#2346]) +4 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor@legacy.html * igt@kms_cursor_legacy@flip-vs-cursor@toggle: - shard-skl: NOTRUN -> [FAIL][55] ([i915#6328]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglb: NOTRUN -> [SKIP][56] ([fdo#109274] / [fdo#111825] / [i915#3637]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1: - shard-kbl: [PASS][57] -> [DMESG-WARN][58] ([i915#180]) +4 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-skl: [PASS][59] -> [FAIL][60] ([i915#2122]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl10/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#2672]) +5 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271]) +3 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglb: NOTRUN -> [SKIP][63] ([i915#5439]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109280] / [fdo#111825]) +3 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109289]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: [PASS][66] -> [SKIP][67] ([fdo#109642] / [fdo#111068] / [i915#658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb2/igt@kms_psr2_su@page_flip-xrgb8888.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [PASS][68] -> [SKIP][69] ([fdo#109441]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb2/igt@kms_psr@psr2_no_drrs.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb8/igt@kms_psr@psr2_no_drrs.html * igt@kms_vblank@pipe-d-wait-busy-hang: - shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271]) +16 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk6/igt@kms_vblank@pipe-d-wait-busy-hang.html * igt@prime_nv_api@i915_nv_import_twice: - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#109291]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@prime_nv_api@i915_nv_import_twice.html * igt@sysfs_clients@fair-1: - shard-skl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#2994]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl3/igt@sysfs_clients@fair-1.html #### Possible fixes #### * igt@gem_busy@close-race: - shard-snb: [TIMEOUT][73] ([i915#5748]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-snb6/igt@gem_busy@close-race.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-snb5/igt@gem_busy@close-race.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [SKIP][75] ([i915#4525]) -> [PASS][76] +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb8/igt@gem_exec_balancer@parallel-keep-in-fence.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][77] ([i915#2842]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-kbl: [FAIL][79] ([i915#2842]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs0.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl6/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-glk: [DMESG-WARN][81] ([i915#118]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk6/igt@gem_exec_whisper@basic-contexts-forked-all.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk8/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglb: [TIMEOUT][83] ([i915#3953]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb8/igt@i915_module_load@reload-with-fault-injection.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-kbl: [WARN][85] -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl1/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl1/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_selftest@live@hangcheck: - shard-snb: [INCOMPLETE][87] ([i915#3921]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-snb6/igt@i915_selftest@live@hangcheck.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-snb2/igt@i915_selftest@live@hangcheck.html - shard-tglb: [DMESG-WARN][89] ([i915#5591]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb3/igt@i915_selftest@live@hangcheck.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb7/igt@i915_selftest@live@hangcheck.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: [DMESG-WARN][91] ([i915#180]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl4/igt@i915_suspend@fence-restore-untiled.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl1/igt@i915_suspend@fence-restore-untiled.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1: - shard-skl: [FAIL][93] ([i915#2521]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html * igt@kms_cursor_legacy@short-flip-before-cursor@atomic-transitions-varying-size: - shard-skl: [FAIL][95] -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl3/igt@kms_cursor_legacy@short-flip-before-cursor@atomic-transitions-varying-size.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl10/igt@kms_cursor_legacy@short-flip-before-cursor@atomic-transitions-varying-size.html * igt@kms_flip@plain-flip-ts-check-interruptible@c-dp1: - shard-kbl: [FAIL][97] ([i915#2122]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl6/igt@kms_flip@plain-flip-ts-check-interruptible@c-dp1.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl1/igt@kms_flip@plain-flip-ts-check-interruptible@c-dp1.html * igt@kms_hdr@bpc-switch@pipe-a-dp-1: - shard-kbl: [FAIL][99] ([i915#1188]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl6/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl7/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html * igt@kms_plane@plane-position-covered@pipe-b-planes: - shard-tglb: [INCOMPLETE][101] -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb8/igt@kms_plane@plane-position-covered@pipe-b-planes.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb1/igt@kms_plane@plane-position-covered@pipe-b-planes.html * igt@kms_plane_lowres@tiling-y@pipe-a-hdmi-a-1: - shard-glk: [DMESG-FAIL][103] ([i915#118] / [i915#1888]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk7/igt@kms_plane_lowres@tiling-y@pipe-a-hdmi-a-1.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk2/igt@kms_plane_lowres@tiling-y@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-2: - shard-glk: [FAIL][105] ([i915#1888]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-glk7/igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-2.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-glk2/igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-2.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][107] ([fdo#109441]) -> [PASS][108] +2 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [SKIP][109] ([i915#5519]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-tglb8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-kbl: [DMESG-WARN][111] ([i915#180]) -> [PASS][112] +2 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl7/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@perf@polling-parameterized: - shard-skl: [FAIL][113] ([i915#1888] / [i915#5639]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-skl7/igt@perf@polling-parameterized.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-skl10/igt@perf@polling-parameterized.html #### Warnings #### * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: [SKIP][115] ([i915#4525]) -> [FAIL][116] ([i915#6117]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb6/igt@gem_exec_balancer@parallel-ordering.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_softpin@noreloc-s3: - shard-kbl: [INCOMPLETE][117] ([i915#3614] / [i915#4939] / [i915#794]) -> [DMESG-WARN][118] ([i915#180]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl4/igt@gem_softpin@noreloc-s3.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl6/igt@gem_softpin@noreloc-s3.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-iclb: [FAIL][119] ([i915#2684]) -> [WARN][120] ([i915#2684]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1: - shard-kbl: [DMESG-FAIL][121] ([i915#180]) -> [FAIL][122] ([i915#1188]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-kbl1/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-kbl4/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-iclb: [SKIP][123] ([i915#2920]) -> [SKIP][124] ([i915#658]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb8/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][125] ([i915#658]) -> [SKIP][126] ([i915#2920]) +1 similar issue [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-iclb: [SKIP][127] ([fdo#111068] / [i915#658]) -> [SKIP][128] ([i915#2920]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-iclb: [SKIP][129] ([i915#2920]) -> [SKIP][130] ([fdo#111068] / [i915#658]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-iclb6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@runner@aborted: - shard-apl: ([FAIL][131], [FAIL][132]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][133], [FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl8/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11862/shard-apl4/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl8/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl4/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl4/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl6/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl1/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/shard-apl1/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#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#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [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#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [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#110254]: https://bugs.freedesktop.org/show_bug.cgi?id=110254 [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#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314 [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#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836 [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#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [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#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [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#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#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#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#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376 [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#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614 [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#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3953]: https://gitlab.freedesktop.org/drm/intel/issues/3953 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032 [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#4137]: https://gitlab.freedesktop.org/drm/intel/issues/4137 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4231]: https://gitlab.freedesktop.org/drm/intel/issues/4231 [i915#4241]: https://gitlab.freedesktop.org/drm/intel/issues/4241 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4462]: https://gitlab.freedesktop.org/drm/intel/issues/4462 [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4874]: https://gitlab.freedesktop.org/drm/intel/issues/4874 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893 [i915#4904]: https://gitlab.freedesktop.org/drm/intel/issues/4904 [i915#4939]: https://gitlab.freedesktop.org/drm/intel/issues/4939 [i915#4941]: https://gitlab.freedesktop.org/drm/intel/issues/4941 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5129]: https://gitlab.freedesktop.org/drm/intel/issues/5129 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257 [i915#5264]: https://gitlab.freedesktop.org/drm/intel/issues/5264 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287 [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#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639 [i915#5721]: https://gitlab.freedesktop.org/drm/intel/issues/5721 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5748]: https://gitlab.freedesktop.org/drm/intel/issues/5748 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903 [i915#6011]: https://gitlab.freedesktop.org/drm/intel/issues/6011 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140 [i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [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#6251]: https://gitlab.freedesktop.org/drm/intel/issues/6251 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6328]: https://gitlab.freedesktop.org/drm/intel/issues/6328 [i915#6331]: https://gitlab.freedesktop.org/drm/intel/issues/6331 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#794]: https://gitlab.freedesktop.org/drm/intel/issues/794 Build changes ------------- * Linux: CI_DRM_11862 -> Patchwork_106095v2 CI-20190529: 20190529 CI_DRM_11862: ffee806d103b9604db7eb9cd689c098aca1ffa96 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6563: 7d43b49bf10788d4870668f93a800888fc8ab339 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_106095v2: ffee806d103b9604db7eb9cd689c098aca1ffa96 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_106095v2/index.html [-- Attachment #2: Type: text/html, Size: 41606 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-07-11 3:21 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-07-08 8:41 [Intel-gfx] [PATCH] drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() Dan Carpenter 2022-07-08 8:55 ` Andrzej Hajda 2022-07-11 2:58 ` Zhenyu Wang 2022-07-08 10:26 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for " Patchwork 2022-07-08 15:46 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/gvt: IS_ERR() vs NULL bug in intel_gvt_update_reg_whitelist() (rev2) Patchwork 2022-07-09 2:52 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox