public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>,
	intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: paulo.r.zanoni@intel.com, jani.nikula@intel.com,
	llvm@lists.linux.dev, thomas.hellstrom@intel.com,
	matthew.auld@intel.com, oe-kbuild-all@lists.linux.dev,
	daniel.vetter@intel.com, christian.koenig@amd.com
Subject: Re: [Intel-gfx] [PATCH v5 05/19] drm/i915/vm_bind: Implement bind and unbind of object
Date: Tue, 25 Oct 2022 20:04:31 +0800	[thread overview]
Message-ID: <202210252057.nJHRF0IZ-lkp@intel.com> (raw)
In-Reply-To: <20221025065905.13325-6-niranjana.vishwanathapura@intel.com>

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

Hi Niranjana,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on drm-tip/drm-tip]

url:    https://github.com/intel-lab-lkp/linux/commits/Niranjana-Vishwanathapura/drm-i915-vm_bind-Add-VM_BIND-functionality/20221025-150246
base:   git://anongit.freedesktop.org/drm/drm-tip drm-tip
patch link:    https://lore.kernel.org/r/20221025065905.13325-6-niranjana.vishwanathapura%40intel.com
patch subject: [Intel-gfx] [PATCH v5 05/19] drm/i915/vm_bind: Implement bind and unbind of object
config: i386-randconfig-a003-20221024 (attached as .config)
compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1)
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/intel-lab-lkp/linux/commit/493d35709c7a1fafd30f53c539e36cec9a1f9fb8
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Niranjana-Vishwanathapura/drm-i915-vm_bind-Add-VM_BIND-functionality/20221025-150246
        git checkout 493d35709c7a1fafd30f53c539e36cec9a1f9fb8
        # save the config file
        mkdir build_dir && cp config build_dir/.config
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=i386 SHELL=/bin/bash

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

All errors (new ones prefixed by >>):

>> drivers/gpu/drm/i915/gem/i915_gem_vm_bind_object.c:18:1: error: unused function 'i915_vm_bind_it_iter_next' [-Werror,-Wunused-function]
   INTERVAL_TREE_DEFINE(struct i915_vma, rb, u64, __subtree_last,
   ^
   include/linux/interval_tree_generic.h:151:33: note: expanded from macro 'INTERVAL_TREE_DEFINE'
   ITSTATIC ITSTRUCT *                                                           \
                                                                                 ^
   <scratch space>:88:1: note: expanded from here
   i915_vm_bind_it_iter_next
   ^
   1 error generated.


vim +/i915_vm_bind_it_iter_next +18 drivers/gpu/drm/i915/gem/i915_gem_vm_bind_object.c

    17	
  > 18	INTERVAL_TREE_DEFINE(struct i915_vma, rb, u64, __subtree_last,
    19			     START, LAST, static inline, i915_vm_bind_it)
    20	

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 33949 bytes --]

  reply	other threads:[~2022-10-25 12:05 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-25  6:58 [Intel-gfx] [PATCH v5 00/19] drm/i915/vm_bind: Add VM_BIND functionality Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 01/19] drm/i915/vm_bind: Expose vm lookup function Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 02/19] drm/i915/vm_bind: Add __i915_sw_fence_await_reservation() Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 03/19] drm/i915/vm_bind: Expose i915_gem_object_max_page_size() Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 04/19] drm/i915/vm_bind: Add support to create persistent vma Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 05/19] drm/i915/vm_bind: Implement bind and unbind of object Niranjana Vishwanathapura
2022-10-25 12:04   ` kernel test robot [this message]
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 06/19] drm/i915/vm_bind: Support for VM private BOs Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 07/19] drm/i915/vm_bind: Add support to handle object evictions Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 08/19] drm/i915/vm_bind: Support persistent vma activeness tracking Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 09/19] drm/i915/vm_bind: Add out fence support Niranjana Vishwanathapura
2022-10-26 17:15   ` Matthew Auld
2022-10-26 18:59     ` Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 10/19] drm/i915/vm_bind: Abstract out common execbuf functions Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 11/19] drm/i915/vm_bind: Use common execbuf functions in execbuf path Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 12/19] drm/i915/vm_bind: Implement I915_GEM_EXECBUFFER3 ioctl Niranjana Vishwanathapura
2022-10-25  6:58 ` [Intel-gfx] [PATCH v5 13/19] drm/i915/vm_bind: Update i915_vma_verify_bind_complete() Niranjana Vishwanathapura
2022-10-25  6:59 ` [Intel-gfx] [PATCH v5 14/19] drm/i915/vm_bind: Expose i915_request_await_bind() Niranjana Vishwanathapura
2022-10-25  6:59 ` [Intel-gfx] [PATCH v5 15/19] drm/i915/vm_bind: Handle persistent vmas in execbuf3 Niranjana Vishwanathapura
2022-10-25  6:59 ` [Intel-gfx] [PATCH v5 16/19] drm/i915/vm_bind: userptr dma-resv changes Niranjana Vishwanathapura
2022-10-26 17:17   ` Matthew Auld
2022-10-25  6:59 ` [Intel-gfx] [PATCH v5 17/19] drm/i915/vm_bind: Limit vm_bind mode to non-recoverable contexts Niranjana Vishwanathapura
2022-10-26 14:05   ` Matthew Auld
2022-10-25  6:59 ` [Intel-gfx] [PATCH v5 18/19] drm/i915/vm_bind: Add uapi for user to enable vm_bind_mode Niranjana Vishwanathapura
2022-10-28  9:31   ` Andi Shyti
2022-10-25  6:59 ` [Intel-gfx] [PATCH v5 19/19] drm/i915/vm_bind: Render VM_BIND documentation Niranjana Vishwanathapura
2022-10-26 17:20   ` Matthew Auld
2022-10-25  8:57 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/vm_bind: Add VM_BIND functionality (rev8) Patchwork
2022-10-25  8:57 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-10-25  9:20 ` [Intel-gfx] ✗ Fi.CI.BAT: 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=202210252057.nJHRF0IZ-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=christian.koenig@amd.com \
    --cc=daniel.vetter@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@intel.com \
    --cc=llvm@lists.linux.dev \
    --cc=matthew.auld@intel.com \
    --cc=niranjana.vishwanathapura@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=paulo.r.zanoni@intel.com \
    --cc=thomas.hellstrom@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox