public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Donald Robson <donald.robson@imgtec.com>,
	Sarah Walker <sarah.walker@imgtec.com>,
	dri-devel@lists.freedesktop.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
	frank.binns@imgtec.com, matt.coster@imgtec.com,
	boris.brezillon@collabora.com, faith.ekstrand@collabora.com,
	airlied@gmail.com, daniel@ffwll.ch,
	maarten.lankhorst@linux.intel.com, mripard@kernel.org,
	tzimmermann@suse.de, afd@ti.com, hns@goldelico.com,
	matthew.brost@intel.com, christian.koenig@amd.com,
	luben.tuikov@amd.com, dakr@redhat.com,
	linux-kernel@vger.kernel.org, robh+dt@kernel.org,
	krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org,
	devicetree@vger.kernel.org, corbet@lwn.net,
	linux-doc@vger.kernel.org, Sarah Walker <sarah.walker@imgtec.com>
Subject: Re: [PATCH v9 11/20] drm/imagination: Add GEM and VM related code
Date: Fri, 24 Nov 2023 23:42:42 +0800	[thread overview]
Message-ID: <202311242159.hh8MWiAm-lkp@intel.com> (raw)
In-Reply-To: <3c96dd170efe759b73897e3675d7310a7c4b06d0.1700668843.git.donald.robson@imgtec.com>

Hi Donald Sarah,

kernel test robot noticed the following build warnings:

