Re: [PATCH v4 1/3] drm/amdgpu: do not pass ttm_resource_manager to gtt_mgr

2021-10-22 Thread Das, Nirmoy
On 10/22/2021 1:46 PM, Christian König wrote: Reviewed-by: Christian König for the entire series. But please keep in mind that this here needs extensive testing. I will do multiple round of test again on gfx7-10 cards and gfx9 APU that I have but I don't have gfx6 and sriov cards to

Re: [PATCH v4 1/3] drm/amdgpu: do not pass ttm_resource_manager to gtt_mgr

2021-10-22 Thread Christian König
Reviewed-by: Christian König for the entire series. But please keep in mind that this here needs extensive testing. Thanks, Christian. Am 22.10.21 um 12:54 schrieb Nirmoy Das: Do not allow exported amdgpu_gtt_mgr_*() to accept any ttm_resource_manager pointer. Also there is no need to force

[PATCH v4 1/3] drm/amdgpu: do not pass ttm_resource_manager to gtt_mgr

2021-10-22 Thread Nirmoy Das
Do not allow exported amdgpu_gtt_mgr_*() to accept any ttm_resource_manager pointer. Also there is no need to force other module to call a ttm function just to eventually call gtt_mgr functions. v4: remove unused adev. v3: upcast mgr from ttm resopurce manager instead of getting it from adev. v2: