[Intel-gfx] [PATCH 02/10] drm/i915: Use insert_page for pwrite_fast
kbuild test robot
lkp at intel.com
Mon Dec 21 22:55:19 PST 2015
Hi Ankitprasad,
[auto build test ERROR on drm-intel/for-linux-next]
[also build test ERROR on v4.4-rc6 next-20151221]
url: https://github.com/0day-ci/linux/commits/ankitprasad-r-sharma-intel-com/Support-for-creating-using-Stolen-memory-backed-objects/20151222-144648
base: git://anongit.freedesktop.org/drm-intel for-linux-next
config: x86_64-randconfig-x010-201551 (attached as .config)
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64
All errors (new ones prefixed by >>):
drivers/gpu/drm/i915/i915_gem.c: In function 'i915_gem_gtt_pwrite_fast':
>> drivers/gpu/drm/i915/i915_gem.c:836:18: error: 'struct i915_address_space' has no member named 'insert_page'
i915->gtt.base.insert_page(&i915->gtt.base,
^
>> drivers/gpu/drm/i915/i915_gem.c:837:10: error: implicit declaration of function 'i915_gem_object_get_dma_address' [-Werror=implicit-function-declaration]
i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
^
cc1: some warnings being treated as errors
vim +836 drivers/gpu/drm/i915/i915_gem.c
830 u32 page_base = node.start;
831 unsigned page_offset = offset_in_page(offset);
832 unsigned page_length = PAGE_SIZE - page_offset;
833 page_length = remain < page_length ? remain : page_length;
834 if (node.allocated) {
835 wmb();
> 836 i915->gtt.base.insert_page(&i915->gtt.base,
> 837 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
838 node.start,
839 I915_CACHE_NONE,
840 0);
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
-------------- next part --------------
A non-text attachment was scrubbed...
Name: .config.gz
Type: application/octet-stream
Size: 23685 bytes
Desc: not available
URL: <http://lists.freedesktop.org/archives/intel-gfx/attachments/20151222/1a0bb082/attachment-0001.obj>
More information about the Intel-gfx
mailing list