All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 15/15] RFC: drm/amdgpu: Implement a proper implicit fencing uapi
Date: Wed, 23 Jun 2021 07:56:30 +0800	[thread overview]
Message-ID: <202106230708.e8gLvbkL-lkp@intel.com> (raw)
In-Reply-To: <20210622165511.3169559-16-daniel.vetter@ffwll.ch>

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

Hi Daniel,

[FYI, it's a private test report for your RFC patch.]
[auto build test WARNING on drm-tip/drm-tip]
[cannot apply to sunxi/sunxi/for-next drm-intel/for-linux-next linus/master linux-arm/drm-armada-devel linux-arm/drm-armada-fixes v5.13-rc7 next-20210622]
[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/Daniel-Vetter/implicit-fencing-dma-resv-rules-for-shared-buffers/20210623-005623
base:   git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: x86_64-randconfig-s031-20210622 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce:
        # apt-get install sparse
        # sparse version: v0.6.3-341-g8af24329-dirty
        # https://github.com/0day-ci/linux/commit/42de2bd7635cf7c6d79494a3a35512c53196524f
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Daniel-Vetter/implicit-fencing-dma-resv-rules-for-shared-buffers/20210623-005623
        git checkout 42de2bd7635cf7c6d79494a3a35512c53196524f
        # save the attached .config to linux build tree
        make W=1 C=1 CF='-fdiagnostic-prefix -D__CHECK_ENDIAN__' W=1 ARCH=x86_64 

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/amd/amdgpu/amdgpu_drv.c:1727:5: warning: no previous prototype for 'amdgpu_setparam_ioctl' [-Wmissing-prototypes]
    1727 | int amdgpu_setparam_ioctl(struct drm_device *dev, void *data,
         |     ^~~~~~~~~~~~~~~~~~~~~


vim +/amdgpu_setparam_ioctl +1727 drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c

  1726	
> 1727	int amdgpu_setparam_ioctl(struct drm_device *dev, void *data,
  1728				  struct drm_file *filp)
  1729	{
  1730		struct drm_amdgpu_setparam *setparam = data;
  1731		struct amdgpu_fpriv *fpriv = filp->driver_priv;
  1732	
  1733		switch (setparam->param) {
  1734		case AMDGPU_SETPARAM_NO_IMPLICIT_SYNC:
  1735			if (setparam->value)
  1736				WRITE_ONCE(fpriv->vm.no_implicit_sync, true);
  1737			else
  1738				WRITE_ONCE(fpriv->vm.no_implicit_sync, false);
  1739			break;
  1740		default:
  1741			return -EINVAL;
  1742		}
  1743	
  1744		return 0;
  1745	}
  1746	

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

  reply	other threads:[~2021-06-22 23:56 UTC|newest]

Thread overview: 174+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-22 16:54 [Intel-gfx] [PATCH 00/15] implicit fencing/dma-resv rules for shared buffers Daniel Vetter
2021-06-22 16:54 ` Daniel Vetter
2021-06-22 16:54 ` [PATCH 01/15] dma-resv: Fix kerneldoc Daniel Vetter
2021-06-22 16:54   ` Daniel Vetter
2021-06-22 16:54   ` [Intel-gfx] " Daniel Vetter
2021-06-22 18:19   ` Alex Deucher
2021-06-22 18:19     ` Alex Deucher
2021-06-22 18:19     ` [Intel-gfx] " Alex Deucher
2021-06-22 18:49   ` Sam Ravnborg
2021-06-22 18:49     ` [Intel-gfx] " Sam Ravnborg
2021-06-22 19:19     ` Daniel Vetter
2021-06-22 19:19       ` Daniel Vetter
2021-06-22 19:19       ` [Intel-gfx] " Daniel Vetter
2021-06-23  8:31   ` Christian König
2021-06-23  8:31     ` Christian König
2021-06-23  8:31     ` [Intel-gfx] " Christian König
2021-06-23 15:15     ` Daniel Vetter
2021-06-23 15:15       ` Daniel Vetter
2021-06-23 15:15       ` [Intel-gfx] " Daniel Vetter
2021-06-22 16:54 ` [PATCH 02/15] dma-buf: Switch to inline kerneldoc Daniel Vetter
2021-06-22 16:54   ` Daniel Vetter
2021-06-22 16:54   ` [Intel-gfx] " Daniel Vetter
2021-06-22 18:24   ` Alex Deucher
2021-06-22 18:24     ` Alex Deucher
2021-06-22 18:24     ` [Intel-gfx] " Alex Deucher
2021-06-22 19:01   ` Sam Ravnborg
2021-06-22 19:01     ` [Intel-gfx] " Sam Ravnborg
2021-06-22 19:21     ` Daniel Vetter
2021-06-22 19:21       ` Daniel Vetter
2021-06-22 19:21       ` [Intel-gfx] " Daniel Vetter
2021-06-23  8:32   ` Christian König
2021-06-23  8:32     ` Christian König
2021-06-23  8:32     ` Christian König
2021-06-23 16:17   ` [PATCH] " Daniel Vetter
2021-06-23 16:17     ` Daniel Vetter
2021-06-23 16:17     ` [Intel-gfx] " Daniel Vetter
2021-06-23 17:33     ` Sam Ravnborg
2021-06-23 17:33       ` Sam Ravnborg
2021-06-22 16:54 ` [Intel-gfx] [PATCH 03/15] dma-buf: Document dma-buf implicit fencing/resv fencing rules Daniel Vetter
2021-06-22 16:54   ` Daniel Vetter
2021-06-23  8:41   ` [Intel-gfx] " Christian König
2021-06-23  8:41     ` Christian König
2021-06-23 16:19   ` [Intel-gfx] [PATCH] " Daniel Vetter
2021-06-23 16:19     ` Daniel Vetter
2021-06-24  6:59     ` [Intel-gfx] " Dave Airlie
2021-06-24  6:59       ` Dave Airlie
2021-06-24 11:08     ` [Intel-gfx] [Mesa-dev] " Daniel Stone
2021-06-24 11:08       ` Daniel Stone
2021-06-24 11:23       ` [Intel-gfx] " Daniel Vetter
2021-06-24 11:23         ` Daniel Vetter
2021-06-24 12:48     ` Daniel Vetter
2021-06-24 12:52     ` Daniel Vetter
2021-06-22 16:55 ` [Intel-gfx] [PATCH 04/15] drm/panfrost: Shrink sched_lock Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-23 16:52   ` [Intel-gfx] " Boris Brezillon
2021-06-23 16:52     ` Boris Brezillon
2021-06-22 16:55 ` [PATCH 05/15] drm/panfrost: Use xarray and helpers for depedency tracking Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55   ` [Intel-gfx] " Daniel Vetter
2021-06-23 16:51   ` Boris Brezillon
2021-06-23 16:51     ` Boris Brezillon
2021-06-23 16:51     ` [Intel-gfx] " Boris Brezillon
2021-06-22 16:55 ` [PATCH 06/15] drm/panfrost: Fix implicit sync Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55   ` [Intel-gfx] " Daniel Vetter
2021-06-23 16:47   ` Boris Brezillon
2021-06-23 16:47     ` Boris Brezillon
2021-06-23 16:47     ` [Intel-gfx] " Boris Brezillon
2021-06-23 19:17     ` Daniel Vetter
2021-06-23 19:17       ` Daniel Vetter
2021-06-23 19:17       ` [Intel-gfx] " Daniel Vetter
2021-06-22 16:55 ` [Intel-gfx] [PATCH 07/15] drm/atomic-helper: make drm_gem_plane_helper_prepare_fb the default Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 19:10   ` [Intel-gfx] " Sam Ravnborg
2021-06-22 19:10     ` Sam Ravnborg
2021-06-22 20:20     ` [Intel-gfx] " Daniel Vetter
2021-06-22 20:20       ` Daniel Vetter
2021-06-23 15:39       ` [Intel-gfx] " Sam Ravnborg
2021-06-23 15:39         ` Sam Ravnborg
2021-06-23 16:22   ` [Intel-gfx] [PATCH] " Daniel Vetter
2021-06-23 16:22     ` Daniel Vetter
2021-06-22 16:55 ` [PATCH 08/15] drm/<driver>: drm_gem_plane_helper_prepare_fb is now " Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55   ` [Intel-gfx] " Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-24  8:32   ` Philipp Zabel
2021-06-24  8:32     ` Philipp Zabel
2021-06-24  8:32     ` Philipp Zabel
2021-06-24  8:32     ` Philipp Zabel
2021-06-24  8:32     ` Philipp Zabel
2021-06-24  8:32     ` [Intel-gfx] " Philipp Zabel
2021-06-24  8:32     ` Philipp Zabel
2021-06-22 16:55 ` [Intel-gfx] [PATCH 09/15] drm/armada: Remove prepare/cleanup_fb hooks Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-24 12:46   ` [Intel-gfx] " Maxime Ripard
2021-06-24 12:46     ` Maxime Ripard
2021-06-22 16:55 ` [Intel-gfx] [PATCH 10/15] drm/vram-helpers: Create DRM_GEM_VRAM_PLANE_HELPER_FUNCS Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-24  7:38   ` [Intel-gfx] " Thomas Zimmermann
2021-06-24  7:38     ` Thomas Zimmermann
2021-06-24  7:46   ` [Intel-gfx] " Thomas Zimmermann
2021-06-24  7:46     ` Thomas Zimmermann
2021-06-24 13:39     ` [Intel-gfx] " Daniel Vetter
2021-06-24 13:39       ` Daniel Vetter
2021-06-22 16:55 ` [Intel-gfx] [PATCH 11/15] drm/omap: Follow implicit fencing in prepare_fb Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55 ` [Intel-gfx] [PATCH 12/15] drm/simple-helper: drm_gem_simple_display_pipe_prepare_fb as default Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 19:15   ` [Intel-gfx] " Sam Ravnborg
2021-06-22 19:15     ` Sam Ravnborg
2021-06-23 16:24   ` [Intel-gfx] [PATCH] " Daniel Vetter
2021-06-23 16:24     ` Daniel Vetter
2021-06-23 17:34     ` [Intel-gfx] " Sam Ravnborg
2021-06-23 17:34       ` Sam Ravnborg
2021-06-22 16:55 ` [PATCH 13/15] drm/tiny: drm_gem_simple_display_pipe_prepare_fb is the default Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 16:55   ` [Intel-gfx] " Daniel Vetter
2021-06-22 16:55 ` [Intel-gfx] [PATCH 14/15] drm/gem: Tiny kernel clarification for drm_gem_fence_array_add Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-23  8:42   ` [Intel-gfx] " Christian König
2021-06-23  8:42     ` Christian König
2021-06-24 12:41     ` [Intel-gfx] " Daniel Vetter
2021-06-24 12:41       ` Daniel Vetter
2021-06-24 12:48       ` [Intel-gfx] " Christian König
2021-06-24 12:48         ` Christian König
2021-06-24 13:32         ` [Intel-gfx] " Daniel Vetter
2021-06-24 13:32           ` Daniel Vetter
2021-06-24 13:35           ` Christian König
2021-06-24 13:35             ` [Intel-gfx] " Christian König
2021-06-24 13:41             ` Daniel Vetter
2021-06-24 13:41               ` Daniel Vetter
2021-06-24 13:45               ` [Intel-gfx] " Christian König
2021-06-24 13:45                 ` Christian König
2021-06-22 16:55 ` [Intel-gfx] [PATCH 15/15] RFC: drm/amdgpu: Implement a proper implicit fencing uapi Daniel Vetter
2021-06-22 16:55   ` Daniel Vetter
2021-06-22 23:56   ` kernel test robot [this message]
2021-06-23  9:45   ` [Intel-gfx] " Bas Nieuwenhuizen
2021-06-23  9:45     ` Bas Nieuwenhuizen
2021-06-23 12:18     ` [Intel-gfx] " Daniel Vetter
2021-06-23 12:18       ` Daniel Vetter
2021-06-23 12:59       ` [Intel-gfx] " Christian König
2021-06-23 12:59         ` Christian König
2021-06-23 13:38         ` [Intel-gfx] " Bas Nieuwenhuizen
2021-06-23 13:38           ` Bas Nieuwenhuizen
2021-06-23 13:44           ` [Intel-gfx] " Christian König
2021-06-23 13:44             ` Christian König
2021-06-23 13:49             ` [Intel-gfx] " Daniel Vetter
2021-06-23 13:49               ` Daniel Vetter
2021-06-23 14:02               ` [Intel-gfx] " Christian König
2021-06-23 14:02                 ` Christian König
2021-06-23 14:50                 ` [Intel-gfx] " Daniel Vetter
2021-06-23 14:50                   ` Daniel Vetter
2021-06-23 14:58                   ` [Intel-gfx] " Bas Nieuwenhuizen
2021-06-23 14:58                     ` Bas Nieuwenhuizen
2021-06-23 15:03                     ` [Intel-gfx] " Daniel Vetter
2021-06-23 15:03                       ` Daniel Vetter
2021-06-23 15:07                       ` [Intel-gfx] " Christian König
2021-06-23 15:07                         ` Christian König
2021-06-23 15:12                         ` [Intel-gfx] " Daniel Vetter
2021-06-23 15:12                           ` Daniel Vetter
2021-06-23 15:15                           ` [Intel-gfx] " Christian König
2021-06-23 15:15                             ` Christian König
2021-06-22 17:08 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for implicit fencing/dma-resv rules for shared buffers Patchwork
2021-06-22 17:11 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2021-06-22 17:38 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-06-22 19:12 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-06-23 17:05 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for implicit fencing/dma-resv rules for shared buffers (rev5) Patchwork
2021-06-23 17:07 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2021-06-23 17:35 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-06-23 21:04 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork

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=202106230708.e8gLvbkL-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.