All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v3 4/8] drm/gem: Create infrastructure for GEM vmap_local
Date: Thu, 10 Dec 2020 01:35:57 +0800	[thread overview]
Message-ID: <202012100143.GzvvYigj-lkp@intel.com> (raw)
In-Reply-To: <20201209142527.26415-5-tzimmermann@suse.de>

[-- Attachment #1: Type: text/plain, Size: 2791 bytes --]

Hi Thomas,

I love your patch! Perhaps something to improve:

[auto build test WARNING on next-20201209]
[cannot apply to linus/master anholt/for-next v5.10-rc7 v5.10-rc6 v5.10-rc5 v5.10-rc7]
[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/drm-Support-short-term-vmap-via-vmap_local/20201209-222628
base:    2f1d5c77f13fe64497c2e2601605f7d7ec4da9b1
config: i386-allyesconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/7e45591797810a937bff58af4db651833ef72abe
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Thomas-Zimmermann/drm-Support-short-term-vmap-via-vmap_local/20201209-222628
        git checkout 7e45591797810a937bff58af4db651833ef72abe
        # save the attached .config to linux build tree
        make W=1 ARCH=i386 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> drivers/gpu/drm/virtio/virtgpu_prime.c:57:11: warning: initialized field overwritten [-Woverride-init]
      57 |   .vmap = drm_gem_dmabuf_vmap_local,
         |           ^~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/gpu/drm/virtio/virtgpu_prime.c:57:11: note: (near initialization for 'virtgpu_dmabuf_ops.ops.vmap')
   drivers/gpu/drm/virtio/virtgpu_prime.c:58:13: warning: initialized field overwritten [-Woverride-init]
      58 |   .vunmap = drm_gem_dmabuf_vunmap_local,
         |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/gpu/drm/virtio/virtgpu_prime.c:58:13: note: (near initialization for 'virtgpu_dmabuf_ops.ops.vunmap')

vim +57 drivers/gpu/drm/virtio/virtgpu_prime.c

    45	
    46	static const struct virtio_dma_buf_ops virtgpu_dmabuf_ops =  {
    47		.ops = {
    48			.cache_sgt_mapping = true,
    49			.attach = virtio_dma_buf_attach,
    50			.detach = drm_gem_map_detach,
    51			.map_dma_buf = drm_gem_map_dma_buf,
    52			.unmap_dma_buf = drm_gem_unmap_dma_buf,
    53			.release = drm_gem_dmabuf_release,
    54			.mmap = drm_gem_dmabuf_mmap,
    55			.vmap = drm_gem_dmabuf_vmap,
    56			.vunmap = drm_gem_dmabuf_vunmap,
  > 57			.vmap = drm_gem_dmabuf_vmap_local,
    58			.vunmap = drm_gem_dmabuf_vunmap_local,
    59		},
    60		.device_attach = drm_gem_map_attach,
    61		.get_uuid = virtgpu_virtio_get_uuid,
    62	};
    63	

---
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: 76664 bytes --]

  reply	other threads:[~2020-12-09 17:35 UTC|newest]

Thread overview: 79+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-09 14:25 [PATCH v3 0/8] drm: Support short-term vmap via vmap_local Thomas Zimmermann
2020-12-09 14:25 ` Thomas Zimmermann
2020-12-09 14:25 ` Thomas Zimmermann
2020-12-09 14:25 ` [PATCH v3 1/8] drm/ast: Don't pin cursor source BO explicitly during update Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-11 10:14   ` Daniel Vetter
2020-12-11 10:14     ` Daniel Vetter
2020-12-11 10:14     ` Daniel Vetter
2020-12-09 14:25 ` [PATCH v3 2/8] drm/ast: Only map cursor BOs during updates Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-11 10:18   ` Daniel Vetter
2020-12-11 10:18     ` Daniel Vetter
2020-12-11 10:18     ` Daniel Vetter
2020-12-11 10:49     ` Thomas Zimmermann
2020-12-11 10:49       ` Thomas Zimmermann
2020-12-11 10:49       ` Thomas Zimmermann
2020-12-11 13:57       ` Daniel Vetter
2020-12-11 13:57         ` Daniel Vetter
2020-12-11 13:57         ` Daniel Vetter
2020-12-09 14:25 ` [PATCH v3 3/8] dma-buf: Add vmap_local and vnumap_local operations Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:27   ` Thomas Zimmermann
2020-12-09 14:27     ` Thomas Zimmermann
2020-12-09 14:27     ` Thomas Zimmermann
2020-12-11  9:24   ` Daniel Vetter
2020-12-11  9:24     ` Daniel Vetter
2020-12-11  9:24     ` Daniel Vetter
2020-12-11 14:09   ` Daniel Vetter
2020-12-11 14:09     ` Daniel Vetter
2020-12-11 14:09     ` Daniel Vetter
2020-12-09 14:25 ` [PATCH v3 4/8] drm/gem: Create infrastructure for GEM vmap_local Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 17:35   ` kernel test robot [this message]
2020-12-11  9:29   ` Daniel Vetter
2020-12-11  9:29     ` Daniel Vetter
2020-12-11  9:29     ` Daniel Vetter
2020-12-09 14:25 ` [PATCH v3 5/8] drm/cma-helper: Provide a vmap function for short-term mappings Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-11  9:40   ` Daniel Vetter
2020-12-11  9:40     ` Daniel Vetter
2020-12-11  9:40     ` Daniel Vetter
2020-12-11 10:02     ` Daniel Vetter
2020-12-11 10:02       ` Daniel Vetter
2020-12-11 10:02       ` Daniel Vetter
2020-12-09 14:25 ` [PATCH v3 6/8] drm/shmem-helper: " Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-11  9:50   ` Daniel Vetter
2020-12-11  9:50     ` Daniel Vetter
2020-12-11  9:50     ` Daniel Vetter
2021-01-07 10:28     ` Thomas Zimmermann
2021-01-07 10:28       ` Thomas Zimmermann
2021-01-07 10:28       ` Thomas Zimmermann
2021-01-07 15:01       ` Daniel Vetter
2021-01-07 15:01         ` Daniel Vetter
2021-01-07 15:01         ` Daniel Vetter
2020-12-09 14:25 ` [PATCH v3 7/8] drm/vram-helper: " Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-11  9:57   ` Daniel Vetter
2020-12-11  9:57     ` Daniel Vetter
2020-12-11  9:57     ` Daniel Vetter
2020-12-09 14:25 ` [PATCH v3 8/8] drm/fb-helper: Move BO locking from DRM client to fbdev damage worker Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-09 14:25   ` Thomas Zimmermann
2020-12-11 10:01   ` Daniel Vetter
2020-12-11 10:01     ` Daniel Vetter
2020-12-11 10:01     ` Daniel Vetter
2020-12-11 10:16     ` Thomas Zimmermann
2020-12-11 10:16       ` Thomas Zimmermann
2020-12-11 10:16       ` Thomas Zimmermann
2020-12-11 14:00       ` Daniel Vetter
2020-12-11 14:00         ` Daniel Vetter
2020-12-11 14:00         ` Daniel Vetter

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=202012100143.GzvvYigj-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.