Intel-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Thomas Zimmermann <tzimmermann@suse.de>,
	simona@ffwll.ch, airlied@gmail.com, javierm@redhat.com,
	jfalempe@redhat.com
Cc: oe-kbuild-all@lists.linux.dev, dri-devel@lists.freedesktop.org,
	amd-gfx@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
	intel-xe@lists.freedesktop.org,
	"Thomas Zimmermann" <tzimmermann@suse.de>,
	"Alex Deucher" <alexander.deucher@amd.com>,
	"Christian König" <christian.koenig@amd.com>,
	"Xinhui Pan" <Xinhui.Pan@amd.com>
Subject: Re: [PATCH v2 10/11] drm/client: Make client support optional
Date: Sat, 5 Oct 2024 09:34:09 +0800	[thread overview]
Message-ID: <202410050927.Hgk0Kazl-lkp@intel.com> (raw)
In-Reply-To: <20241002131306.288618-11-tzimmermann@suse.de>

Hi Thomas,

kernel test robot noticed the following build errors:

[auto build test ERROR on next-20241002]
[cannot apply to drm-xe/drm-xe-next drm/drm-next drm-exynos/exynos-drm-next drm-intel/for-linux-next drm-intel/for-linux-next-fixes drm-misc/drm-misc-next drm-tip/drm-tip linus/master v6.12-rc1 v6.11 v6.11-rc7 v6.12-rc1]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]

url:    https://github.com/intel-lab-lkp/linux/commits/Thomas-Zimmermann/drm-i915-Select-DRM_CLIENT_SELECTION/20241002-211520
base:   next-20241002
patch link:    https://lore.kernel.org/r/20241002131306.288618-11-tzimmermann%40suse.de
patch subject: [PATCH v2 10/11] drm/client: Make client support optional
config: nios2-randconfig-r051-20241005 (https://download.01.org/0day-ci/archive/20241005/202410050927.Hgk0Kazl-lkp@intel.com/config)
compiler: nios2-linux-gcc (GCC) 14.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241005/202410050927.Hgk0Kazl-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202410050927.Hgk0Kazl-lkp@intel.com/

All errors (new ones prefixed by >>):

   nios2-linux-ld: drivers/gpu/drm/drm_debugfs.o: in function `drm_debugfs_dev_register':
>> drivers/gpu/drm/drm_debugfs.c:313:(.text+0x1240): undefined reference to `drm_client_debugfs_init'
>> drivers/gpu/drm/drm_debugfs.c:313:(.text+0x1240): relocation truncated to fit: R_NIOS2_CALL26 against `drm_client_debugfs_init'

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for GET_FREE_REGION
   Depends on [n]: SPARSEMEM [=n]
   Selected by [y]:
   - RESOURCE_KUNIT_TEST [=y] && RUNTIME_TESTING_MENU [=y] && KUNIT [=y]


vim +313 drivers/gpu/drm/drm_debugfs.c

0b30d57acafcaa Christian König  2023-08-29  306  
0b30d57acafcaa Christian König  2023-08-29  307  void drm_debugfs_dev_register(struct drm_device *dev)
0b30d57acafcaa Christian König  2023-08-29  308  {
0b30d57acafcaa Christian König  2023-08-29  309  	drm_debugfs_add_files(dev, drm_debugfs_list, DRM_DEBUGFS_ENTRIES);
0b30d57acafcaa Christian König  2023-08-29  310  
0b30d57acafcaa Christian König  2023-08-29  311  	if (drm_core_check_feature(dev, DRIVER_MODESET)) {
0b30d57acafcaa Christian König  2023-08-29  312  		drm_framebuffer_debugfs_init(dev);
0b30d57acafcaa Christian König  2023-08-29 @313  		drm_client_debugfs_init(dev);
0b30d57acafcaa Christian König  2023-08-29  314  	}
d0b3c318e04cc6 Dmitry Baryshkov 2023-12-03  315  	if (drm_drv_uses_atomic_modeset(dev))
0b30d57acafcaa Christian König  2023-08-29  316  		drm_atomic_debugfs_init(dev);
0b30d57acafcaa Christian König  2023-08-29  317  }
0b30d57acafcaa Christian König  2023-08-29  318  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  reply	other threads:[~2024-10-05  1:34 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-02 13:04 [PATCH v2 00/11] drm: Introduce DRM client library Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 01/11] drm/i915: Select DRM_CLIENT_SELECTION Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 02/11] drm/xe: " Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 03/11] drm/fbdev: Select fbdev I/O helpers from modules that require them Thomas Zimmermann
2024-10-04 18:29   ` kernel test robot
2024-10-02 13:04 ` [PATCH v2 04/11] drm/fbdev: Store fbdev module parameters in separate file Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 05/11] drm/client: Move client event handlers to drm_client_event.c Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 06/11] drm/client: Move suspend/resume into DRM client callbacks Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 07/11] drm/amdgpu: Suspend and resume internal clients with client helpers Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 08/11] drm/nouveau: Suspend and resume " Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 09/11] drm/radeon: " Thomas Zimmermann
2024-10-02 13:04 ` [PATCH v2 10/11] drm/client: Make client support optional Thomas Zimmermann
2024-10-05  1:34   ` kernel test robot [this message]
2024-10-02 13:04 ` [PATCH v2 11/11] drm/client: Add client-lib module Thomas Zimmermann
2024-10-02 15:04 ` ✗ Fi.CI.CHECKPATCH: warning for drm: Introduce DRM client library (rev2) Patchwork
2024-10-02 15:04 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-10-02 15:52 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-03 17:10 ` [PATCH v2 00/11] drm: Introduce DRM client library Jocelyn Falempe
2024-10-03 18:01 ` ✗ Fi.CI.IGT: failure for drm: Introduce DRM client library (rev2) Patchwork

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=202410050927.Hgk0Kazl-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=Xinhui.Pan@amd.com \
    --cc=airlied@gmail.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=christian.koenig@amd.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=javierm@redhat.com \
    --cc=jfalempe@redhat.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=simona@ffwll.ch \
    --cc=tzimmermann@suse.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox