Commit 8f4729e8 authored by Kent Russell's avatar Kent Russell Committed by Alex Deucher
Browse files

drm/amdkfd: Use kvfree in destroy_crat_image



Now that we use kvmalloc for the crat_image, we need to use kvfree when
we destroy this.

Fixes: d0e63b34 ("drm/amdkfd: Use kvmalloc instead of kmalloc for VCRAT")
Reported-by: default avatarMorris Zhang <shiwu.zhang@amd.clm>
Signed-off-by: default avatarKent Russell <kent.russell@amd.com>
Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 187561dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1426,5 +1426,5 @@ int kfd_create_crat_image_virtual(void **crat_image, size_t *size,
 */
void kfd_destroy_crat_image(void *crat_image)
{
	kfree(crat_image);
	kvfree(crat_image);
}