From: kernel test robot <lkp@intel.com>
To: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org
Subject: Re: [PATCH v5 4/6] drm/i915: Use vma resources for async unbinding
Date: Fri, 7 Jan 2022 00:06:09 +0800 [thread overview]
Message-ID: <202201062355.yUX5doeJ-lkp@intel.com> (raw)
In-Reply-To: <20220104125132.35179-5-thomas.hellstrom@linux.intel.com>
Hi "Thomas,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on drm-intel/for-linux-next]
[also build test WARNING on drm-tip/drm-tip drm/drm-next next-20220105]
[cannot apply to drm-exynos/exynos-drm-next tegra-drm/drm/tegra/for-next v5.16-rc8]
[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-Hellstr-m/drm-i915-Asynchronous-vma-unbinding/20220104-205238
base: git://anongit.freedesktop.org/drm-intel for-linux-next
config: x86_64-buildonly-randconfig-r001-20220106 (https://download.01.org/0day-ci/archive/20220106/202201062355.yUX5doeJ-lkp@intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project ca7ffe09dc6e525109e3cd570cc5182ce568be13)
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/b23720e8418513dff7cf35e04fb5af41ffeea98f
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Thomas-Hellstr-m/drm-i915-Asynchronous-vma-unbinding/20220104-205238
git checkout b23720e8418513dff7cf35e04fb5af41ffeea98f
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/gpu/drm/i915/ fs/nfs/ sound/x86/
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/i915/i915_vma_resource.c:262:25: warning: parameter 'end' set but not used [-Wunused-but-set-parameter]
unsigned long *end)
^
1 warning generated.
vim +/end +262 drivers/gpu/drm/i915/i915_vma_resource.c
258
259 static void
260 i915_vma_resource_color_adjust_range(struct i915_address_space *vm,
261 unsigned long *start,
> 262 unsigned long *end)
263 {
264 if (i915_vm_has_cache_coloring(vm)) {
265 if (start)
266 start -= I915_GTT_PAGE_SIZE;
267 end += I915_GTT_PAGE_SIZE;
268 }
269 }
270
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH v5 4/6] drm/i915: Use vma resources for async unbinding
Date: Fri, 07 Jan 2022 00:06:09 +0800 [thread overview]
Message-ID: <202201062355.yUX5doeJ-lkp@intel.com> (raw)
In-Reply-To: <20220104125132.35179-5-thomas.hellstrom@linux.intel.com>
[-- Attachment #1: Type: text/plain, Size: 2634 bytes --]
Hi "Thomas,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on drm-intel/for-linux-next]
[also build test WARNING on drm-tip/drm-tip drm/drm-next next-20220105]
[cannot apply to drm-exynos/exynos-drm-next tegra-drm/drm/tegra/for-next v5.16-rc8]
[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-Hellstr-m/drm-i915-Asynchronous-vma-unbinding/20220104-205238
base: git://anongit.freedesktop.org/drm-intel for-linux-next
config: x86_64-buildonly-randconfig-r001-20220106 (https://download.01.org/0day-ci/archive/20220106/202201062355.yUX5doeJ-lkp(a)intel.com/config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project ca7ffe09dc6e525109e3cd570cc5182ce568be13)
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/b23720e8418513dff7cf35e04fb5af41ffeea98f
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Thomas-Hellstr-m/drm-i915-Asynchronous-vma-unbinding/20220104-205238
git checkout b23720e8418513dff7cf35e04fb5af41ffeea98f
# save the config file to linux build tree
mkdir build_dir
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash drivers/gpu/drm/i915/ fs/nfs/ sound/x86/
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/i915/i915_vma_resource.c:262:25: warning: parameter 'end' set but not used [-Wunused-but-set-parameter]
unsigned long *end)
^
1 warning generated.
vim +/end +262 drivers/gpu/drm/i915/i915_vma_resource.c
258
259 static void
260 i915_vma_resource_color_adjust_range(struct i915_address_space *vm,
261 unsigned long *start,
> 262 unsigned long *end)
263 {
264 if (i915_vm_has_cache_coloring(vm)) {
265 if (start)
266 start -= I915_GTT_PAGE_SIZE;
267 end += I915_GTT_PAGE_SIZE;
268 }
269 }
270
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
next prev parent reply other threads:[~2022-01-06 16:12 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-04 12:51 [Intel-gfx] [PATCH v5 0/6] drm/i915: Asynchronous vma unbinding Thomas Hellström
2022-01-04 12:51 ` Thomas Hellström
2022-01-04 12:51 ` [Intel-gfx] [PATCH v5 1/6] drm/i915: Initial introduction of vma resources Thomas Hellström
2022-01-04 12:51 ` Thomas Hellström
2022-01-06 15:22 ` [Intel-gfx] " Matthew Auld
2022-01-06 15:22 ` Matthew Auld
2022-01-04 12:51 ` [Intel-gfx] [PATCH v5 2/6] drm/i915: Use the vma resource as argument for gtt binding / unbinding Thomas Hellström
2022-01-04 12:51 ` Thomas Hellström
2022-01-06 16:01 ` [Intel-gfx] " Matthew Auld
2022-01-06 16:01 ` Matthew Auld
2022-01-04 12:51 ` [Intel-gfx] [PATCH v5 3/6] drm/i915: Don't pin the object pages during pending vma binds Thomas Hellström
2022-01-04 12:51 ` Thomas Hellström
2022-01-06 16:08 ` [Intel-gfx] " Matthew Auld
2022-01-06 16:08 ` Matthew Auld
2022-01-04 12:51 ` [Intel-gfx] [PATCH v5 4/6] drm/i915: Use vma resources for async unbinding Thomas Hellström
2022-01-04 12:51 ` Thomas Hellström
2022-01-05 15:52 ` [Intel-gfx] " Matthew Auld
2022-01-05 15:52 ` Matthew Auld
2022-01-05 16:03 ` [Intel-gfx] " Thomas Hellström
2022-01-05 16:03 ` Thomas Hellström
2022-01-06 12:13 ` [Intel-gfx] " Matthew Auld
2022-01-06 12:13 ` Matthew Auld
2022-01-06 16:06 ` kernel test robot [this message]
2022-01-06 16:06 ` kernel test robot
2022-01-04 12:51 ` [Intel-gfx] [PATCH v5 5/6] drm/i915: Asynchronous migration selftest Thomas Hellström
2022-01-04 12:51 ` Thomas Hellström
2022-01-04 12:51 ` [Intel-gfx] [PATCH v5 6/6] drm/i915: Use struct vma_resource instead of struct vma_snapshot Thomas Hellström
2022-01-04 12:51 ` Thomas Hellström
2022-01-04 15:56 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Asynchronous vma unbinding (rev5) Patchwork
2022-01-04 15:58 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-01-04 16:10 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-01-04 17:52 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " 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=202201062355.yUX5doeJ-lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.org \
--cc=llvm@lists.linux.dev \
--cc=thomas.hellstrom@linux.intel.com \
/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.