* [drm-intel:drm-intel-nightly 2/7] drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:818:6: error: redefinition of 'amdgpu_ttm_tt_affect_userptr'
@ 2016-02-19 14:55 kbuild test robot
2016-02-19 15:04 ` Jani Nikula
0 siblings, 1 reply; 2+ messages in thread
From: kbuild test robot @ 2016-02-19 14:55 UTC (permalink / raw)
To: Dave Airlie; +Cc: Jani Nikula, intel-gfx, kbuild-all
[-- Attachment #1: Type: text/plain, Size: 2091 bytes --]
tree: git://anongit.freedesktop.org/drm-intel drm-intel-nightly
head: e7d04bf9d65001191a0b64e322bffa713280d132
commit: a77c4b431c465402d508e1c53a55ab9a11c2471f [2/7] Merge remote-tracking branch 'drm-upstream/drm-next' into drm-intel-nightly
config: i386-allmodconfig (attached as .config)
reproduce:
git checkout a77c4b431c465402d508e1c53a55ab9a11c2471f
# save the attached .config to linux build tree
make ARCH=i386
All errors (new ones prefixed by >>):
>> drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:818:6: error: redefinition of 'amdgpu_ttm_tt_affect_userptr'
bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
^
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:799:6: note: previous definition of 'amdgpu_ttm_tt_affect_userptr' was here
bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
^
vim +/amdgpu_ttm_tt_affect_userptr +818 drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
d7006964 Christian König 2016-02-08 812 if (gtt->userptr > end || gtt->userptr + size <= start)
d7006964 Christian König 2016-02-08 813 return false;
d7006964 Christian König 2016-02-08 814
d7006964 Christian König 2016-02-08 815 return true;
d38ceaf9 Alex Deucher 2015-04-20 816 }
d38ceaf9 Alex Deucher 2015-04-20 817
cc1de6e8 Christian König 2016-02-08 @818 bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
cc1de6e8 Christian König 2016-02-08 819 unsigned long end)
cc1de6e8 Christian König 2016-02-08 820 {
cc1de6e8 Christian König 2016-02-08 821 struct amdgpu_ttm_tt *gtt = (void *)ttm;
:::::: The code at line 818 was first introduced by commit
:::::: cc1de6e800c253172334f8774c419dc64401cd2e drm/amdgpu: fix issue with overlapping userptrs
:::::: TO: Christian König <christian.koenig@amd.com>
:::::: CC: Alex Deucher <alexander.deucher@amd.com>
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 53492 bytes --]
[-- Attachment #3: Type: text/plain, Size: 160 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [drm-intel:drm-intel-nightly 2/7] drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:818:6: error: redefinition of 'amdgpu_ttm_tt_affect_userptr'
2016-02-19 14:55 [drm-intel:drm-intel-nightly 2/7] drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:818:6: error: redefinition of 'amdgpu_ttm_tt_affect_userptr' kbuild test robot
@ 2016-02-19 15:04 ` Jani Nikula
0 siblings, 0 replies; 2+ messages in thread
From: Jani Nikula @ 2016-02-19 15:04 UTC (permalink / raw)
To: kbuild test robot, Dave Airlie; +Cc: intel-gfx, kbuild-all
Okay, so I screwed up the conflict resolution in our integration
tree. Nothing to worry about here, as long as whoever does the
merge/backmerge with the real trees doesn't do the same mistake.
BR,
Jani.
On Fri, 19 Feb 2016, kbuild test robot <fengguang.wu@intel.com> wrote:
> tree: git://anongit.freedesktop.org/drm-intel drm-intel-nightly
> head: e7d04bf9d65001191a0b64e322bffa713280d132
> commit: a77c4b431c465402d508e1c53a55ab9a11c2471f [2/7] Merge remote-tracking branch 'drm-upstream/drm-next' into drm-intel-nightly
> config: i386-allmodconfig (attached as .config)
> reproduce:
> git checkout a77c4b431c465402d508e1c53a55ab9a11c2471f
> # save the attached .config to linux build tree
> make ARCH=i386
>
> All errors (new ones prefixed by >>):
>
>>> drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:818:6: error: redefinition of 'amdgpu_ttm_tt_affect_userptr'
> bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
> ^
> drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:799:6: note: previous definition of 'amdgpu_ttm_tt_affect_userptr' was here
> bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
> ^
>
> vim +/amdgpu_ttm_tt_affect_userptr +818 drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
>
> d7006964 Christian König 2016-02-08 812 if (gtt->userptr > end || gtt->userptr + size <= start)
> d7006964 Christian König 2016-02-08 813 return false;
> d7006964 Christian König 2016-02-08 814
> d7006964 Christian König 2016-02-08 815 return true;
> d38ceaf9 Alex Deucher 2015-04-20 816 }
> d38ceaf9 Alex Deucher 2015-04-20 817
> cc1de6e8 Christian König 2016-02-08 @818 bool amdgpu_ttm_tt_affect_userptr(struct ttm_tt *ttm, unsigned long start,
> cc1de6e8 Christian König 2016-02-08 819 unsigned long end)
> cc1de6e8 Christian König 2016-02-08 820 {
> cc1de6e8 Christian König 2016-02-08 821 struct amdgpu_ttm_tt *gtt = (void *)ttm;
>
> :::::: The code at line 818 was first introduced by commit
> :::::: cc1de6e800c253172334f8774c419dc64401cd2e drm/amdgpu: fix issue with overlapping userptrs
>
> :::::: TO: Christian König <christian.koenig@amd.com>
> :::::: CC: Alex Deucher <alexander.deucher@amd.com>
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
--
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-02-19 15:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-19 14:55 [drm-intel:drm-intel-nightly 2/7] drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c:818:6: error: redefinition of 'amdgpu_ttm_tt_affect_userptr' kbuild test robot
2016-02-19 15:04 ` Jani Nikula
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.