From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v6 06/10] drm/gem: Use struct dma_buf_map in GEM vmap ops and convert GEM backends
Date: Thu, 29 Oct 2020 06:19:22 +0800 [thread overview]
Message-ID: <202010290644.EgtnRTTs-lkp@intel.com> (raw)
In-Reply-To: <20201028193521.2489-7-tzimmermann@suse.de>
[-- Attachment #1: Type: text/plain, Size: 3435 bytes --]
Hi Thomas,
I love your patch! Yet something to improve:
[auto build test ERROR on next-20201028]
[cannot apply to drm-exynos/exynos-drm-next rockchip/for-next linus/master anholt/for-next v5.10-rc1 v5.9 v5.9-rc8 v5.10-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]
url: https://github.com/0day-ci/linux/commits/Thomas-Zimmermann/Support-GEM-object-mappings-from-I-O-memory/20201029-033704
base: 1c86f90a16d413621918ae1403842b43632f0b3d
config: arm-defconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/649bc838b7c4e7b01ccad3decaa3e13f31659c6b
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Thomas-Zimmermann/Support-GEM-object-mappings-from-I-O-memory/20201029-033704
git checkout 649bc838b7c4e7b01ccad3decaa3e13f31659c6b
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arm
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
>> drivers/gpu/drm/msm/msm_gem.c:1014:10: error: initialization of 'int (*)(struct drm_gem_object *, struct dma_buf_map *)' from incompatible pointer type 'void * (*)(struct drm_gem_object *)' [-Werror=incompatible-pointer-types]
1014 | .vmap = msm_gem_prime_vmap,
| ^~~~~~~~~~~~~~~~~~
drivers/gpu/drm/msm/msm_gem.c:1014:10: note: (near initialization for 'msm_gem_object_funcs.vmap')
>> drivers/gpu/drm/msm/msm_gem.c:1015:12: error: initialization of 'void (*)(struct drm_gem_object *, struct dma_buf_map *)' from incompatible pointer type 'void (*)(struct drm_gem_object *, void *)' [-Werror=incompatible-pointer-types]
1015 | .vunmap = msm_gem_prime_vunmap,
| ^~~~~~~~~~~~~~~~~~~~
drivers/gpu/drm/msm/msm_gem.c:1015:12: note: (near initialization for 'msm_gem_object_funcs.vunmap')
cc1: some warnings being treated as errors
vim +1014 drivers/gpu/drm/msm/msm_gem.c
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1008
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1009 static const struct drm_gem_object_funcs msm_gem_object_funcs = {
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1010 .free = msm_gem_free_object,
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1011 .pin = msm_gem_prime_pin,
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1012 .unpin = msm_gem_prime_unpin,
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1013 .get_sg_table = msm_gem_prime_get_sg_table,
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 @1014 .vmap = msm_gem_prime_vmap,
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 @1015 .vunmap = msm_gem_prime_vunmap,
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1016 .vm_ops = &vm_ops,
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1017 };
3c9edd9c85f53e0 Thomas Zimmermann 2020-09-23 1018
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 53781 bytes --]
next prev parent reply other threads:[~2020-10-28 22:19 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-28 19:35 [PATCH v6 00/10] Support GEM object mappings from I/O memory Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 01/10] drm/vram-helper: Remove invariant parameters from internal kmap function Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 02/10] drm/cma-helper: Remove empty drm_gem_cma_prime_vunmap() Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 03/10] drm/etnaviv: Remove empty etnaviv_gem_prime_vunmap() Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 04/10] drm/exynos: Remove empty exynos_drm_gem_prime_{vmap, vunmap}() Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 04/10] drm/exynos: Remove empty exynos_drm_gem_prime_{vmap,vunmap}() Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 04/10] drm/exynos: Remove empty exynos_drm_gem_prime_{vmap, vunmap}() Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 05/10] drm/ttm: Add vmap/vunmap to TTM and TTM GEM helpers Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 06/10] drm/gem: Use struct dma_buf_map in GEM vmap ops and convert GEM backends Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 21:11 ` kernel test robot
2020-10-28 22:19 ` kernel test robot [this message]
2020-10-28 22:23 ` kernel test robot
2020-10-28 19:35 ` [PATCH v6 07/10] drm/gem: Update internal GEM vmap/vunmap interfaces to use struct dma_buf_map Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 08/10] drm/gem: Store client buffer mappings as " Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 09/10] dma-buf-map: Add memcpy and pointer-increment interfaces Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` [PATCH v6 10/10] drm/fb_helper: Support framebuffers in I/O memory Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 19:35 ` Thomas Zimmermann
2020-10-28 21:40 ` kernel test robot
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=202010290644.EgtnRTTs-lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.org \
/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.