[auto build test WARNING on drm-misc/drm-misc-next]
[also build test WARNING on drm-exynos/exynos-drm-next drm-intel/for-linux-next drm-intel/for-linux-next-fixes linus/master v6.7-rc2]
[cannot apply to drm/drm-next drm-tip/drm-tip next-20231124]
[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/Donald-Robson/drm-gpuvm-Helper-to-get-range-of-unmap-from-a-remap-op/20231123-013514
base:   git://anongit.freedesktop.org/drm/drm-misc drm-misc-next
patch link:    https://lore.kernel.org/r/3c96dd170efe759b73897e3675d7310a7c4b06d0.1700668843.git.donald.robson%40imgtec.com
patch subject: [PATCH v9 11/20] drm/imagination: Add GEM and VM related code
config: arm64-allmodconfig (https://download.01.org/0day-ci/archive/20231124/202311242159.hh8MWiAm-lkp@intel.com/config)
compiler: clang version 17.0.0 (https://github.com/llvm/llvm-project.git 4a5ac14ee968ff0ad5d2cc1ffa0299048db4c88a)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231124/202311242159.hh8MWiAm-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/202311242159.hh8MWiAm-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> drivers/gpu/drm/imagination/pvr_vm.c:531:6: warning: no previous prototype for function 'pvr_gpuvm_free' [-Wmissing-prototypes]
     531 | void pvr_gpuvm_free(struct drm_gpuvm *gpuvm)
         |      ^
   drivers/gpu/drm/imagination/pvr_vm.c:531:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
     531 | void pvr_gpuvm_free(struct drm_gpuvm *gpuvm)
         | ^
         | static 
   drivers/gpu/drm/imagination/pvr_vm.c:112:22: warning: unused function 'to_pvr_vm_gpuva' [-Wunused-function]
     112 | struct pvr_vm_gpuva *to_pvr_vm_gpuva(struct drm_gpuva *gpuva)
         |                      ^
   2 warnings generated.
--
>> drivers/gpu/drm/imagination/pvr_mmu.c:285: warning: Function parameter or member 'flags' not described in 'pvr_mmu_backing_page_sync'
--
>> drivers/gpu/drm/imagination/pvr_vm.c:65: warning: Function parameter or member 'gpuvm_mgr' not described in 'pvr_vm_context'


vim +/pvr_gpuvm_free +531 drivers/gpu/drm/imagination/pvr_vm.c

   530	
 > 531	void pvr_gpuvm_free(struct drm_gpuvm *gpuvm)
   532	{
   533	

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

  reply	other threads:[~2023-11-24 15:43 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-22 16:34 [PATCH v9 00/20] Imagination Technologies PowerVR DRM driver Donald Robson
2023-11-22 16:34 ` [PATCH v9 01/20] sizes.h: Add entries between SZ_32G and SZ_64T Donald Robson
2023-11-22 16:34 ` [PATCH v9 02/20] drm/gpuvm: Helper to get range of unmap from a remap op Donald Robson
2023-11-22 16:34 ` [PATCH v9 03/20] dt-bindings: gpu: Add Imagination Technologies PowerVR/IMG GPU Donald Robson
2023-11-27  8:39   ` Geert Uytterhoeven
2023-11-28  9:38     ` Donald Robson
2023-11-22 16:34 ` [PATCH v9 04/20] drm/imagination/uapi: Add PowerVR driver UAPI Donald Robson
2023-11-22 16:34 ` [PATCH v9 05/20] drm/imagination: Add skeleton PowerVR driver Donald Robson
2023-11-22 16:34 ` [PATCH v9 06/20] drm/imagination: Get GPU resources Donald Robson
2023-11-22 16:34 ` [PATCH v9 07/20] drm/imagination: Add GPU register headers Donald Robson
2023-11-22 16:34 ` [PATCH v9 08/20] drm/imagination: Add firmware and MMU related headers Donald Robson
2023-11-22 16:34 ` [PATCH v9 09/20] drm/imagination: Add FWIF headers Donald Robson
2023-11-22 16:34 ` [PATCH v9 10/20] drm/imagination: Add GPU ID parsing and firmware loading Donald Robson
2023-11-22 16:34 ` [PATCH v9 11/20] drm/imagination: Add GEM and VM related code Donald Robson, Sarah Walker
2023-11-24 15:42   ` kernel test robot [this message]
2023-11-22 16:34 ` [PATCH v9 12/20] drm/imagination: Implement power management Donald Robson
2023-11-22 16:34 ` [PATCH v9 13/20] drm/imagination: Implement firmware infrastructure and META FW support Donald Robson
2023-11-22 16:34 ` [PATCH v9 14/20] drm/imagination: Implement MIPS firmware processor and MMU support Donald Robson
2023-11-22 16:34 ` [PATCH v9 15/20] drm/imagination: Implement free list and HWRT create and destroy ioctls Donald Robson
2023-11-22 16:34 ` [PATCH v9 16/20] drm/imagination: Implement context creation/destruction ioctls Donald Robson
2023-11-22 16:34 ` [PATCH v9 17/20] drm/imagination: Implement job submission and scheduling Donald Robson
2023-11-22 16:34 ` [PATCH v9 18/20] drm/imagination: Add firmware trace header Donald Robson
2023-11-22 16:34 ` [PATCH v9 19/20] drm/imagination: Add firmware trace to debugfs Donald Robson
2023-11-22 16:34 ` [PATCH v9 20/20] drm/imagination: Add driver documentation Donald Robson
2023-11-22 19:34 ` [PATCH v9 00/20] Imagination Technologies PowerVR DRM driver Maxime Ripard
2023-11-23  9:04   ` H. Nikolaus Schaller
2023-11-28 10:57     ` [EXTERNAL] " Donald Robson

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=202311242159.hh8MWiAm-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=afd@ti.com \
    --cc=airlied@gmail.com \
    --cc=boris.brezillon@collabora.com \
    --cc=christian.koenig@amd.com \
    --cc=conor+dt@kernel.org \
    --cc=corbet@lwn.net \
    --cc=dakr@redhat.com \
    --cc=daniel@ffwll.ch \
    --cc=devicetree@vger.kernel.org \
    --cc=donald.robson@imgtec.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=faith.ekstrand@collabora.com \
    --cc=frank.binns@imgtec.com \
    --cc=hns@goldelico.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=llvm@lists.linux.dev \
    --cc=luben.tuikov@amd.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=matt.coster@imgtec.com \
    --cc=matthew.brost@intel.com \
    --cc=mripard@kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=robh+dt@kernel.org \
    --cc=sarah.walker@imgtec.com \
    --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