* [RFC PATCH 0/2] use new debugfs device-centered functions @ 2025-08-08 22:52 Brahmajit Das 2025-08-08 22:52 ` [RFC PATCH 1/2] drm/i915/debugfs: " Brahmajit Das ` (3 more replies) 0 siblings, 4 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-08 22:52 UTC (permalink / raw) To: intel-gfx, intel-xe, dri-devel, linux-next Cc: jani.nikula, rodrigo.vivi, joonas.lahtinen, tursulin, simona Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Refer: https://docs.kernel.org/gpu/todo.html#clean-up-the-debugfs-support Brahmajit Das (2): drm/i915/debugfs: use new debugfs device-centered functions drm/i915: use new debugfs device-centered functions drivers/gpu/drm/i915/display/intel_display_debugfs.c | 5 ++--- drivers/gpu/drm/i915/i915_debugfs.c | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) -- 2.50.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [RFC PATCH 1/2] drm/i915/debugfs: use new debugfs device-centered functions 2025-08-08 22:52 [RFC PATCH 0/2] use new debugfs device-centered functions Brahmajit Das @ 2025-08-08 22:52 ` Brahmajit Das 2025-08-08 22:52 ` [RFC PATCH 2/2] drm/i915: " Brahmajit Das ` (2 subsequent siblings) 3 siblings, 0 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-08 22:52 UTC (permalink / raw) To: intel-gfx, intel-xe, dri-devel, linux-next Cc: jani.nikula, rodrigo.vivi, joonas.lahtinen, tursulin, simona Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das <listout@listout.xyz> --- drivers/gpu/drm/i915/i915_debugfs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index 967c0501e91e..4c3065d3aca3 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -699,7 +699,7 @@ static const struct file_operations i915_forcewake_fops = { .release = i915_forcewake_release, }; -static const struct drm_info_list i915_debugfs_list[] = { +static const struct drm_debugfs_info i915_debugfs_list[] = { {"i915_capabilities", i915_capabilities, 0}, {"i915_gem_objects", i915_gem_object_info, 0}, {"i915_frequency_info", i915_frequency_info, 0}, @@ -737,9 +737,8 @@ void i915_debugfs_register(struct drm_i915_private *dev_priv) i915_debugfs_files[i].fops); } - drm_debugfs_create_files(i915_debugfs_list, - ARRAY_SIZE(i915_debugfs_list), - minor->debugfs_root, minor); + drm_debugfs_add_files(minor->dev, i915_debugfs_list, + ARRAY_SIZE(i915_debugfs_list)); i915_gpu_error_debugfs_register(dev_priv); } -- 2.50.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [RFC PATCH 2/2] drm/i915: use new debugfs device-centered functions 2025-08-08 22:52 [RFC PATCH 0/2] use new debugfs device-centered functions Brahmajit Das 2025-08-08 22:52 ` [RFC PATCH 1/2] drm/i915/debugfs: " Brahmajit Das @ 2025-08-08 22:52 ` Brahmajit Das 2025-08-11 10:23 ` [RFC PATCH 0/2] " Jani Nikula 2025-08-11 13:49 ` ✗ LGCI.VerificationFailed: failure for use new debugfs device-centered functions Patchwork 3 siblings, 0 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-08 22:52 UTC (permalink / raw) To: intel-gfx, intel-xe, dri-devel, linux-next Cc: jani.nikula, rodrigo.vivi, joonas.lahtinen, tursulin, simona Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das <listout@listout.xyz> --- drivers/gpu/drm/i915/display/intel_display_debugfs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c index ce3f9810c42d..92db369f1b94 100644 --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c @@ -805,7 +805,7 @@ static const struct file_operations i915_fifo_underrun_reset_ops = { .llseek = default_llseek, }; -static const struct drm_info_list intel_display_debugfs_list[] = { +static const struct drm_debugfs_info intel_display_debugfs_list[] = { {"intel_display_caps", intel_display_caps, 0}, {"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0}, {"i915_sr_status", i915_sr_status, 0}, @@ -825,9 +825,8 @@ void intel_display_debugfs_register(struct intel_display *display) debugfs_create_file("i915_fifo_underrun_reset", 0644, minor->debugfs_root, display, &i915_fifo_underrun_reset_ops); - drm_debugfs_create_files(intel_display_debugfs_list, - ARRAY_SIZE(intel_display_debugfs_list), - minor->debugfs_root, minor); + drm_debugfs_add_files(minor->dev, intel_display_debugfs_list, + ARRAY_SIZE(intel_display_debugfs_list)); intel_bios_debugfs_register(display); intel_cdclk_debugfs_register(display); -- 2.50.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [RFC PATCH 0/2] use new debugfs device-centered functions 2025-08-08 22:52 [RFC PATCH 0/2] use new debugfs device-centered functions Brahmajit Das 2025-08-08 22:52 ` [RFC PATCH 1/2] drm/i915/debugfs: " Brahmajit Das 2025-08-08 22:52 ` [RFC PATCH 2/2] drm/i915: " Brahmajit Das @ 2025-08-11 10:23 ` Jani Nikula 2025-08-11 13:11 ` Brahmajit Das ` (3 more replies) 2025-08-11 13:49 ` ✗ LGCI.VerificationFailed: failure for use new debugfs device-centered functions Patchwork 3 siblings, 4 replies; 13+ messages in thread From: Jani Nikula @ 2025-08-11 10:23 UTC (permalink / raw) To: Brahmajit Das, intel-gfx, intel-xe, dri-devel, linux-next Cc: rodrigo.vivi, joonas.lahtinen, tursulin, simona On Sat, 09 Aug 2025, Brahmajit Das <listout@listout.xyz> wrote: > Replace the use of drm_debugfs_create_files() with the new > drm_debugfs_add_files() function, which centers the debugfs files > management on the drm_device instead of drm_minor. Please base your patches on top of drm-tip. They no longer apply. BR, Jani. > > Refer: > https://docs.kernel.org/gpu/todo.html#clean-up-the-debugfs-support > > Brahmajit Das (2): > drm/i915/debugfs: use new debugfs device-centered functions > drm/i915: use new debugfs device-centered functions > > drivers/gpu/drm/i915/display/intel_display_debugfs.c | 5 ++--- > drivers/gpu/drm/i915/i915_debugfs.c | 5 ++--- > 2 files changed, 4 insertions(+), 6 deletions(-) -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* [RFC PATCH 0/2] use new debugfs device-centered functions 2025-08-11 10:23 ` [RFC PATCH 0/2] " Jani Nikula @ 2025-08-11 13:11 ` Brahmajit Das 2025-08-11 13:11 ` [RFC PATCH 1/2] drm/i915/debugfs: " Brahmajit Das 2025-08-11 13:11 ` [RFC PATCH 2/2] drm/i915: " Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH 0/2] " Brahmajit Das ` (2 subsequent siblings) 3 siblings, 2 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-11 13:11 UTC (permalink / raw) To: jani.nikula Cc: dri-devel, intel-gfx, intel-xe, joonas.lahtinen, linux-next, listout, rodrigo.vivi, simona, tursulin Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device. Refer: https://docs.kernel.org/gpu/todo.html#clean-up-the-debugfs-support Brahmajit Das (2): drm/i915/debugfs: use new debugfs device-centered functions drm/i915: use new debugfs device-centered functions drivers/gpu/drm/i915/display/intel_display_debugfs.c | 7 +++---- drivers/gpu/drm/i915/i915_debugfs.c | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) -- 2.50.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [RFC PATCH 1/2] drm/i915/debugfs: use new debugfs device-centered functions 2025-08-11 13:11 ` Brahmajit Das @ 2025-08-11 13:11 ` Brahmajit Das 2025-08-11 13:11 ` [RFC PATCH 2/2] drm/i915: " Brahmajit Das 1 sibling, 0 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-11 13:11 UTC (permalink / raw) To: jani.nikula Cc: dri-devel, intel-gfx, intel-xe, joonas.lahtinen, linux-next, listout, rodrigo.vivi, simona, tursulin Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das <listout@listout.xyz> --- drivers/gpu/drm/i915/i915_debugfs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index 23fa098c4479..e411ff3ac1fd 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -699,7 +699,7 @@ static const struct file_operations i915_forcewake_fops = { .release = i915_forcewake_release, }; -static const struct drm_info_list i915_debugfs_list[] = { +static const struct drm_debugfs_info i915_debugfs_list[] = { {"i915_capabilities", i915_capabilities, 0}, {"i915_gem_objects", i915_gem_object_info, 0}, {"i915_frequency_info", i915_frequency_info, 0}, @@ -735,9 +735,8 @@ void i915_debugfs_register(struct drm_i915_private *i915) i915_debugfs_files[i].fops); } - drm_debugfs_create_files(i915_debugfs_list, - ARRAY_SIZE(i915_debugfs_list), - debugfs_root, i915->drm.primary); + drm_debugfs_add_files(&i915->drm, i915_debugfs_list, + ARRAY_SIZE(i915_debugfs_list)); i915_gpu_error_debugfs_register(i915); } -- 2.50.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [RFC PATCH 2/2] drm/i915: use new debugfs device-centered functions 2025-08-11 13:11 ` Brahmajit Das 2025-08-11 13:11 ` [RFC PATCH 1/2] drm/i915/debugfs: " Brahmajit Das @ 2025-08-11 13:11 ` Brahmajit Das 1 sibling, 0 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-11 13:11 UTC (permalink / raw) To: jani.nikula Cc: dri-devel, intel-gfx, intel-xe, joonas.lahtinen, linux-next, listout, rodrigo.vivi, simona, tursulin Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das <listout@listout.xyz> --- drivers/gpu/drm/i915/display/intel_display_debugfs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c index 10dddec3796f..e191665f7832 100644 --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c @@ -805,7 +805,7 @@ static const struct file_operations i915_fifo_underrun_reset_ops = { .llseek = default_llseek, }; -static const struct drm_info_list intel_display_debugfs_list[] = { +static const struct drm_debugfs_info intel_display_debugfs_list[] = { {"intel_display_caps", intel_display_caps, 0}, {"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0}, {"i915_sr_status", i915_sr_status, 0}, @@ -825,9 +825,8 @@ void intel_display_debugfs_register(struct intel_display *display) debugfs_create_file("i915_fifo_underrun_reset", 0644, debugfs_root, display, &i915_fifo_underrun_reset_ops); - drm_debugfs_create_files(intel_display_debugfs_list, - ARRAY_SIZE(intel_display_debugfs_list), - debugfs_root, display->drm->primary); + drm_debugfs_add_files(display->drm, intel_display_debugfs_list, + ARRAY_SIZE(intel_display_debugfs_list)); intel_bios_debugfs_register(display); intel_cdclk_debugfs_register(display); -- 2.50.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [RFC PATCH 0/2] use new debugfs device-centered functions 2025-08-11 10:23 ` [RFC PATCH 0/2] " Jani Nikula 2025-08-11 13:11 ` Brahmajit Das @ 2025-08-11 13:17 ` Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH v2 1/2] drm/i915/debugfs: " Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH v2 2/2] drm/i915: " Brahmajit Das 2025-08-11 14:27 ` ✗ LGCI.VerificationFailed: failure for series starting with [RFC,1/2] drm/i915/debugfs: " Patchwork 2025-08-13 10:44 ` ✗ i915.CI.BAT: failure for series starting with [RFC,1/2] drm/i915/debugfs: use new debugfs device-centered functions (rev2) Patchwork 3 siblings, 2 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-11 13:17 UTC (permalink / raw) To: jani.nikula Cc: dri-devel, intel-gfx, intel-xe, joonas.lahtinen, linux-next, listout, rodrigo.vivi, simona, tursulin Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device. V2 changes: based on drm-tip. Refer: https://docs.kernel.org/gpu/todo.html#clean-up-the-debugfs-support Brahmajit Das (2): drm/i915/debugfs: use new debugfs device-centered functions drm/i915: use new debugfs device-centered functions drivers/gpu/drm/i915/display/intel_display_debugfs.c | 7 +++---- drivers/gpu/drm/i915/i915_debugfs.c | 7 +++---- 2 files changed, 6 insertions(+), 8 deletions(-) -- 2.50.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [RFC PATCH v2 1/2] drm/i915/debugfs: use new debugfs device-centered functions 2025-08-11 13:17 ` [RFC PATCH 0/2] " Brahmajit Das @ 2025-08-11 13:17 ` Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH v2 2/2] drm/i915: " Brahmajit Das 1 sibling, 0 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-11 13:17 UTC (permalink / raw) To: jani.nikula Cc: dri-devel, intel-gfx, intel-xe, joonas.lahtinen, linux-next, listout, rodrigo.vivi, simona, tursulin Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das <listout@listout.xyz> --- drivers/gpu/drm/i915/i915_debugfs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index 23fa098c4479..e411ff3ac1fd 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -699,7 +699,7 @@ static const struct file_operations i915_forcewake_fops = { .release = i915_forcewake_release, }; -static const struct drm_info_list i915_debugfs_list[] = { +static const struct drm_debugfs_info i915_debugfs_list[] = { {"i915_capabilities", i915_capabilities, 0}, {"i915_gem_objects", i915_gem_object_info, 0}, {"i915_frequency_info", i915_frequency_info, 0}, @@ -735,9 +735,8 @@ void i915_debugfs_register(struct drm_i915_private *i915) i915_debugfs_files[i].fops); } - drm_debugfs_create_files(i915_debugfs_list, - ARRAY_SIZE(i915_debugfs_list), - debugfs_root, i915->drm.primary); + drm_debugfs_add_files(&i915->drm, i915_debugfs_list, + ARRAY_SIZE(i915_debugfs_list)); i915_gpu_error_debugfs_register(i915); } -- 2.50.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [RFC PATCH v2 2/2] drm/i915: use new debugfs device-centered functions 2025-08-11 13:17 ` [RFC PATCH 0/2] " Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH v2 1/2] drm/i915/debugfs: " Brahmajit Das @ 2025-08-11 13:17 ` Brahmajit Das 1 sibling, 0 replies; 13+ messages in thread From: Brahmajit Das @ 2025-08-11 13:17 UTC (permalink / raw) To: jani.nikula Cc: dri-devel, intel-gfx, intel-xe, joonas.lahtinen, linux-next, listout, rodrigo.vivi, simona, tursulin Replace the use of drm_debugfs_create_files() with the new drm_debugfs_add_files() function, which centers the debugfs files management on the drm_device instead of drm_minor. Signed-off-by: Brahmajit Das <listout@listout.xyz> --- drivers/gpu/drm/i915/display/intel_display_debugfs.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c index 10dddec3796f..e191665f7832 100644 --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c @@ -805,7 +805,7 @@ static const struct file_operations i915_fifo_underrun_reset_ops = { .llseek = default_llseek, }; -static const struct drm_info_list intel_display_debugfs_list[] = { +static const struct drm_debugfs_info intel_display_debugfs_list[] = { {"intel_display_caps", intel_display_caps, 0}, {"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0}, {"i915_sr_status", i915_sr_status, 0}, @@ -825,9 +825,8 @@ void intel_display_debugfs_register(struct intel_display *display) debugfs_create_file("i915_fifo_underrun_reset", 0644, debugfs_root, display, &i915_fifo_underrun_reset_ops); - drm_debugfs_create_files(intel_display_debugfs_list, - ARRAY_SIZE(intel_display_debugfs_list), - debugfs_root, display->drm->primary); + drm_debugfs_add_files(display->drm, intel_display_debugfs_list, + ARRAY_SIZE(intel_display_debugfs_list)); intel_bios_debugfs_register(display); intel_cdclk_debugfs_register(display); -- 2.50.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✗ LGCI.VerificationFailed: failure for series starting with [RFC,1/2] drm/i915/debugfs: use new debugfs device-centered functions 2025-08-11 10:23 ` [RFC PATCH 0/2] " Jani Nikula 2025-08-11 13:11 ` Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH 0/2] " Brahmajit Das @ 2025-08-11 14:27 ` Patchwork 2025-08-13 10:44 ` ✗ i915.CI.BAT: failure for series starting with [RFC,1/2] drm/i915/debugfs: use new debugfs device-centered functions (rev2) Patchwork 3 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-08-11 14:27 UTC (permalink / raw) To: Brahmajit Das; +Cc: intel-gfx == Series Details == Series: series starting with [RFC,1/2] drm/i915/debugfs: use new debugfs device-centered functions URL : https://patchwork.freedesktop.org/series/152777/ State : failure == Summary == Address 'listout@listout.xyz' is not on the allowlist, which prevents CI from being triggered for this patch. If you want Intel GFX CI to accept this address, please contact the script maintainers at i915-ci-infra@lists.freedesktop.org. Exception occurred during validation, bailing out! ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.BAT: failure for series starting with [RFC,1/2] drm/i915/debugfs: use new debugfs device-centered functions (rev2) 2025-08-11 10:23 ` [RFC PATCH 0/2] " Jani Nikula ` (2 preceding siblings ...) 2025-08-11 14:27 ` ✗ LGCI.VerificationFailed: failure for series starting with [RFC,1/2] drm/i915/debugfs: " Patchwork @ 2025-08-13 10:44 ` Patchwork 3 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-08-13 10:44 UTC (permalink / raw) To: Brahmajit Das; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 16757 bytes --] == Series Details == Series: series starting with [RFC,1/2] drm/i915/debugfs: use new debugfs device-centered functions (rev2) URL : https://patchwork.freedesktop.org/series/152777/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16994 -> Patchwork_152777v2 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_152777v2 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_152777v2, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_152777v2/index.html Participating hosts (43 -> 43) ------------------------------ Additional (1): bat-adls-6 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_152777v2: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@module-reload: - bat-atsm-1: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-atsm-1/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-atsm-1/igt@i915_pm_rpm@module-reload.html * igt@kms_dsc@dsc-basic: - bat-dg2-9: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-dg2-9/igt@kms_dsc@dsc-basic.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-dg2-9/igt@kms_dsc@dsc-basic.html - fi-cfl-8109u: NOTRUN -> [ABORT][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-cfl-8109u/igt@kms_dsc@dsc-basic.html - bat-dg2-8: [PASS][6] -> [ABORT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-dg2-8/igt@kms_dsc@dsc-basic.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-dg2-8/igt@kms_dsc@dsc-basic.html - bat-adls-6: NOTRUN -> [ABORT][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-adls-6/igt@kms_dsc@dsc-basic.html - bat-adlp-6: [PASS][9] -> [ABORT][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-adlp-6/igt@kms_dsc@dsc-basic.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-adlp-6/igt@kms_dsc@dsc-basic.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-rkl-11600: [PASS][11] -> [ABORT][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-rkl-11600/igt@kms_pm_rpm@basic-pci-d3-state.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-rkl-11600/igt@kms_pm_rpm@basic-pci-d3-state.html #### Warnings #### * igt@kms_dsc@dsc-basic: - bat-dg2-11: [SKIP][13] ([i915#3555] / [i915#3840]) -> [ABORT][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-dg2-11/igt@kms_dsc@dsc-basic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-dg2-11/igt@kms_dsc@dsc-basic.html - bat-rpls-4: [SKIP][15] ([i915#3555] / [i915#3840] / [i915#9886]) -> [ABORT][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-rpls-4/igt@kms_dsc@dsc-basic.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-rpls-4/igt@kms_dsc@dsc-basic.html - fi-kbl-7567u: [SKIP][17] -> [ABORT][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-kbl-7567u/igt@kms_dsc@dsc-basic.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-kbl-7567u/igt@kms_dsc@dsc-basic.html - fi-cfl-8700k: [SKIP][19] -> [ABORT][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-cfl-8700k/igt@kms_dsc@dsc-basic.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-cfl-8700k/igt@kms_dsc@dsc-basic.html - bat-twl-1: [SKIP][21] ([i915#9886]) -> [ABORT][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-twl-1/igt@kms_dsc@dsc-basic.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-twl-1/igt@kms_dsc@dsc-basic.html - bat-apl-1: [SKIP][23] -> [ABORT][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-apl-1/igt@kms_dsc@dsc-basic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-apl-1/igt@kms_dsc@dsc-basic.html - bat-dg2-14: [SKIP][25] ([i915#3555] / [i915#3840]) -> [ABORT][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-dg2-14/igt@kms_dsc@dsc-basic.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-dg2-14/igt@kms_dsc@dsc-basic.html - fi-elk-e7500: [SKIP][27] -> [ABORT][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-elk-e7500/igt@kms_dsc@dsc-basic.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-elk-e7500/igt@kms_dsc@dsc-basic.html - bat-arls-5: [SKIP][29] ([i915#9886]) -> [ABORT][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-arls-5/igt@kms_dsc@dsc-basic.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-arls-5/igt@kms_dsc@dsc-basic.html - bat-rplp-1: [SKIP][31] ([i915#3555] / [i915#3840]) -> [ABORT][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-rplp-1/igt@kms_dsc@dsc-basic.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-rplp-1/igt@kms_dsc@dsc-basic.html - fi-tgl-1115g4: [SKIP][33] ([i915#3555] / [i915#3840]) -> [ABORT][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-tgl-1115g4/igt@kms_dsc@dsc-basic.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-tgl-1115g4/igt@kms_dsc@dsc-basic.html - fi-cfl-guc: [SKIP][35] -> [ABORT][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-cfl-guc/igt@kms_dsc@dsc-basic.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-cfl-guc/igt@kms_dsc@dsc-basic.html - bat-mtlp-9: [SKIP][37] ([i915#3555] / [i915#3840] / [i915#9159]) -> [ABORT][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-mtlp-9/igt@kms_dsc@dsc-basic.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-mtlp-9/igt@kms_dsc@dsc-basic.html - bat-arls-6: [SKIP][39] ([i915#9886]) -> [ABORT][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-arls-6/igt@kms_dsc@dsc-basic.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-arls-6/igt@kms_dsc@dsc-basic.html - fi-hsw-4770: [SKIP][41] -> [ABORT][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-hsw-4770/igt@kms_dsc@dsc-basic.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-hsw-4770/igt@kms_dsc@dsc-basic.html - fi-ivb-3770: [SKIP][43] -> [ABORT][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-ivb-3770/igt@kms_dsc@dsc-basic.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-ivb-3770/igt@kms_dsc@dsc-basic.html - bat-mtlp-8: [SKIP][45] ([i915#3555] / [i915#3840] / [i915#9159]) -> [ABORT][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-mtlp-8/igt@kms_dsc@dsc-basic.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-mtlp-8/igt@kms_dsc@dsc-basic.html - fi-ilk-650: [SKIP][47] -> [ABORT][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-ilk-650/igt@kms_dsc@dsc-basic.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-ilk-650/igt@kms_dsc@dsc-basic.html - bat-jsl-1: [SKIP][49] ([i915#3555] / [i915#9886]) -> [ABORT][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-jsl-1/igt@kms_dsc@dsc-basic.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-jsl-1/igt@kms_dsc@dsc-basic.html - fi-bsw-n3050: [SKIP][51] -> [ABORT][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-bsw-n3050/igt@kms_dsc@dsc-basic.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-bsw-n3050/igt@kms_dsc@dsc-basic.html - fi-skl-6600u: [SKIP][53] -> [ABORT][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-skl-6600u/igt@kms_dsc@dsc-basic.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-skl-6600u/igt@kms_dsc@dsc-basic.html - bat-arlh-3: [SKIP][55] ([i915#9886]) -> [ABORT][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-arlh-3/igt@kms_dsc@dsc-basic.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-arlh-3/igt@kms_dsc@dsc-basic.html - fi-pnv-d510: [SKIP][57] -> [ABORT][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-pnv-d510/igt@kms_dsc@dsc-basic.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-pnv-d510/igt@kms_dsc@dsc-basic.html - bat-dg1-7: [SKIP][59] ([i915#3555] / [i915#3840]) -> [ABORT][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-dg1-7/igt@kms_dsc@dsc-basic.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-dg1-7/igt@kms_dsc@dsc-basic.html - fi-glk-j4005: [SKIP][61] -> [ABORT][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-glk-j4005/igt@kms_dsc@dsc-basic.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-glk-j4005/igt@kms_dsc@dsc-basic.html - bat-adlp-9: [SKIP][63] ([i915#3555] / [i915#3840]) -> [ABORT][64] [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-adlp-9/igt@kms_dsc@dsc-basic.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-adlp-9/igt@kms_dsc@dsc-basic.html - bat-twl-2: [SKIP][65] ([i915#9886]) -> [ABORT][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-twl-2/igt@kms_dsc@dsc-basic.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-twl-2/igt@kms_dsc@dsc-basic.html Known issues ------------ Here are the changes found in Patchwork_152777v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][67] ([i915#2190]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_tiled_pread_basic: - bat-adls-6: NOTRUN -> [SKIP][68] ([i915#3282]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-adls-6/igt@gem_tiled_pread_basic.html * igt@i915_module_load@load: - bat-mtlp-9: [PASS][69] -> [DMESG-WARN][70] ([i915#13494]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-mtlp-9/igt@i915_module_load@load.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-mtlp-9/igt@i915_module_load@load.html * igt@intel_hwmon@hwmon-read: - fi-cfl-8109u: NOTRUN -> [SKIP][71] +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-cfl-8109u/igt@intel_hwmon@hwmon-read.html - bat-adls-6: NOTRUN -> [SKIP][72] ([i915#7707]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-set-prop: - fi-cfl-8109u: NOTRUN -> [DMESG-WARN][73] ([i915#13735]) +38 other tests dmesg-warn [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-cfl-8109u/igt@kms_addfb_basic@invalid-set-prop.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][74] ([i915#4103]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - fi-cfl-8109u: NOTRUN -> [DMESG-WARN][75] ([i915#13735] / [i915#13890]) +7 other tests dmesg-warn [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-cfl-8109u/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-8809g: [PASS][76] -> [ABORT][77] ([i915#10553]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-kbl-8809g/igt@kms_pm_rpm@basic-pci-d3-state.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-kbl-8809g/igt@kms_pm_rpm@basic-pci-d3-state.html - fi-bsw-nick: [PASS][78] -> [ABORT][79] ([i915#10553]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-bsw-nick/igt@kms_pm_rpm@basic-pci-d3-state.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-bsw-nick/igt@kms_pm_rpm@basic-pci-d3-state.html - fi-kbl-guc: [PASS][80] -> [ABORT][81] ([i915#10553]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-kbl-guc/igt@kms_pm_rpm@basic-pci-d3-state.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-kbl-guc/igt@kms_pm_rpm@basic-pci-d3-state.html - bat-mtlp-6: [PASS][82] -> [ABORT][83] ([i915#10553]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-mtlp-6/igt@kms_pm_rpm@basic-pci-d3-state.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-mtlp-6/igt@kms_pm_rpm@basic-pci-d3-state.html - bat-dg1-6: [PASS][84] -> [ABORT][85] ([i915#10553]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-dg1-6/igt@kms_pm_rpm@basic-pci-d3-state.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-dg1-6/igt@kms_pm_rpm@basic-pci-d3-state.html - bat-kbl-2: [PASS][86] -> [ABORT][87] ([i915#10553]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-kbl-2/igt@kms_pm_rpm@basic-pci-d3-state.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-kbl-2/igt@kms_pm_rpm@basic-pci-d3-state.html - bat-arlh-2: [PASS][88] -> [ABORT][89] ([i915#10553]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/bat-arlh-2/igt@kms_pm_rpm@basic-pci-d3-state.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/bat-arlh-2/igt@kms_pm_rpm@basic-pci-d3-state.html - fi-kbl-x1275: [PASS][90] -> [ABORT][91] ([i915#10553]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-kbl-x1275/igt@kms_pm_rpm@basic-pci-d3-state.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-kbl-x1275/igt@kms_pm_rpm@basic-pci-d3-state.html #### Warnings #### * igt@i915_module_load@load: - fi-cfl-8109u: [ABORT][92] ([i915#14804]) -> [DMESG-WARN][93] ([i915#13735] / [i915#13890]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16994/fi-cfl-8109u/igt@i915_module_load@load.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/fi-cfl-8109u/igt@i915_module_load@load.html [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890 [i915#14804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14804 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * Linux: CI_DRM_16994 -> Patchwork_152777v2 CI-20190529: 20190529 CI_DRM_16994: 546fc742f08b8dbd3fa1486933c9b15085e11d13 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8493: 8493 Patchwork_152777v2: 546fc742f08b8dbd3fa1486933c9b15085e11d13 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152777v2/index.html [-- Attachment #2: Type: text/html, Size: 20332 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ LGCI.VerificationFailed: failure for use new debugfs device-centered functions 2025-08-08 22:52 [RFC PATCH 0/2] use new debugfs device-centered functions Brahmajit Das ` (2 preceding siblings ...) 2025-08-11 10:23 ` [RFC PATCH 0/2] " Jani Nikula @ 2025-08-11 13:49 ` Patchwork 3 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-08-11 13:49 UTC (permalink / raw) To: Brahmajit Das; +Cc: intel-gfx == Series Details == Series: use new debugfs device-centered functions URL : https://patchwork.freedesktop.org/series/152776/ State : failure == Summary == Address 'listout@listout.xyz' is not on the allowlist, which prevents CI from being triggered for this patch. If you want Intel GFX CI to accept this address, please contact the script maintainers at i915-ci-infra@lists.freedesktop.org. Exception occurred during validation, bailing out! ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-08-13 10:44 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-08-08 22:52 [RFC PATCH 0/2] use new debugfs device-centered functions Brahmajit Das 2025-08-08 22:52 ` [RFC PATCH 1/2] drm/i915/debugfs: " Brahmajit Das 2025-08-08 22:52 ` [RFC PATCH 2/2] drm/i915: " Brahmajit Das 2025-08-11 10:23 ` [RFC PATCH 0/2] " Jani Nikula 2025-08-11 13:11 ` Brahmajit Das 2025-08-11 13:11 ` [RFC PATCH 1/2] drm/i915/debugfs: " Brahmajit Das 2025-08-11 13:11 ` [RFC PATCH 2/2] drm/i915: " Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH 0/2] " Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH v2 1/2] drm/i915/debugfs: " Brahmajit Das 2025-08-11 13:17 ` [RFC PATCH v2 2/2] drm/i915: " Brahmajit Das 2025-08-11 14:27 ` ✗ LGCI.VerificationFailed: failure for series starting with [RFC,1/2] drm/i915/debugfs: " Patchwork 2025-08-13 10:44 ` ✗ i915.CI.BAT: failure for series starting with [RFC,1/2] drm/i915/debugfs: use new debugfs device-centered functions (rev2) Patchwork 2025-08-11 13:49 ` ✗ LGCI.VerificationFailed: failure for use new debugfs device-centered functions Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).