From: kernel test robot <lkp@intel.com>
To: "Christian König" <ckoenig.leichtzumerken@gmail.com>,
intel-gfx@lists.freedesktop.org
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [Intel-gfx] [PATCH 5/5] drm/debugfs: remove debugfs_root pointer from minor
Date: Wed, 29 Mar 2023 10:48:03 +0800 [thread overview]
Message-ID: <202303291026.iRc2NXSy-lkp@intel.com> (raw)
In-Reply-To: <20230328143709.86644-5-christian.koenig@amd.com>
Hi Christian,
I love your patch! Yet something to improve:
[auto build test ERROR on drm-tip/drm-tip]
url: https://github.com/intel-lab-lkp/linux/commits/Christian-K-nig/drm-debugfs-rework-debugfs-directory-creation-v2/20230328-223907
base: git://anongit.freedesktop.org/drm/drm-tip drm-tip
patch link: https://lore.kernel.org/r/20230328143709.86644-5-christian.koenig%40amd.com
patch subject: [Intel-gfx] [PATCH 5/5] drm/debugfs: remove debugfs_root pointer from minor
config: x86_64-defconfig (https://download.01.org/0day-ci/archive/20230329/202303291026.iRc2NXSy-lkp@intel.com/config)
compiler: gcc-11 (Debian 11.3.0-8) 11.3.0
reproduce (this is a W=1 build):
# https://github.com/intel-lab-lkp/linux/commit/a17b8a95102c9f2cf2b5cadadcf99c364dafed15
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Christian-K-nig/drm-debugfs-rework-debugfs-directory-creation-v2/20230328-223907
git checkout a17b8a95102c9f2cf2b5cadadcf99c364dafed15
# save the config file
mkdir build_dir && cp config build_dir/.config
make W=1 O=build_dir ARCH=x86_64 olddefconfig
make W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/gpu/drm/i915/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202303291026.iRc2NXSy-lkp@intel.com/
All errors (new ones prefixed by >>):
drivers/gpu/drm/i915/display/intel_hotplug.c: In function 'intel_hpd_debugfs_register':
>> drivers/gpu/drm/i915/display/intel_hotplug.c:950:64: error: 'struct drm_minor' has no member named 'debugfs_root'
950 | debugfs_create_bool("i915_ignore_long_hpd", 0644, minor->debugfs_root,
| ^~
--
drivers/gpu/drm/i915/display/intel_psr.c: In function 'intel_psr_debugfs_register':
>> drivers/gpu/drm/i915/display/intel_psr.c:2873:62: error: 'struct drm_minor' has no member named 'debugfs_root'
2873 | debugfs_create_file("i915_edp_psr_debug", 0644, minor->debugfs_root,
| ^~
drivers/gpu/drm/i915/display/intel_psr.c:2876:63: error: 'struct drm_minor' has no member named 'debugfs_root'
2876 | debugfs_create_file("i915_edp_psr_status", 0444, minor->debugfs_root,
| ^~
--
drivers/gpu/drm/i915/display/intel_wm.c: In function 'intel_wm_debugfs_register':
>> drivers/gpu/drm/i915/display/intel_wm.c:398:63: error: 'struct drm_minor' has no member named 'debugfs_root'
398 | debugfs_create_file("i915_pri_wm_latency", 0644, minor->debugfs_root,
| ^~
drivers/gpu/drm/i915/display/intel_wm.c:401:63: error: 'struct drm_minor' has no member named 'debugfs_root'
401 | debugfs_create_file("i915_spr_wm_latency", 0644, minor->debugfs_root,
| ^~
drivers/gpu/drm/i915/display/intel_wm.c:404:63: error: 'struct drm_minor' has no member named 'debugfs_root'
404 | debugfs_create_file("i915_cur_wm_latency", 0644, minor->debugfs_root,
| ^~
vim +950 drivers/gpu/drm/i915/display/intel_hotplug.c
1bed8b07342069e Jani Nikula 2022-09-16 941
1bed8b07342069e Jani Nikula 2022-09-16 942 void intel_hpd_debugfs_register(struct drm_i915_private *i915)
1bed8b07342069e Jani Nikula 2022-09-16 943 {
1bed8b07342069e Jani Nikula 2022-09-16 944 struct drm_minor *minor = i915->drm.primary;
1bed8b07342069e Jani Nikula 2022-09-16 945
a17b8a95102c9f2 Christian König 2023-03-28 946 debugfs_create_file("i915_hpd_storm_ctl", 0644, minor->dev->debugfs_root,
1bed8b07342069e Jani Nikula 2022-09-16 947 i915, &i915_hpd_storm_ctl_fops);
a17b8a95102c9f2 Christian König 2023-03-28 948 debugfs_create_file("i915_hpd_short_storm_ctl", 0644, minor->dev->debugfs_root,
1bed8b07342069e Jani Nikula 2022-09-16 949 i915, &i915_hpd_short_storm_ctl_fops);
b0fbef65e227ad4 Vinod Govindapillai 2023-02-15 @950 debugfs_create_bool("i915_ignore_long_hpd", 0644, minor->debugfs_root,
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-03-29 2:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-28 14:37 [Intel-gfx] [PATCH 1/5] drm/debugfs: drop debugfs_init() for the render and accel node v2 Christian König
2023-03-28 14:37 ` [Intel-gfx] [PATCH 2/5] drm/debugfs: rework debugfs directory creation v2 Christian König
2023-03-28 14:37 ` [Intel-gfx] [PATCH 3/5] drm/debugfs: remove dev->debugfs_list and debugfs_mutex v2 Christian König
2023-03-28 14:37 ` [Intel-gfx] [PATCH 4/5] drm/debugfs: rework drm_debugfs_create_files implementation Christian König
2023-03-28 14:37 ` [Intel-gfx] [PATCH 5/5] drm/debugfs: remove debugfs_root pointer from minor Christian König
2023-03-29 2:48 ` kernel test robot [this message]
2023-03-28 23:21 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for series starting with [1/5] drm/debugfs: drop debugfs_init() for the render and accel node v2 Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-03-29 13:21 [Intel-gfx] [PATCH 1/5] " Christian König
2023-03-29 13:21 ` [Intel-gfx] [PATCH 5/5] drm/debugfs: remove debugfs_root pointer from minor Christian König
2023-03-31 9:07 [Intel-gfx] [PATCH 1/5] drm/debugfs: drop debugfs_init() for the render and accel node v2 Christian König
2023-03-31 9:07 ` [Intel-gfx] [PATCH 5/5] drm/debugfs: remove debugfs_root pointer from minor Christian König
2023-04-06 12:30 ` Jani Nikula
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202303291026.iRc2NXSy-lkp@intel.com \
--to=lkp@intel.com \
--cc=ckoenig.leichtzumerken@gmail.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=oe-kbuild-all@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.