Re: [PATCH v2] drm/amdgpu: conditionally compile amdgpu's amdkfd files

2018-05-18 Thread Felix Kuehling
On 2018-05-18 05:57 PM, Oded Gabbay wrote: >>> +struct kfd2kgd_calls *amdgpu_amdkfd_gfx_7_get_functions(void) >>> +{ >>> + return NULL; >> I think this will cause an oops in amdgpu_amdkfd_probe because that >> function doesn't handle kgd2kfd == NULL. You could remove >> amdgpu_amdkfd_gfx_*_get_

Re: [PATCH v2] drm/amdgpu: conditionally compile amdgpu's amdkfd files

2018-05-18 Thread Oded Gabbay
On Fri, May 18, 2018 at 11:06 PM, Felix Kuehling wrote: > Two more comments inline. One cosmetic, one real issue. With that fixed, > this patch is Reviewed-by: Felix Kuehling > > Regards, > Felix > > On 2018-05-18 03:42 PM, Oded Gabbay wrote: >> In case CONFIG_HSA_AMD is not chosen, there is no

Re: [PATCH v2] drm/amdgpu: conditionally compile amdgpu's amdkfd files

2018-05-18 Thread Felix Kuehling
Two more comments inline. One cosmetic, one real issue. With that fixed, this patch is Reviewed-by: Felix Kuehling Regards,   Felix On 2018-05-18 03:42 PM, Oded Gabbay wrote: > In case CONFIG_HSA_AMD is not chosen, there is no need to compile amdkfd > files that reside inside amdgpu dirver. In a

[PATCH v2] drm/amdgpu: conditionally compile amdgpu's amdkfd files

2018-05-18 Thread Oded Gabbay
In case CONFIG_HSA_AMD is not chosen, there is no need to compile amdkfd files that reside inside amdgpu dirver. In addition, because amdkfd depends on x86_64 architecture and amdgpu is not, compiling amdkfd files under i386 architecture can cause compiler errors and warnings. This patch modifies