[PATCH] drm/amdkfd: use kvcalloc() instead of kvmalloc() in kfd_migrate

Wang, Yang(Kevin) KevinYang.Wang at amd.com
Thu Apr 21 22:08:08 UTC 2022


[AMD Official Use Only]


________________________________
From: Kuehling, Felix <Felix.Kuehling at amd.com>
Sent: Thursday, April 21, 2022 10:55 PM
To: Wang, Yang(Kevin) <KevinYang.Wang at amd.com>; amd-gfx at lists.freedesktop.org <amd-gfx at lists.freedesktop.org>
Subject: Re: [PATCH] drm/amdkfd: use kvcalloc() instead of kvmalloc() in kfd_migrate

Am 2022-04-21 um 08:33 schrieb Yang Wang:
> simplify programming with existing functions.
>
> Signed-off-by: Yang Wang <KevinYang.Wang at amd.com>

Reviewed-by: Felix Kuehling <Felix.Kuehling at amd.com>

There is one more kvmalloc_array call with GFP_ZERO that could be
replaced with kvcalloc in svm_range_dma_map_dev in kfd_svm.c. Maybe fix
that one as well while you're at it.

Regards,
   Felix

[kevin]:

Thanks for reminder.
I will fix it before submitting.

Best Regards,
Kevin

> ---
>   drivers/gpu/drm/amd/amdkfd/kfd_migrate.c | 15 +++++++--------
>   1 file changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c b/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
> index 3a29d857640b..43cd47723946 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_migrate.c
> @@ -410,7 +410,6 @@ svm_migrate_vma_to_vram(struct amdgpu_device *adev, struct svm_range *prange,
>        struct migrate_vma migrate;
>        unsigned long cpages = 0;
>        dma_addr_t *scratch;
> -     size_t size;
>        void *buf;
>        int r = -ENOMEM;
>
> @@ -421,9 +420,9 @@ svm_migrate_vma_to_vram(struct amdgpu_device *adev, struct svm_range *prange,
>        migrate.flags = MIGRATE_VMA_SELECT_SYSTEM;
>        migrate.pgmap_owner = SVM_ADEV_PGMAP_OWNER(adev);
>
> -     size = 2 * sizeof(*migrate.src) + sizeof(uint64_t) + sizeof(dma_addr_t);
> -     size *= npages;
> -     buf = kvmalloc(size, GFP_KERNEL | __GFP_ZERO);
> +     buf = kvcalloc(npages,
> +                    2 * sizeof(*migrate.src) + sizeof(uint64_t) + sizeof(dma_addr_t),
> +                    GFP_KERNEL);
>        if (!buf)
>                goto out;
>
> @@ -665,7 +664,6 @@ svm_migrate_vma_to_ram(struct amdgpu_device *adev, struct svm_range *prange,
>        struct dma_fence *mfence = NULL;
>        struct migrate_vma migrate;
>        dma_addr_t *scratch;
> -     size_t size;
>        void *buf;
>        int r = -ENOMEM;
>
> @@ -676,9 +674,10 @@ svm_migrate_vma_to_ram(struct amdgpu_device *adev, struct svm_range *prange,
>        migrate.flags = MIGRATE_VMA_SELECT_DEVICE_PRIVATE;
>        migrate.pgmap_owner = SVM_ADEV_PGMAP_OWNER(adev);
>
> -     size = 2 * sizeof(*migrate.src) + sizeof(uint64_t) + sizeof(dma_addr_t);
> -     size *= npages;
> -     buf = kvmalloc(size, GFP_KERNEL | __GFP_ZERO);
> +     buf = kvcalloc(npages,
> +                    2 * sizeof(*migrate.src) + sizeof(uint64_t) + sizeof(dma_addr_t),
> +                    GFP_KERNEL);
> +
>        if (!buf)
>                goto out;
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/amd-gfx/attachments/20220421/03660c4b/attachment-0001.htm>


More information about the amd-gfx mailing list