dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Dave Airlie <airlied@gmail.com>, dri-devel@lists.freedesktop.org
Cc: clang-built-linux@googlegroups.com, kbuild-all@lists.01.org,
	bskeggs@redhat.com, christian.koenig@amd.com
Subject: Re: [PATCH 3/4] drm/ttm: drop size from resource manager base class.
Date: Fri, 7 Aug 2020 15:17:57 +0800	[thread overview]
Message-ID: <202008071553.E0adXsM3%lkp@intel.com> (raw)
In-Reply-To: <20200806233459.4057784-4-airlied@gmail.com>

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

Hi Dave,

I love your patch! Perhaps something to improve:

[auto build test WARNING on drm-tip/drm-tip]
[cannot apply to drm-intel/for-linux-next tegra-drm/drm/tegra/for-next linus/master drm/drm-next drm-exynos/exynos-drm-next v5.8 next-20200806]
[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/Dave-Airlie/drm-amdgpu-ttm-move-vram-gtt-mgr-allocations-to-mman/20200807-083526
base:   git://anongit.freedesktop.org/drm/drm-tip drm-tip
config: x86_64-randconfig-a004-20200805 (attached as .config)
compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project aa57cabae2fc5abc08ab3e17b45f2890fc7c9e42)
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: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> drivers/gpu/drm/amd/amdgpu/amdgpu_object.c:474:5: warning: format specifies type 'unsigned long long' but the argument has type 'unsigned long' [-Wformat]
                     mgr_size << PAGE_SHIFT);
                     ^~~~~~~~~~~~~~~~~~~~~~
   include/drm/drm_print.h:490:32: note: expanded from macro 'DRM_DEBUG'
           __drm_dbg(DRM_UT_CORE, fmt, ##__VA_ARGS__)
                                  ~~~    ^~~~~~~~~~~
   drivers/gpu/drm/amd/amdgpu/amdgpu_object.c:493:2: warning: Please enable CONFIG_MTRR and CONFIG_X86_PAT for better performance 	 thanks to write-combining [-W#warnings]
   #warning Please enable CONFIG_MTRR and CONFIG_X86_PAT for better performance \
    ^
   2 warnings generated.

vim +474 drivers/gpu/drm/amd/amdgpu/amdgpu_object.c

   440	
   441	/* Validate bo size is bit bigger then the request domain */
   442	static bool amdgpu_bo_validate_size(struct amdgpu_device *adev,
   443						  unsigned long size, u32 domain)
   444	{
   445		unsigned long mgr_size = 0;
   446		/*
   447		 * If GTT is part of requested domains the check must succeed to
   448		 * allow fall back to GTT
   449		 */
   450		if (domain & AMDGPU_GEM_DOMAIN_GTT) {
   451			mgr_size = to_gtt_mgr(ttm_manager_type(&adev->mman.bdev, TTM_PL_TT))->size;
   452	
   453			if (size < (mgr_size << PAGE_SHIFT))
   454				return true;
   455			else
   456				goto fail;
   457		}
   458	
   459		if (domain & AMDGPU_GEM_DOMAIN_VRAM) {
   460			mgr_size = to_vram_mgr(ttm_manager_type(&adev->mman.bdev, TTM_PL_TT))->size;
   461	
   462			if (size < (mgr_size << PAGE_SHIFT))
   463				return true;
   464			else
   465				goto fail;
   466		}
   467	
   468	
   469		/* TODO add more domains checks, such as AMDGPU_GEM_DOMAIN_CPU */
   470		return true;
   471	
   472	fail:
   473		DRM_DEBUG("BO size %lu > total memory in domain: %llu\n", size,
 > 474			  mgr_size << PAGE_SHIFT);
   475		return false;
   476	}
   477	

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

[-- Attachment #3: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  parent reply	other threads:[~2020-08-07  7:18 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-06 23:34 further small ttm cleanups Dave Airlie
2020-08-06 23:34 ` [PATCH 1/4] drm/amdgpu/ttm: move vram/gtt mgr allocations to mman Dave Airlie
2020-08-07  9:17   ` Christian König
2020-08-06 23:34 ` [PATCH 2/4] drm/amdgpu/ttm: drop the adev link from vram mgr Dave Airlie
2020-08-07  9:18   ` Christian König
2020-08-06 23:34 ` [PATCH 3/4] drm/ttm: drop size from resource manager base class Dave Airlie
2020-08-07  3:50   ` kernel test robot
2020-08-07  4:46   ` kernel test robot
2020-08-07  7:17   ` kernel test robot [this message]
2020-08-07  9:22   ` Christian König
2020-08-06 23:34 ` [PATCH 4/4] drm/ttm/nouveau: move io_lru storage into driver Dave Airlie
2020-08-07 12:22   ` Christian König
2020-08-09  4:34   ` [drm/ttm/nouveau] c36a1cfe1b: BUG:kernel_NULL_pointer_dereference,address kernel test robot

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=202008071553.E0adXsM3%lkp@intel.com \
    --to=lkp@intel.com \
    --cc=airlied@gmail.com \
    --cc=bskeggs@redhat.com \
    --cc=christian.koenig@amd.com \
    --cc=clang-built-linux@googlegroups.com \
    --cc=dri-devel@lists.freedesktop.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox