From: kernel test robot <lkp@intel.com>
To: Boris Brezillon <bbrezillon@kernel.org>,
Steven Price <steven.price@arm.com>
Cc: oe-kbuild-all@lists.linux.dev, dri-devel@lists.freedesktop.org,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Maxime Ripard" <mripard@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Faith Ekstrand" <faith.ekstrand@collabora.com>,
"Thierry Reding" <thierry.reding@gmail.com>,
"Mikko Perttunen" <mperttunen@nvidia.com>,
"Melissa Wen" <mwen@igalia.com>,
"Maíra Canal" <mcanal@igalia.com>,
"Lucas De Marchi" <lucas.demarchi@intel.com>,
"Thomas Hellström" <thomas.hellstrom@linux.intel.com>,
"Rodrigo Vivi" <rodrigo.vivi@intel.com>,
"Frank Binns" <frank.binns@imgtec.com>,
"Matt Coster" <matt.coster@imgtec.com>,
"Rob Clark" <robin.clark@oss.qualcomm.com>,
"Dmitry Baryshkov" <lumag@kernel.org>,
"Abhinav Kumar" <abhinav.kumar@linux.dev>,
"Jessica Zhang" <jessica.zhang@oss.qualcomm.com>,
"Sean Paul" <sean@poorly.run>,
"Marijn Suijten" <marijn.suijten@somainline.org>,
"Alex Deucher" <alexander.deucher@amd.com>,
"Christian König" <christian.koenig@amd.com>,
amd-gfx@lists.freedesktop.org, kernel@collabora.com,
"Boris Brezillon" <bbrezillon@kernel.org>
Subject: Re: [PATCH v7 12/13] drm/panfrost: Add flag to map GEM object Write-Back Cacheable
Date: Fri, 5 Dec 2025 21:07:33 +0800 [thread overview]
Message-ID: <202512051903.QuHryKTr-lkp@intel.com> (raw)
In-Reply-To: <20251203090141.227394-13-boris.brezillon@collabora.com>
Hi Boris,
kernel test robot noticed the following build warnings:
[auto build test WARNING on drm-misc/drm-misc-next]
[also build test WARNING on drm/drm-next drm-tip/drm-tip linus/master next-20251205]
[cannot apply to drm-i915/for-linux-next drm-i915/for-linux-next-fixes daeinki-drm-exynos/exynos-drm-next v6.18]
[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/Boris-Brezillon/drm-panthor-Provide-a-custom-dma_buf-implementation/20251203-174141
base: https://gitlab.freedesktop.org/drm/misc/kernel.git drm-misc-next
patch link: https://lore.kernel.org/r/20251203090141.227394-13-boris.brezillon%40collabora.com
patch subject: [PATCH v7 12/13] drm/panfrost: Add flag to map GEM object Write-Back Cacheable
config: sparc64-randconfig-r113-20251205 (https://download.01.org/0day-ci/archive/20251205/202512051903.QuHryKTr-lkp@intel.com/config)
compiler: sparc64-linux-gcc (GCC) 8.5.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251205/202512051903.QuHryKTr-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/202512051903.QuHryKTr-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/panfrost/panfrost_gem.c:392:10: sparse: sparse: Initializer entry defined twice
drivers/gpu/drm/panfrost/panfrost_gem.c:396:10: sparse: also defined here
vim +392 drivers/gpu/drm/panfrost/panfrost_gem.c
06fdcb378400a75 Boris Brezillon 2025-12-03 383
f3ba91228e8e917 Rob Herring 2018-09-10 384 static const struct drm_gem_object_funcs panfrost_gem_funcs = {
f3ba91228e8e917 Rob Herring 2018-09-10 385 .free = panfrost_gem_free_object,
a5efb4c9a562aa1 Rob Herring 2019-07-01 386 .open = panfrost_gem_open,
a5efb4c9a562aa1 Rob Herring 2019-07-01 387 .close = panfrost_gem_close,
c7fbcb7149ff932 Thomas Zimmermann 2021-11-08 388 .print_info = drm_gem_shmem_object_print_info,
187d2929206e6b0 Rob Herring 2019-07-26 389 .pin = panfrost_gem_pin,
c7fbcb7149ff932 Thomas Zimmermann 2021-11-08 390 .unpin = drm_gem_shmem_object_unpin,
c7fbcb7149ff932 Thomas Zimmermann 2021-11-08 391 .get_sg_table = drm_gem_shmem_object_get_sg_table,
06fdcb378400a75 Boris Brezillon 2025-12-03 @392 .export = panfrost_gem_prime_export,
c7fbcb7149ff932 Thomas Zimmermann 2021-11-08 393 .vmap = drm_gem_shmem_object_vmap,
c7fbcb7149ff932 Thomas Zimmermann 2021-11-08 394 .vunmap = drm_gem_shmem_object_vunmap,
c7fbcb7149ff932 Thomas Zimmermann 2021-11-08 395 .mmap = drm_gem_shmem_object_mmap,
cf47bdd19762531 Faith Ekstrand 2025-12-03 396 .export = drm_gem_prime_export,
9ccdac7aa822f04 Adrián Larumbe 2023-09-29 397 .status = panfrost_gem_status,
407c0ad5b19a477 Adrián Larumbe 2023-09-29 398 .rss = panfrost_gem_rss,
d315bdbfebd517c Thomas Zimmermann 2022-02-09 399 .vm_ops = &drm_gem_shmem_vm_ops,
f3ba91228e8e917 Rob Herring 2018-09-10 400 };
f3ba91228e8e917 Rob Herring 2018-09-10 401
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-12-05 13:07 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-03 9:01 [PATCH v7 00/13] drm/panfrost, panthor: Cached maps and explicit flushing Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 01/13] drm/panthor: Provide a custom dma_buf implementation Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 02/13] drm/panthor: Fix panthor_gpu_coherency_set() Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 03/13] drm/panthor: Expose the selected coherency protocol to the UMD Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 04/13] drm/panthor: Add a PANTHOR_BO_SYNC ioctl Boris Brezillon
2025-12-04 15:42 ` Steven Price
2025-12-03 9:01 ` [PATCH v7 05/13] drm/panthor: Add an ioctl to query BO flags Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 06/13] drm/panthor: Add flag to map GEM object Write-Back Cacheable Boris Brezillon
2025-12-04 15:44 ` Steven Price
2025-12-03 9:01 ` [PATCH v7 07/13] drm/panthor: Bump the driver version to 1.6 Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 08/13] drm/panfrost: Provide a custom dma_buf implementation Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 09/13] drm/panfrost: Expose the selected coherency protocol to the UMD Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 10/13] drm/panfrost: Add a PANFROST_SYNC_BO ioctl Boris Brezillon
2025-12-04 16:09 ` Steven Price
2025-12-03 9:01 ` [PATCH v7 11/13] drm/panfrost: Add an ioctl to query BO flags Boris Brezillon
2025-12-03 9:01 ` [PATCH v7 12/13] drm/panfrost: Add flag to map GEM object Write-Back Cacheable Boris Brezillon
2025-12-05 13:07 ` kernel test robot [this message]
2025-12-03 9:01 ` [PATCH v7 13/13] drm/panfrost: Bump the driver version to 1.6 Boris Brezillon
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=202512051903.QuHryKTr-lkp@intel.com \
--to=lkp@intel.com \
--cc=abhinav.kumar@linux.dev \
--cc=airlied@gmail.com \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=bbrezillon@kernel.org \
--cc=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=faith.ekstrand@collabora.com \
--cc=frank.binns@imgtec.com \
--cc=jessica.zhang@oss.qualcomm.com \
--cc=kernel@collabora.com \
--cc=lucas.demarchi@intel.com \
--cc=lumag@kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marijn.suijten@somainline.org \
--cc=matt.coster@imgtec.com \
--cc=mcanal@igalia.com \
--cc=mperttunen@nvidia.com \
--cc=mripard@kernel.org \
--cc=mwen@igalia.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=robin.clark@oss.qualcomm.com \
--cc=rodrigo.vivi@intel.com \
--cc=sean@poorly.run \
--cc=simona@ffwll.ch \
--cc=steven.price@arm.com \
--cc=thierry.reding@gmail.com \
--cc=thomas.hellstrom@linux.intel.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