All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>,
	intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>,
	llvm@lists.linux.dev, kbuild-all@lists.01.org,
	matthew.auld@intel.com
Subject: Re: [Intel-gfx] [PATCH v6 1/6] drm/i915: Add support for moving fence waiting
Date: Mon, 22 Nov 2021 23:54:04 +0800	[thread overview]
Message-ID: <202111222311.HTpRTcee-lkp@intel.com> (raw)
In-Reply-To: <20211122082252.223689-2-thomas.hellstrom@linux.intel.com>

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

Hi "Thomas,

I love your patch! Perhaps something to improve:

[auto build test WARNING on drm-tip/drm-tip]
[also build test WARNING on drm-exynos/exynos-drm-next drm/drm-next v5.16-rc2 next-20211118]
[cannot apply to drm-intel/for-linux-next tegra-drm/drm/tegra/for-next airlied/drm-next]
[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-ttm-Async-migration/20211122-162430
base:   git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: x86_64-randconfig-a004-20211122 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project c133fb321f7ca6083ce15b6aa5bf89de6600e649)
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/387d80b6342f138213ce6e79e84459597b4a0394
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Thomas-Hellstr-m/drm-i915-ttm-Async-migration/20211122-162430
        git checkout 387d80b6342f138213ce6e79e84459597b4a0394
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross 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/i915/i915_vma.c:356:12: warning: function 'i915_vma_verify_bind_complete' is not needed and will not be emitted [-Wunneeded-internal-declaration]
   static int i915_vma_verify_bind_complete(struct i915_vma *vma)
              ^
   1 warning generated.


vim +/i915_vma_verify_bind_complete +356 drivers/gpu/drm/i915/i915_vma.c

   355	
 > 356	static int i915_vma_verify_bind_complete(struct i915_vma *vma)
   357	{
   358		int err = 0;
   359	
   360		if (i915_active_has_exclusive(&vma->active)) {
   361			struct dma_fence *fence =
   362				i915_active_fence_get(&vma->active.excl);
   363	
   364			if (!fence)
   365				return 0;
   366	
   367			if (dma_fence_is_signaled(fence))
   368				err = fence->error;
   369			else
   370				err = -EBUSY;
   371	
   372			dma_fence_put(fence);
   373		}
   374	
   375		return err;
   376	}
   377	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>,
	intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org
Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org,
	"Thomas Hellström" <thomas.hellstrom@linux.intel.com>,
	matthew.auld@intel.com
Subject: Re: [Intel-gfx] [PATCH v6 1/6] drm/i915: Add support for moving fence waiting
Date: Mon, 22 Nov 2021 23:54:04 +0800	[thread overview]
Message-ID: <202111222311.HTpRTcee-lkp@intel.com> (raw)
In-Reply-To: <20211122082252.223689-2-thomas.hellstrom@linux.intel.com>

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

Hi "Thomas,

I love your patch! Perhaps something to improve:

[auto build test WARNING on drm-tip/drm-tip]
[also build test WARNING on drm-exynos/exynos-drm-next drm/drm-next v5.16-rc2 next-20211118]
[cannot apply to drm-intel/for-linux-next tegra-drm/drm/tegra/for-next airlied/drm-next]
[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-ttm-Async-migration/20211122-162430
base:   git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: x86_64-randconfig-a004-20211122 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project c133fb321f7ca6083ce15b6aa5bf89de6600e649)
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/387d80b6342f138213ce6e79e84459597b4a0394
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Thomas-Hellstr-m/drm-i915-ttm-Async-migration/20211122-162430
        git checkout 387d80b6342f138213ce6e79e84459597b4a0394
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross 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/i915/i915_vma.c:356:12: warning: function 'i915_vma_verify_bind_complete' is not needed and will not be emitted [-Wunneeded-internal-declaration]
   static int i915_vma_verify_bind_complete(struct i915_vma *vma)
              ^
   1 warning generated.


vim +/i915_vma_verify_bind_complete +356 drivers/gpu/drm/i915/i915_vma.c

   355	
 > 356	static int i915_vma_verify_bind_complete(struct i915_vma *vma)
   357	{
   358		int err = 0;
   359	
   360		if (i915_active_has_exclusive(&vma->active)) {
   361			struct dma_fence *fence =
   362				i915_active_fence_get(&vma->active.excl);
   363	
   364			if (!fence)
   365				return 0;
   366	
   367			if (dma_fence_is_signaled(fence))
   368				err = fence->error;
   369			else
   370				err = -EBUSY;
   371	
   372			dma_fence_put(fence);
   373		}
   374	
   375		return err;
   376	}
   377	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

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

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [Intel-gfx] [PATCH v6 1/6] drm/i915: Add support for moving fence waiting
Date: Mon, 22 Nov 2021 23:54:04 +0800	[thread overview]
Message-ID: <202111222311.HTpRTcee-lkp@intel.com> (raw)
In-Reply-To: <20211122082252.223689-2-thomas.hellstrom@linux.intel.com>

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

Hi "Thomas,

I love your patch! Perhaps something to improve:

[auto build test WARNING on drm-tip/drm-tip]
[also build test WARNING on drm-exynos/exynos-drm-next drm/drm-next v5.16-rc2 next-20211118]
[cannot apply to drm-intel/for-linux-next tegra-drm/drm/tegra/for-next airlied/drm-next]
[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-ttm-Async-migration/20211122-162430
base:   git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: x86_64-randconfig-a004-20211122 (attached as .config)
compiler: clang version 14.0.0 (https://github.com/llvm/llvm-project c133fb321f7ca6083ce15b6aa5bf89de6600e649)
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/387d80b6342f138213ce6e79e84459597b4a0394
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Thomas-Hellstr-m/drm-i915-ttm-Async-migration/20211122-162430
        git checkout 387d80b6342f138213ce6e79e84459597b4a0394
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross 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/i915/i915_vma.c:356:12: warning: function 'i915_vma_verify_bind_complete' is not needed and will not be emitted [-Wunneeded-internal-declaration]
   static int i915_vma_verify_bind_complete(struct i915_vma *vma)
              ^
   1 warning generated.


vim +/i915_vma_verify_bind_complete +356 drivers/gpu/drm/i915/i915_vma.c

   355	
 > 356	static int i915_vma_verify_bind_complete(struct i915_vma *vma)
   357	{
   358		int err = 0;
   359	
   360		if (i915_active_has_exclusive(&vma->active)) {
   361			struct dma_fence *fence =
   362				i915_active_fence_get(&vma->active.excl);
   363	
   364			if (!fence)
   365				return 0;
   366	
   367			if (dma_fence_is_signaled(fence))
   368				err = fence->error;
   369			else
   370				err = -EBUSY;
   371	
   372			dma_fence_put(fence);
   373		}
   374	
   375		return err;
   376	}
   377	

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

  reply	other threads:[~2021-11-22 15:55 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-22  8:22 [Intel-gfx] [PATCH v6 0/6] drm/i915/ttm: Async migration Thomas Hellström
2021-11-22  8:22 ` Thomas Hellström
2021-11-22  8:22 ` [Intel-gfx] [PATCH v6 1/6] drm/i915: Add support for moving fence waiting Thomas Hellström
2021-11-22  8:22   ` Thomas Hellström
2021-11-22 15:54   ` kernel test robot [this message]
2021-11-22 15:54     ` [Intel-gfx] " kernel test robot
2021-11-22 15:54     ` kernel test robot
2021-11-22 19:39   ` kernel test robot
2021-11-22 19:39     ` kernel test robot
2021-11-22 19:39     ` kernel test robot
2021-11-22  8:22 ` [Intel-gfx] [PATCH v6 2/6] drm/i915/ttm: Move the i915_gem_obj_copy_ttm() function Thomas Hellström
2021-11-22  8:22   ` Thomas Hellström
2021-11-22  8:22 ` [Intel-gfx] [PATCH v6 3/6] drm/i915/ttm: Drop region reference counting Thomas Hellström
2021-11-22  8:22   ` Thomas Hellström
2021-11-22  8:22 ` [Intel-gfx] [PATCH v6 4/6] drm/i915/ttm: Correctly handle waiting for gpu when shrinking Thomas Hellström
2021-11-22  8:22   ` Thomas Hellström
2021-11-22  8:22 ` [Intel-gfx] [PATCH v6 5/6] drm/i915/ttm: Implement asynchronous TTM moves Thomas Hellström
2021-11-22  8:22   ` Thomas Hellström
2021-11-22  8:22 ` [Intel-gfx] [PATCH v6 6/6] drm/i915/ttm: Update i915_gem_obj_copy_ttm() to be asynchronous Thomas Hellström
2021-11-22  8:22   ` Thomas Hellström
2021-11-22 13:31 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915/ttm: Async migration (rev7) Patchwork
2021-11-22 14:02 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2021-11-22 14:54   ` Thomas Hellström
2021-11-22 18:01     ` Vudum, Lakshminarayana
2021-11-22 16:37 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-11-22 20:35 ` [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=202111222311.HTpRTcee-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=kbuild-all@lists.01.org \
    --cc=llvm@lists.linux.dev \
    --cc=matthew.auld@intel.com \
    --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.