* [Intel-gfx] [PATCH] drm/i915/gem: placate scripts/kernel-doc @ 2021-11-23 5:09 ` Randy Dunlap 0 siblings, 0 replies; 10+ messages in thread From: Randy Dunlap @ 2021-11-23 5:09 UTC (permalink / raw) To: dri-devel; +Cc: Thomas Hellström, Randy Dunlap, intel-gfx, Matthew Auld Correct kernel-doc warnings in i915_drm_object.c: i915_gem_object.c:103: warning: expecting prototype for i915_gem_object_fini(). Prototype was for __i915_gem_object_fini() instead i915_gem_object.c:110: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * Mark up the object's coherency levels for a given cache_level i915_gem_object.c:110: warning: missing initial short description on line: * Mark up the object's coherency levels for a given cache_level i915_gem_object.c:457: warning: No description found for return value of 'i915_gem_object_read_from_page' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Reported-by: kernel test robot <lkp@intel.com> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> Cc: Matthew Auld <matthew.auld@intel.com> Cc: Jani Nikula <jani.nikula@linux.intel.com> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Cc: intel-gfx@lists.freedesktop.org --- drivers/gpu/drm/i915/gem/i915_gem_object.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- linux-next-20211118.orig/drivers/gpu/drm/i915/gem/i915_gem_object.c +++ linux-next-20211118/drivers/gpu/drm/i915/gem/i915_gem_object.c @@ -91,7 +91,7 @@ void i915_gem_object_init(struct drm_i91 } /** - * i915_gem_object_fini - Clean up a GEM object initialization + * __i915_gem_object_fini - Clean up a GEM object initialization * @obj: The gem object to cleanup * * This function cleans up gem object fields that are set up by @@ -107,7 +107,8 @@ void __i915_gem_object_fini(struct drm_i } /** - * Mark up the object's coherency levels for a given cache_level + * i915_gem_object_set_cache_coherency - Mark up the object's coherency levels + * for a given cache_level * @obj: #drm_i915_gem_object * @cache_level: cache level */ @@ -450,7 +451,7 @@ i915_gem_object_read_from_page_iomap(str * from can't cross a page boundary. The caller must ensure that @obj pages * are pinned and that @obj is synced wrt. any related writes. * - * Returns 0 on success or -ENODEV if the type of @obj's backing store is + * Return: %0 on success or -ENODEV if the type of @obj's backing store is * unsupported. */ int i915_gem_object_read_from_page(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size) ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH] drm/i915/gem: placate scripts/kernel-doc @ 2021-11-23 5:09 ` Randy Dunlap 0 siblings, 0 replies; 10+ messages in thread From: Randy Dunlap @ 2021-11-23 5:09 UTC (permalink / raw) To: dri-devel Cc: Thomas Hellström, Randy Dunlap, kernel test robot, Tvrtko Ursulin, intel-gfx, Matthew Auld, Rodrigo Vivi Correct kernel-doc warnings in i915_drm_object.c: i915_gem_object.c:103: warning: expecting prototype for i915_gem_object_fini(). Prototype was for __i915_gem_object_fini() instead i915_gem_object.c:110: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * Mark up the object's coherency levels for a given cache_level i915_gem_object.c:110: warning: missing initial short description on line: * Mark up the object's coherency levels for a given cache_level i915_gem_object.c:457: warning: No description found for return value of 'i915_gem_object_read_from_page' Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Reported-by: kernel test robot <lkp@intel.com> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> Cc: Matthew Auld <matthew.auld@intel.com> Cc: Jani Nikula <jani.nikula@linux.intel.com> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Cc: intel-gfx@lists.freedesktop.org --- drivers/gpu/drm/i915/gem/i915_gem_object.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- linux-next-20211118.orig/drivers/gpu/drm/i915/gem/i915_gem_object.c +++ linux-next-20211118/drivers/gpu/drm/i915/gem/i915_gem_object.c @@ -91,7 +91,7 @@ void i915_gem_object_init(struct drm_i91 } /** - * i915_gem_object_fini - Clean up a GEM object initialization + * __i915_gem_object_fini - Clean up a GEM object initialization * @obj: The gem object to cleanup * * This function cleans up gem object fields that are set up by @@ -107,7 +107,8 @@ void __i915_gem_object_fini(struct drm_i } /** - * Mark up the object's coherency levels for a given cache_level + * i915_gem_object_set_cache_coherency - Mark up the object's coherency levels + * for a given cache_level * @obj: #drm_i915_gem_object * @cache_level: cache level */ @@ -450,7 +451,7 @@ i915_gem_object_read_from_page_iomap(str * from can't cross a page boundary. The caller must ensure that @obj pages * are pinned and that @obj is synced wrt. any related writes. * - * Returns 0 on success or -ENODEV if the type of @obj's backing store is + * Return: %0 on success or -ENODEV if the type of @obj's backing store is * unsupported. */ int i915_gem_object_read_from_page(struct drm_i915_gem_object *obj, u64 offset, void *dst, int size) ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/gem: placate scripts/kernel-doc 2021-11-23 5:09 ` Randy Dunlap (?) @ 2021-11-23 5:24 ` Patchwork -1 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2021-11-23 5:24 UTC (permalink / raw) To: Randy Dunlap; +Cc: intel-gfx == Series Details == Series: drm/i915/gem: placate scripts/kernel-doc URL : https://patchwork.freedesktop.org/series/97190/ State : warning == Summary == $ dim checkpatch origin/drm-tip 960cb066fb23 drm/i915/gem: placate scripts/kernel-doc -:11: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) #11: i915_gem_object.c:103: warning: expecting prototype for i915_gem_object_fini(). Prototype was for __i915_gem_object_fini() instead total: 0 errors, 1 warnings, 0 checks, 25 lines checked ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/gem: placate scripts/kernel-doc 2021-11-23 5:09 ` Randy Dunlap (?) (?) @ 2021-11-23 5:56 ` Patchwork 2021-11-23 9:44 ` Matthew Auld -1 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2021-11-23 5:56 UTC (permalink / raw) To: Randy Dunlap; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5679 bytes --] == Series Details == Series: drm/i915/gem: placate scripts/kernel-doc URL : https://patchwork.freedesktop.org/series/97190/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10917 -> Patchwork_21664 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_21664 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_21664, 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_21664/index.html Participating hosts (40 -> 34) ------------------------------ Additional (1): fi-kbl-soraka Missing (7): bat-dg1-6 fi-tgl-u2 fi-bsw-cyan bat-adlp-6 bat-adlp-4 bat-jsl-2 bat-jsl-1 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_21664: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s3: - fi-skl-6600u: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html Known issues ------------ Here are the changes found in Patchwork_21664 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@semaphore: - fi-bdw-5557u: NOTRUN -> [SKIP][3] ([fdo#109271]) +31 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html * igt@gem_exec_fence@basic-busy@bcs0: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271]) +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html * igt@gem_exec_suspend@basic-s0: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][5] ([i915#4221]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][7] -> [INCOMPLETE][8] ([i915#3921]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-snb-2600/igt@i915_selftest@live@hangcheck.html * igt@kms_chamelium@dp-crc-fast: - fi-bdw-5557u: NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) +8 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-edid-read: - fi-kbl-8809g: NOTRUN -> [SKIP][10] ([fdo#109271] / [fdo#111827]) +8 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-kbl-8809g: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#533]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_psr@cursor_plane_move: - fi-kbl-8809g: NOTRUN -> [SKIP][12] ([fdo#109271]) +41 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html #### Possible fixes #### * igt@core_auth@basic-auth: - fi-kbl-8809g: [FAIL][13] -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-kbl-8809g/igt@core_auth@basic-auth.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@core_auth@basic-auth.html #### Warnings #### * igt@runner@aborted: - fi-skl-6600u: [FAIL][15] ([i915#2722] / [i915#3363] / [i915#4312]) -> [FAIL][16] ([i915#3363] / [i915#4312]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-skl-6600u/igt@runner@aborted.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-skl-6600u/igt@runner@aborted.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#4221]: https://gitlab.freedesktop.org/drm/intel/issues/4221 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_10917 -> Patchwork_21664 CI-20190529: 20190529 CI_DRM_10917: de9a03c2007f3c69c5fa86ef007841a4a9194aac @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6286: cdcbf81f734fdb1d102e84490e49e9fec23760cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21664: 960cb066fb2369728d369f58fd4601e250486664 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 960cb066fb23 drm/i915/gem: placate scripts/kernel-doc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/index.html [-- Attachment #2: Type: text/html, Size: 7173 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/gem: placate scripts/kernel-doc 2021-11-23 5:56 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork @ 2021-11-23 9:44 ` Matthew Auld 2021-11-23 17:26 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 10+ messages in thread From: Matthew Auld @ 2021-11-23 9:44 UTC (permalink / raw) To: Intel Graphics Development, lakshminarayana.vudum; +Cc: Randy Dunlap [-- Attachment #1: Type: text/plain, Size: 6234 bytes --] On Tue, 23 Nov 2021 at 05:56, Patchwork <patchwork@emeril.freedesktop.org> wrote: > *Patch Details* > *Series:* drm/i915/gem: placate scripts/kernel-doc > *URL:* https://patchwork.freedesktop.org/series/97190/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/index.html CI > Bug Log - changes from CI_DRM_10917 -> Patchwork_21664 Summary > > *FAILURE* > > Serious unknown changes coming with Patchwork_21664 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_21664, 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_21664/index.html > Participating hosts (40 -> 34) > > Additional (1): fi-kbl-soraka > Missing (7): bat-dg1-6 fi-tgl-u2 fi-bsw-cyan bat-adlp-6 bat-adlp-4 > bat-jsl-2 bat-jsl-1 > Possible new issues > > Here are the unknown changes that may have been introduced in > Patchwork_21664: > IGT changes Possible regressions > > - igt@gem_exec_suspend@basic-s3: > - fi-skl-6600u: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html> > > Lakshmi, another false positive it seems. The patch in question is only fixing kernel-doc. Pushed to drm-intel-gt-next. Thanks. > - > > Known issues > > Here are the changes found in Patchwork_21664 that come from known issues: > IGT changes Issues hit > > - > > igt@amdgpu/amd_basic@semaphore: > - fi-bdw-5557u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +31 similar issues > - > > igt@gem_exec_fence@basic-busy@bcs0: > - fi-kbl-soraka: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +2 similar issues > - > > igt@gem_exec_suspend@basic-s0: > - fi-kbl-soraka: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html> > (i915#4221 <https://gitlab.freedesktop.org/drm/intel/issues/4221>) > - > > igt@gem_huc_copy@huc-copy: > - fi-kbl-8809g: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#2190 <https://gitlab.freedesktop.org/drm/intel/issues/2190>) > - > > igt@i915_selftest@live@hangcheck: > - fi-snb-2600: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-snb-2600/igt@i915_selftest@live@hangcheck.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-snb-2600/igt@i915_selftest@live@hangcheck.html> > (i915#3921 <https://gitlab.freedesktop.org/drm/intel/issues/3921>) > - > > igt@kms_chamelium@dp-crc-fast: > - fi-bdw-5557u: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +8 similar issues > - > > igt@kms_chamelium@hdmi-edid-read: > - fi-kbl-8809g: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) > +8 similar issues > - > > igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: > - fi-kbl-8809g: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / > i915#533 <https://gitlab.freedesktop.org/drm/intel/issues/533>) > - > > igt@kms_psr@cursor_plane_move: > - fi-kbl-8809g: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html> > (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) > +41 similar issues > > Possible fixes > > - igt@core_auth@basic-auth: > - fi-kbl-8809g: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-kbl-8809g/igt@core_auth@basic-auth.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@core_auth@basic-auth.html> > > Warnings > > - igt@runner@aborted: > - fi-skl-6600u: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-skl-6600u/igt@runner@aborted.html> > (i915#2722 <https://gitlab.freedesktop.org/drm/intel/issues/2722> / > i915#3363 <https://gitlab.freedesktop.org/drm/intel/issues/3363> / > i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>) > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-skl-6600u/igt@runner@aborted.html> > (i915#3363 <https://gitlab.freedesktop.org/drm/intel/issues/3363> / > i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>) > > Build changes > > - Linux: CI_DRM_10917 -> Patchwork_21664 > > CI-20190529: 20190529 > CI_DRM_10917: de9a03c2007f3c69c5fa86ef007841a4a9194aac @ git:// > anongit.freedesktop.org/gfx-ci/linux > IGT_6286: cdcbf81f734fdb1d102e84490e49e9fec23760cd @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > Patchwork_21664: 960cb066fb2369728d369f58fd4601e250486664 @ git:// > anongit.freedesktop.org/gfx-ci/linux > > == Linux commits == > > 960cb066fb23 drm/i915/gem: placate scripts/kernel-doc > [-- Attachment #2: Type: text/html, Size: 8858 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/gem: placate scripts/kernel-doc 2021-11-23 9:44 ` Matthew Auld @ 2021-11-23 17:26 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 10+ messages in thread From: Vudum, Lakshminarayana @ 2021-11-23 17:26 UTC (permalink / raw) To: Matthew Auld, Intel Graphics Development; +Cc: Randy Dunlap [-- Attachment #1: Type: text/plain, Size: 6557 bytes --] This failure is related to https://gitlab.freedesktop.org/drm/intel/-/issues/4547 Few tests - fail - This test was killed due to a kernel taint, INFO: task kworker/.* blocked for more than 30 seconds. Re-reproted. Thanks, Lakshmi. From: Matthew Auld <matthew.william.auld@gmail.com> Sent: Tuesday, November 23, 2021 1:45 AM To: Intel Graphics Development <intel-gfx@lists.freedesktop.org>; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Cc: Randy Dunlap <rdunlap@infradead.org> Subject: Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/gem: placate scripts/kernel-doc On Tue, 23 Nov 2021 at 05:56, Patchwork <patchwork@emeril.freedesktop.org<mailto:patchwork@emeril.freedesktop.org>> wrote: Patch Details Series: drm/i915/gem: placate scripts/kernel-doc URL: https://patchwork.freedesktop.org/series/97190/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/index.html CI Bug Log - changes from CI_DRM_10917 -> Patchwork_21664 Summary FAILURE Serious unknown changes coming with Patchwork_21664 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_21664, 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_21664/index.html Participating hosts (40 -> 34) Additional (1): fi-kbl-soraka Missing (7): bat-dg1-6 fi-tgl-u2 fi-bsw-cyan bat-adlp-6 bat-adlp-4 bat-jsl-2 bat-jsl-1 Possible new issues Here are the unknown changes that may have been introduced in Patchwork_21664: IGT changes Possible regressions * igt@gem_exec_suspend@basic-s3: * fi-skl-6600u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html> Lakshmi, another false positive it seems. The patch in question is only fixing kernel-doc. Pushed to drm-intel-gt-next. Thanks. * Known issues Here are the changes found in Patchwork_21664 that come from known issues: IGT changes Issues hit * igt@amdgpu/amd_basic@semaphore: * fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +31 similar issues * igt@gem_exec_fence@basic-busy@bcs0: * fi-kbl-soraka: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * igt@gem_exec_suspend@basic-s0: * fi-kbl-soraka: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html> (i915#4221<https://gitlab.freedesktop.org/drm/intel/issues/4221>) * igt@gem_huc_copy@huc-copy: * fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#2190<https://gitlab.freedesktop.org/drm/intel/issues/2190>) * igt@i915_selftest@live@hangcheck: * fi-snb-2600: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-snb-2600/igt@i915_selftest@live@hangcheck.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-snb-2600/igt@i915_selftest@live@hangcheck.html> (i915#3921<https://gitlab.freedesktop.org/drm/intel/issues/3921>) * igt@kms_chamelium@dp-crc-fast: * fi-bdw-5557u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues * igt@kms_chamelium@hdmi-edid-read: * fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +8 similar issues * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: * fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533>) * igt@kms_psr@cursor_plane_move: * fi-kbl-8809g: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +41 similar issues Possible fixes * igt@core_auth@basic-auth: * fi-kbl-8809g: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-kbl-8809g/igt@core_auth@basic-auth.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@core_auth@basic-auth.html> Warnings * igt@runner@aborted: * fi-skl-6600u: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-skl-6600u/igt@runner@aborted.html> (i915#2722<https://gitlab.freedesktop.org/drm/intel/issues/2722> / i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-skl-6600u/igt@runner@aborted.html> (i915#3363<https://gitlab.freedesktop.org/drm/intel/issues/3363> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>) Build changes * Linux: CI_DRM_10917 -> Patchwork_21664 CI-20190529: 20190529 CI_DRM_10917: de9a03c2007f3c69c5fa86ef007841a4a9194aac @ git://anongit.freedesktop.org/gfx-ci/linux<http://anongit.freedesktop.org/gfx-ci/linux> IGT_6286: cdcbf81f734fdb1d102e84490e49e9fec23760cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21664: 960cb066fb2369728d369f58fd4601e250486664 @ git://anongit.freedesktop.org/gfx-ci/linux<http://anongit.freedesktop.org/gfx-ci/linux> == Linux commits == 960cb066fb23 drm/i915/gem: placate scripts/kernel-doc [-- Attachment #2: Type: text/html, Size: 30494 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/gem: placate scripts/kernel-doc 2021-11-23 5:09 ` Randy Dunlap @ 2021-11-23 9:29 ` Matthew Auld -1 siblings, 0 replies; 10+ messages in thread From: Matthew Auld @ 2021-11-23 9:29 UTC (permalink / raw) To: Randy Dunlap, dri-devel; +Cc: Thomas Hellström, intel-gfx On 23/11/2021 05:09, Randy Dunlap wrote: > Correct kernel-doc warnings in i915_drm_object.c: > > i915_gem_object.c:103: warning: expecting prototype for i915_gem_object_fini(). Prototype was for __i915_gem_object_fini() instead > i915_gem_object.c:110: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst > * Mark up the object's coherency levels for a given cache_level > i915_gem_object.c:110: warning: missing initial short description on line: > * Mark up the object's coherency levels for a given cache_level > i915_gem_object.c:457: warning: No description found for return value of 'i915_gem_object_read_from_page' > > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > Reported-by: kernel test robot <lkp@intel.com> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> > Cc: Matthew Auld <matthew.auld@intel.com> > Cc: Jani Nikula <jani.nikula@linux.intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Cc: intel-gfx@lists.freedesktop.org Reviewed-by: Matthew Auld <matthew.auld@intel.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] drm/i915/gem: placate scripts/kernel-doc @ 2021-11-23 9:29 ` Matthew Auld 0 siblings, 0 replies; 10+ messages in thread From: Matthew Auld @ 2021-11-23 9:29 UTC (permalink / raw) To: Randy Dunlap, dri-devel Cc: Thomas Hellström, kernel test robot, Tvrtko Ursulin, intel-gfx, Rodrigo Vivi On 23/11/2021 05:09, Randy Dunlap wrote: > Correct kernel-doc warnings in i915_drm_object.c: > > i915_gem_object.c:103: warning: expecting prototype for i915_gem_object_fini(). Prototype was for __i915_gem_object_fini() instead > i915_gem_object.c:110: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst > * Mark up the object's coherency levels for a given cache_level > i915_gem_object.c:110: warning: missing initial short description on line: > * Mark up the object's coherency levels for a given cache_level > i915_gem_object.c:457: warning: No description found for return value of 'i915_gem_object_read_from_page' > > Signed-off-by: Randy Dunlap <rdunlap@infradead.org> > Reported-by: kernel test robot <lkp@intel.com> > Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> > Cc: Matthew Auld <matthew.auld@intel.com> > Cc: Jani Nikula <jani.nikula@linux.intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Cc: intel-gfx@lists.freedesktop.org Reviewed-by: Matthew Auld <matthew.auld@intel.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/gem: placate scripts/kernel-doc 2021-11-23 5:09 ` Randy Dunlap ` (3 preceding siblings ...) (?) @ 2021-11-23 17:16 ` Patchwork -1 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2021-11-23 17:16 UTC (permalink / raw) To: Randy Dunlap; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5281 bytes --] == Series Details == Series: drm/i915/gem: placate scripts/kernel-doc URL : https://patchwork.freedesktop.org/series/97190/ State : success == Summary == CI Bug Log - changes from CI_DRM_10917 -> Patchwork_21664 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/index.html Participating hosts (40 -> 34) ------------------------------ Additional (1): fi-kbl-soraka Missing (7): bat-dg1-6 fi-tgl-u2 fi-bsw-cyan bat-adlp-6 bat-adlp-4 bat-jsl-2 bat-jsl-1 Known issues ------------ Here are the changes found in Patchwork_21664 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@semaphore: - fi-bdw-5557u: NOTRUN -> [SKIP][1] ([fdo#109271]) +31 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html * igt@gem_exec_fence@basic-busy@bcs0: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271]) +2 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html * igt@gem_exec_suspend@basic-s0: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][3] ([i915#4221]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-soraka/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s3: - fi-skl-6600u: [PASS][4] -> [FAIL][5] ([i915#4547]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html * igt@i915_selftest@live@hangcheck: - fi-snb-2600: [PASS][7] -> [INCOMPLETE][8] ([i915#3921]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-snb-2600/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-snb-2600/igt@i915_selftest@live@hangcheck.html * igt@kms_chamelium@dp-crc-fast: - fi-bdw-5557u: NOTRUN -> [SKIP][9] ([fdo#109271] / [fdo#111827]) +8 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-bdw-5557u/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-edid-read: - fi-kbl-8809g: NOTRUN -> [SKIP][10] ([fdo#109271] / [fdo#111827]) +8 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-kbl-8809g: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#533]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_psr@cursor_plane_move: - fi-kbl-8809g: NOTRUN -> [SKIP][12] ([fdo#109271]) +41 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@kms_psr@cursor_plane_move.html #### Possible fixes #### * igt@core_auth@basic-auth: - fi-kbl-8809g: [FAIL][13] -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-kbl-8809g/igt@core_auth@basic-auth.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-kbl-8809g/igt@core_auth@basic-auth.html #### Warnings #### * igt@runner@aborted: - fi-skl-6600u: [FAIL][15] ([i915#2722] / [i915#3363] / [i915#4312]) -> [FAIL][16] ([i915#3363] / [i915#4312]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/fi-skl-6600u/igt@runner@aborted.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/fi-skl-6600u/igt@runner@aborted.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 [i915#4221]: https://gitlab.freedesktop.org/drm/intel/issues/4221 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * Linux: CI_DRM_10917 -> Patchwork_21664 CI-20190529: 20190529 CI_DRM_10917: de9a03c2007f3c69c5fa86ef007841a4a9194aac @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6286: cdcbf81f734fdb1d102e84490e49e9fec23760cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_21664: 960cb066fb2369728d369f58fd4601e250486664 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 960cb066fb23 drm/i915/gem: placate scripts/kernel-doc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/index.html [-- Attachment #2: Type: text/html, Size: 6763 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/gem: placate scripts/kernel-doc 2021-11-23 5:09 ` Randy Dunlap ` (4 preceding siblings ...) (?) @ 2021-11-23 19:05 ` Patchwork -1 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2021-11-23 19:05 UTC (permalink / raw) To: Randy Dunlap; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 30263 bytes --] == Series Details == Series: drm/i915/gem: placate scripts/kernel-doc URL : https://patchwork.freedesktop.org/series/97190/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10917_full -> Patchwork_21664_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_21664_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_21664_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-rkl Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_21664_full: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@close-race: - shard-kbl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl6/igt@gem_busy@close-race.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@gem_busy@close-race.html * igt@gem_exec_capture@pi@rcs0: - shard-skl: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl2/igt@gem_exec_capture@pi@rcs0.html * igt@kms_cursor_legacy@cursora-vs-flipa-atomic: - shard-skl: NOTRUN -> [DMESG-WARN][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl2/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html * igt@kms_flip@busy-flip@b-edp1: - shard-skl: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-skl8/igt@kms_flip@busy-flip@b-edp1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl3/igt@kms_flip@busy-flip@b-edp1.html Known issues ------------ Here are the changes found in Patchwork_21664_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_capture@pi@vecs0: - shard-iclb: NOTRUN -> [INCOMPLETE][7] ([i915#3371]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb8/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fair@basic-deadline: - shard-skl: NOTRUN -> [FAIL][8] ([i915#2846]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb8/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-glk: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-iclb: [PASS][13] -> [FAIL][14] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb7/igt@gem_exec_fair@basic-pace@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-kbl: [PASS][15] -> [FAIL][16] ([i915#2842]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_params@no-vebox: - shard-tglb: NOTRUN -> [SKIP][17] ([fdo#109283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@gem_exec_params@no-vebox.html * igt@gem_huc_copy@huc-copy: - shard-skl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#2190]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl10/igt@gem_huc_copy@huc-copy.html * igt@gem_pread@exhaustion: - shard-apl: NOTRUN -> [WARN][19] ([i915#2658]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl6/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][20] ([i915#2658]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl4/igt@gem_pwrite@basic-exhaustion.html * igt@gen9_exec_parse@allowed-single: - shard-skl: [PASS][21] -> [DMESG-WARN][22] ([i915#1436] / [i915#716]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-skl6/igt@gen9_exec_parse@allowed-single.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl7/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc5-psr: - shard-skl: [PASS][23] -> [INCOMPLETE][24] ([i915#198]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-skl9/igt@i915_pm_dc@dc5-psr.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl9/igt@i915_pm_dc@dc5-psr.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-skl: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#3777]) +1 similar issue [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-kbl: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#3777]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][27] ([i915#3763]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-apl: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#3777]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][29] ([fdo#111615]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-kbl: NOTRUN -> [SKIP][30] ([fdo#109271]) +120 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-skl: NOTRUN -> [FAIL][31] ([i915#3743]) +2 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-kbl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#3886]) +5 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl2/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][33] ([i915#3689]) +4 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-skl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3886]) +16 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][35] ([i915#3689] / [i915#3886]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#3886]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl6/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cdclk@mode-transition: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271]) +38 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl6/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium@hdmi-hpd-storm: - shard-kbl: NOTRUN -> [SKIP][38] ([fdo#109271] / [fdo#111827]) +7 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl4/igt@kms_chamelium@hdmi-hpd-storm.html * igt@kms_chamelium@vga-hpd-after-suspend: - shard-skl: NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +24 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl7/igt@kms_chamelium@vga-hpd-after-suspend.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-tglb: NOTRUN -> [SKIP][40] ([fdo#109284] / [fdo#111827]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color@pipe-b-ctm-0-5: - shard-skl: NOTRUN -> [DMESG-WARN][41] ([i915#1982]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl8/igt@kms_color@pipe-b-ctm-0-5.html * igt@kms_color_chamelium@pipe-b-degamma: - shard-apl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl6/igt@kms_color_chamelium@pipe-b-degamma.html * igt@kms_content_protection@legacy: - shard-kbl: NOTRUN -> [TIMEOUT][43] ([i915#1319]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent: - shard-kbl: NOTRUN -> [FAIL][44] ([i915#2105]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#3359]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-skl: NOTRUN -> [FAIL][46] ([i915#2346]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy: - shard-skl: [PASS][47] -> [FAIL][48] ([i915#2346]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1: - shard-glk: [PASS][49] -> [FAIL][50] ([i915#2122]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-skl: [PASS][51] -> [FAIL][52] ([i915#79]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: - shard-tglb: [PASS][53] -> [DMESG-WARN][54] ([i915#2411] / [i915#2867]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb5/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb6/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1: - shard-iclb: [PASS][55] -> [DMESG-WARN][56] ([i915#2867]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb3/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb7/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-apl: [PASS][57] -> [DMESG-WARN][58] ([i915#180]) +7 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-apl4/igt@kms_flip@flip-vs-suspend@a-dp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl8/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-kbl: [PASS][59] -> [INCOMPLETE][60] ([i915#1982]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-skl: NOTRUN -> [SKIP][61] ([fdo#109271]) +281 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl8/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-glk: [PASS][62] -> [FAIL][63] ([i915#2546]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-tglb: [PASS][64] -> [INCOMPLETE][65] ([i915#2828] / [i915#456]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-suspend.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-tglb: NOTRUN -> [SKIP][66] ([fdo#111825]) +11 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-tglb: [PASS][67] -> [INCOMPLETE][68] ([i915#2411] / [i915#456]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb5/igt@kms_frontbuffer_tracking@psr-suspend.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_pipe_crc_basic@read-crc-pipe-d: - shard-kbl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#533]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@kms_pipe_crc_basic@read-crc-pipe-d.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][70] -> [DMESG-WARN][71] ([i915#180]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-tglb: [PASS][72] -> [INCOMPLETE][73] ([i915#4182]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb: - shard-skl: NOTRUN -> [FAIL][74] ([i915#265]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl8/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: - shard-skl: NOTRUN -> [FAIL][75] ([fdo#108145] / [i915#265]) +6 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl2/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-apl: NOTRUN -> [FAIL][76] ([i915#265]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_lowres@pipe-c-tiling-none: - shard-tglb: NOTRUN -> [SKIP][77] ([i915#3536]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_plane_lowres@pipe-c-tiling-none.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2: - shard-kbl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#658]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl2/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-skl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#658]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_su@frontbuffer: - shard-tglb: NOTRUN -> [SKIP][80] ([i915#1911]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_psr2_su@frontbuffer.html * igt@kms_rotation_crc@primary-rotation-270: - shard-iclb: [PASS][81] -> [DMESG-WARN][82] ([i915#4391]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb3/igt@kms_rotation_crc@primary-rotation-270.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_sysfs_edid_timing: - shard-apl: NOTRUN -> [FAIL][83] ([IGT#2]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl4/igt@kms_sysfs_edid_timing.html - shard-tglb: [PASS][84] -> [FAIL][85] ([IGT#2]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb5/igt@kms_sysfs_edid_timing.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb6/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-apl: [PASS][86] -> [DMESG-WARN][87] ([i915#180] / [i915#295]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-apl8/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-idle: - shard-skl: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#533]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl2/igt@kms_vblank@pipe-d-wait-idle.html * igt@kms_writeback@writeback-fb-id: - shard-skl: NOTRUN -> [SKIP][89] ([fdo#109271] / [i915#2437]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglb: NOTRUN -> [SKIP][90] ([i915#2437]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@module-unload: - shard-kbl: [PASS][91] -> [INCOMPLETE][92] ([i915#262]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl1/igt@perf_pmu@module-unload.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@perf_pmu@module-unload.html * igt@sysfs_clients@busy: - shard-skl: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#2994]) +4 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl8/igt@sysfs_clients@busy.html * igt@sysfs_clients@recycle: - shard-kbl: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#2994]) +3 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@sysfs_clients@recycle.html - shard-tglb: NOTRUN -> [SKIP][95] ([i915#2994]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb3/igt@sysfs_clients@recycle.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][96] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb5/igt@gem_eio@unwedge-stress.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb6/igt@gem_eio@unwedge-stress.html * igt@gem_exec_capture@pi@vcs0: - shard-iclb: [INCOMPLETE][98] ([i915#2369] / [i915#3371]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb2/igt@gem_exec_capture@pi@vcs0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb8/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [FAIL][100] ([i915#2842]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb1/igt@gem_exec_fair@basic-none-share@rcs0.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb4/igt@gem_exec_fair@basic-none-share@rcs0.html - shard-tglb: [FAIL][102] ([i915#2842]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-kbl: [FAIL][104] ([i915#2842]) -> [PASS][105] +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s3: - shard-tglb: [INCOMPLETE][106] ([i915#456]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb7/igt@gem_exec_suspend@basic-s3.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb1/igt@gem_exec_suspend@basic-s3.html * igt@gem_exec_whisper@basic-forked-all: - shard-glk: [DMESG-WARN][108] ([i915#118]) -> [PASS][109] +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-glk2/igt@gem_exec_whisper@basic-forked-all.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-glk4/igt@gem_exec_whisper@basic-forked-all.html * igt@i915_module_load@reload-no-display: - shard-tglb: [DMESG-WARN][110] ([i915#2867]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-tglb3/igt@i915_module_load@reload-no-display.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-tglb6/igt@i915_module_load@reload-no-display.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][112] ([i915#454]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rpm@pm-caching: - shard-kbl: [INCOMPLETE][114] ([i915#151]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl7/igt@i915_pm_rpm@pm-caching.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl1/igt@i915_pm_rpm@pm-caching.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-apl: [DMESG-WARN][116] ([i915#180]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-apl2/igt@i915_suspend@fence-restore-tiled2untiled.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs: - shard-glk: [DMESG-WARN][118] ([i915#118] / [i915#1888]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-glk2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-glk4/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-kbl: [DMESG-WARN][120] ([i915#180]) -> [PASS][121] +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-iclb: [FAIL][122] ([i915#2346]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][124] ([i915#79]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-skl: [FAIL][126] ([i915#79]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1: - shard-apl: [DMESG-WARN][128] ([i915#180] / [i915#1982]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-iclb: [SKIP][130] ([i915#3701]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_flip_tiling@flip-change-tiling@dp-1-pipe-a-yf-ccs-to-yf: - shard-kbl: [INCOMPLETE][132] -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl7/igt@kms_flip_tiling@flip-change-tiling@dp-1-pipe-a-yf-ccs-to-yf.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl7/igt@kms_flip_tiling@flip-change-tiling@dp-1-pipe-a-yf-ccs-to-yf.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][134] ([fdo#109642] / [fdo#111068] / [i915#658]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb6/igt@kms_psr2_su@frontbuffer.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-iclb: [SKIP][136] ([fdo#109441]) -> [PASS][137] +1 similar issue [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [DMESG-WARN][138] ([i915#180] / [i915#295]) -> [PASS][139] [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@perf@polling-parameterized: - shard-skl: [FAIL][140] ([i915#1542]) -> [PASS][141] [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10917/shard-skl1/igt@perf@polling-parameterized.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/shard-skl4/igt@perf@polling-parameterized.html #### Warnings #### * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglb: [FAIL][142] ([i915#2851]) -> [FAIL][143] ([i915#2842]) [142]: https: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21664/index.html [-- Attachment #2: Type: text/html, Size: 33425 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-11-23 19:05 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-11-23 5:09 [Intel-gfx] [PATCH] drm/i915/gem: placate scripts/kernel-doc Randy Dunlap 2021-11-23 5:09 ` Randy Dunlap 2021-11-23 5:24 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork 2021-11-23 5:56 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork 2021-11-23 9:44 ` Matthew Auld 2021-11-23 17:26 ` Vudum, Lakshminarayana 2021-11-23 9:29 ` [Intel-gfx] [PATCH] " Matthew Auld 2021-11-23 9:29 ` Matthew Auld 2021-11-23 17:16 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2021-11-23 19:05 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.