All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH v4 1/3] virtio: add dma-buf support for exported objects
@ 2020-05-31 19:07 kbuild test robot
  0 siblings, 0 replies; 26+ messages in thread
From: kbuild test robot @ 2020-05-31 19:07 UTC (permalink / raw)
  To: kbuild-all

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

In-Reply-To: <20200526105811.30784-2-stevensd@chromium.org>
References: <20200526105811.30784-2-stevensd@chromium.org>
TO: David Stevens <stevensd@chromium.org>
TO: Gerd Hoffmann <kraxel@redhat.com>
TO: David Airlie <airlied@linux.ie>
TO: Daniel Vetter <daniel@ffwll.ch>
TO: Sumit Semwal <sumit.semwal@linaro.org>
CC: "Michael S . Tsirkin" <mst@redhat.com>
CC: Jason Wang <jasowang@redhat.com>
CC: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
CC: Maxime Ripard <mripard@kernel.org>
CC: Thomas Zimmermann <tzimmermann@suse.de>
CC: David Stevens <stevensd@chromium.org>

Hi David,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on next-20200525]
[also build test WARNING on v5.7-rc7]
[cannot apply to linus/master v5.7-rc7 v5.7-rc6 v5.7-rc5]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/David-Stevens/Support-virtio-cross-device-resources/20200526-190644
base:    7b4cb0a48db03a67d1ce21c4f97b1508a241a2e7
config: x86_64-randconfig-a002-20200531 (attached as .config)
compiler: clang version 11.0.0 (https://github.com/llvm/llvm-project 2388a096e7865c043e83ece4e26654bd3d1a20d5)
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
        # install x86_64 cross compiling tool for clang build
        # apt-get install binutils-x86-64-linux-gnu
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 

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

All warnings (new ones prefixed by >>, old ones prefixed by <<):

>> drivers/virtio/virtio_dma_buf.o: warning: objtool: __llvm_gcov_writeout()+0x0: call without frame pointer save/setup
>> drivers/virtio/virtio_dma_buf.o: warning: objtool: __llvm_gcov_reset()+0x0: call without frame pointer save/setup
>> drivers/virtio/virtio_dma_buf.o: warning: objtool: __llvm_gcov_flush()+0x0: call without frame pointer save/setup
>> drivers/virtio/virtio_dma_buf.o: warning: objtool: __llvm_gcov_init()+0x0: call without frame pointer save/setup

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

^ permalink raw reply	[flat|nested] 26+ messages in thread
* [virtio-dev] [PATCH v4 0/3] Support virtio cross-device resources
@ 2020-05-26 10:58 David Stevens
  2020-05-26 10:58   ` David Stevens
  0 siblings, 1 reply; 26+ messages in thread
From: David Stevens @ 2020-05-26 10:58 UTC (permalink / raw)
  To: Gerd Hoffmann, David Airlie, Daniel Vetter, Sumit Semwal
  Cc: Michael S . Tsirkin, Jason Wang, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, David Stevens, linux-kernel, dri-devel,
	virtualization, linux-media, linaro-mm-sig, virtio-dev

This patchset implements the current proposal for virtio cross-device
resource sharing [1]. It will be used to import virtio resources into
the virtio-video driver currently under discussion [2]. The patch
under consideration to add support in the virtio-video driver is [3].
It uses the APIs from v3 of this series, but the changes to update it
are relatively minor.

This patchset adds a new flavor of dma-bufs that supports querying the
underlying virtio object UUID, as well as adding support for exporting
resources from virtgpu.

[1] https://markmail.org/thread/2ypjt5cfeu3m6lxu
[2] https://markmail.org/thread/p5d3k566srtdtute
[3] https://markmail.org/thread/j4xlqaaim266qpks

v3 -> v4 changes:
 - Replace dma-buf hooks with virtio dma-buf from v1.
 - Remove virtio_attach callback, as the work that had been done
   in that callback is now done on dma-buf export. The documented
   requirement that get_uuid only be called on attached virtio
   dma-bufs is also removed.
 - Rebase and add call to virtio_gpu_notify for ASSIGN_UUID.

David Stevens (3):
  virtio: add dma-buf support for exported objects
  virtio-gpu: add VIRTIO_GPU_F_RESOURCE_UUID feature
  drm/virtio: Support virtgpu exported resources

 drivers/gpu/drm/virtio/virtgpu_drv.c   |  3 +
 drivers/gpu/drm/virtio/virtgpu_drv.h   | 20 ++++++
 drivers/gpu/drm/virtio/virtgpu_kms.c   |  4 ++
 drivers/gpu/drm/virtio/virtgpu_prime.c | 98 +++++++++++++++++++++++++-
 drivers/gpu/drm/virtio/virtgpu_vq.c    | 55 +++++++++++++++
 drivers/virtio/Makefile                |  2 +-
 drivers/virtio/virtio.c                |  6 ++
 drivers/virtio/virtio_dma_buf.c        | 91 ++++++++++++++++++++++++
 include/linux/virtio.h                 |  1 +
 include/linux/virtio_dma_buf.h         | 58 +++++++++++++++
 include/uapi/linux/virtio_gpu.h        | 19 +++++
 11 files changed, 353 insertions(+), 4 deletions(-)
 create mode 100644 drivers/virtio/virtio_dma_buf.c
 create mode 100644 include/linux/virtio_dma_buf.h

-- 
2.27.0.rc0.183.gde8f92d652-goog


---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2020-06-19  6:58 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-31 19:07 [PATCH v4 1/3] virtio: add dma-buf support for exported objects kbuild test robot
  -- strict thread matches above, loose matches on Subject: below --
2020-05-26 10:58 [virtio-dev] [PATCH v4 0/3] Support virtio cross-device resources David Stevens
2020-05-26 10:58 ` [PATCH v4 1/3] virtio: add dma-buf support for exported objects David Stevens
2020-05-26 10:58   ` David Stevens
2020-06-04 19:05   ` Michael S. Tsirkin
2020-06-04 19:05     ` Michael S. Tsirkin
2020-06-05  1:28     ` David Stevens
2020-06-05  1:28       ` David Stevens
2020-06-06 20:04       ` Michael S. Tsirkin
2020-06-06 20:04         ` Michael S. Tsirkin
2020-06-08  1:33         ` David Stevens
2020-06-08  1:33           ` David Stevens
2020-06-08  6:00           ` Michael S. Tsirkin
2020-06-08  6:00             ` Michael S. Tsirkin
2020-06-08  8:32             ` David Stevens
2020-06-08  8:32               ` David Stevens
2020-06-08  9:05               ` Michael S. Tsirkin
2020-06-08  9:05                 ` Michael S. Tsirkin
2020-06-08  9:30                 ` David Stevens
2020-06-08  9:30                   ` David Stevens
2020-06-18 12:28     ` Guennadi Liakhovetski
2020-06-18 12:28       ` Guennadi Liakhovetski
2020-06-18 12:28       ` Guennadi Liakhovetski
2020-06-19  1:57       ` David Stevens
2020-06-19  1:57         ` David Stevens
2020-06-19  6:53         ` Guennadi Liakhovetski
2020-06-19  6:53           ` Guennadi Liakhovetski

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.