All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Zeng, Oak" <Oak.Zeng@amd.com>
To: "Kuehling, Felix" <Felix.Kuehling@amd.com>,
	"amd-gfx@lists.freedesktop.org" <amd-gfx@lists.freedesktop.org>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH v2 08/10] drm/amdgpu: Add DMA mapping of GTT BOs
Date: Tue, 27 Apr 2021 00:35:44 +0000	[thread overview]
Message-ID: <41596C42-CA28-4912-A47A-741916D6A4D9@amd.com> (raw)
In-Reply-To: <20210422013058.6305-9-Felix.Kuehling@amd.com>



Regards,
Oak 

 

On 2021-04-21, 9:31 PM, "amd-gfx on behalf of Felix Kuehling" <amd-gfx-bounces@lists.freedesktop.org on behalf of Felix.Kuehling@amd.com> wrote:

    Use DMABufs with dynamic attachment to DMA-map GTT BOs on other GPUs.

    Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
    ---
     drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h    |  2 +
     .../gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c  | 76 ++++++++++++++++++-
     2 files changed, 77 insertions(+), 1 deletion(-)

    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
    index 63668433f5a6..b706e5a54782 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
    @@ -41,6 +41,7 @@ struct amdgpu_device;
     enum kfd_mem_attachment_type {
     	KFD_MEM_ATT_SHARED,	/* Share kgd_mem->bo or another attachment's */
     	KFD_MEM_ATT_USERPTR,	/* SG bo to DMA map pages from a userptr bo */
    +	KFD_MEM_ATT_DMABUF,	/* DMAbuf to DMA map TTM BOs */
     };

     struct kfd_mem_attachment {
    @@ -56,6 +57,7 @@ struct kfd_mem_attachment {
     struct kgd_mem {
     	struct mutex lock;
     	struct amdgpu_bo *bo;
    +	struct dma_buf *dmabuf;
     	struct list_head attachments;
     	/* protected by amdkfd_process_info.lock */
     	struct ttm_validate_buffer validate_list;
    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
    index 9eeedd0c7920..18a1f9222a59 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
    @@ -524,6 +524,16 @@ kfd_mem_dmamap_userptr(struct kgd_mem *mem,
     	return ret;
     }

    +static int
    +kfd_mem_dmamap_dmabuf(struct kfd_mem_attachment *attachment)
    +{
    +	struct ttm_operation_ctx ctx = {.interruptible = true};
    +	struct amdgpu_bo *bo = attachment->bo_va->base.bo;
    +
    +	amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT);
    +	return ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
How does this work? The function name says this is dma mapping a buffer but from the implementation, it is just a placement and validation
    +}
    +
     static int
     kfd_mem_dmamap_attachment(struct kgd_mem *mem,
     			  struct kfd_mem_attachment *attachment)
    @@ -533,6 +543,8 @@ kfd_mem_dmamap_attachment(struct kgd_mem *mem,
     		return 0;
     	case KFD_MEM_ATT_USERPTR:
     		return kfd_mem_dmamap_userptr(mem, attachment);
    +	case KFD_MEM_ATT_DMABUF:
    +		return kfd_mem_dmamap_dmabuf(attachment);
     	default:
     		WARN_ON_ONCE(1);
     	}
    @@ -562,6 +574,19 @@ kfd_mem_dmaunmap_userptr(struct kgd_mem *mem,
     	ttm->sg = NULL;
     }

    +static void
    +kfd_mem_dmaunmap_dmabuf(struct kfd_mem_attachment *attachment)
    +{
    +	struct ttm_operation_ctx ctx = {.interruptible = true};
    +	struct amdgpu_bo *bo = attachment->bo_va->base.bo;
    +
    +	amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU);
    +	ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
    +	/* FIXME: This does not guarantee that amdgpu_ttm_tt_unpopulate is
    +	 * called
    +	 */
    +}
    +
     static void
     kfd_mem_dmaunmap_attachment(struct kgd_mem *mem,
     			    struct kfd_mem_attachment *attachment)
    @@ -572,6 +597,9 @@ kfd_mem_dmaunmap_attachment(struct kgd_mem *mem,
     	case KFD_MEM_ATT_USERPTR:
     		kfd_mem_dmaunmap_userptr(mem, attachment);
     		break;
    +	case KFD_MEM_ATT_DMABUF:
    +		kfd_mem_dmaunmap_dmabuf(attachment);
    +		break;
     	default:
     		WARN_ON_ONCE(1);
     	}
    @@ -605,6 +633,38 @@ kfd_mem_attach_userptr(struct amdgpu_device *adev, struct kgd_mem *mem,
     	return 0;
     }

    +static int
    +kfd_mem_attach_dmabuf(struct amdgpu_device *adev, struct kgd_mem *mem,
    +		      struct amdgpu_bo **bo)
    +{
    +	struct drm_gem_object *gobj;
    +
    +	if (!mem->dmabuf) {
    +		mem->dmabuf = amdgpu_gem_prime_export(&mem->bo->tbo.base,
    +			mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE ?
    +				DRM_RDWR : 0);
    +		if (IS_ERR(mem->dmabuf)) {
    +			mem->dmabuf = NULL;
    +			return PTR_ERR(mem->dmabuf);
    +		}
    +	}
    +
    +	gobj = amdgpu_gem_prime_import(&adev->ddev, mem->dmabuf);
    +	if (IS_ERR(gobj))
    +		return PTR_ERR(gobj);
    +
    +	/* Import takes an extra reference on the dmabuf. Drop it now to
    +	 * avoid leaking it. We only need the one reference in
    +	 * kgd_mem->dmabuf.
    +	 */
    +	dma_buf_put(mem->dmabuf);
    +
    +	*bo = gem_to_amdgpu_bo(gobj);
    +	(*bo)->parent = amdgpu_bo_ref(mem->bo);
    +
    +	return 0;
    +}
    +
     /* kfd_mem_attach - Add a BO to a VM
      *
      * Everything that needs to bo done only once when a BO is first added
    @@ -662,8 +722,20 @@ static int kfd_mem_attach(struct amdgpu_device *adev, struct kgd_mem *mem,
     			ret = kfd_mem_attach_userptr(adev, mem, &bo[i]);
     			if (ret)
     				goto unwind;
    +		} else if (mem->domain == AMDGPU_GEM_DOMAIN_GTT &&
    +			   mem->bo->tbo.type != ttm_bo_type_sg) {
    +			/* GTT BOs use DMA-mapping ability of dynamic-attach
    +			 * DMA bufs. TODO: The same should work for VRAM on
    +			 * large-BAR GPUs.
    +			 */
    +			attachment[i]->type = KFD_MEM_ATT_DMABUF;
    +			ret = kfd_mem_attach_dmabuf(adev, mem, &bo[i]);
    +			if (ret)
    +				goto unwind;
     		} else {
    -			/* FIXME: Need to DMA-map other BO types */
    +			/* FIXME: Need to DMA-map other BO types:
    +			 * large-BAR VRAM, doorbells, MMIO remap
    +			 */
     			attachment[i]->type = KFD_MEM_ATT_SHARED;
     			bo[i] = mem->bo;
     			drm_gem_object_get(&bo[i]->tbo.base);
    @@ -1522,6 +1594,8 @@ int amdgpu_amdkfd_gpuvm_free_memory_of_gpu(

     	/* Free the BO*/
     	drm_vma_node_revoke(&mem->bo->tbo.base.vma_node, drm_priv);
    +	if (mem->dmabuf)
    +		dma_buf_put(mem->dmabuf);
     	drm_gem_object_put(&mem->bo->tbo.base);
     	mutex_destroy(&mem->lock);
     	kfree(mem);
    -- 
    2.31.1

    _______________________________________________
    amd-gfx mailing list
    amd-gfx@lists.freedesktop.org
    https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&amp;data=04%7C01%7Coak.zeng%40amd.com%7Ca14e8f1d4ba6450b5f1308d9052e630b%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637546519053906547%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=AD%2FnbE6kQDFHLTr0kbzZ2sl3jKwuOqUKfpPEcPHwwfY%3D&amp;reserved=0

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: "Zeng, Oak" <Oak.Zeng@amd.com>
To: "Kuehling, Felix" <Felix.Kuehling@amd.com>,
	"amd-gfx@lists.freedesktop.org" <amd-gfx@lists.freedesktop.org>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH v2 08/10] drm/amdgpu: Add DMA mapping of GTT BOs
Date: Tue, 27 Apr 2021 00:35:44 +0000	[thread overview]
Message-ID: <41596C42-CA28-4912-A47A-741916D6A4D9@amd.com> (raw)
In-Reply-To: <20210422013058.6305-9-Felix.Kuehling@amd.com>



Regards,
Oak 

 

On 2021-04-21, 9:31 PM, "amd-gfx on behalf of Felix Kuehling" <amd-gfx-bounces@lists.freedesktop.org on behalf of Felix.Kuehling@amd.com> wrote:

    Use DMABufs with dynamic attachment to DMA-map GTT BOs on other GPUs.

    Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
    ---
     drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h    |  2 +
     .../gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c  | 76 ++++++++++++++++++-
     2 files changed, 77 insertions(+), 1 deletion(-)

    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
    index 63668433f5a6..b706e5a54782 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
    @@ -41,6 +41,7 @@ struct amdgpu_device;
     enum kfd_mem_attachment_type {
     	KFD_MEM_ATT_SHARED,	/* Share kgd_mem->bo or another attachment's */
     	KFD_MEM_ATT_USERPTR,	/* SG bo to DMA map pages from a userptr bo */
    +	KFD_MEM_ATT_DMABUF,	/* DMAbuf to DMA map TTM BOs */
     };

     struct kfd_mem_attachment {
    @@ -56,6 +57,7 @@ struct kfd_mem_attachment {
     struct kgd_mem {
     	struct mutex lock;
     	struct amdgpu_bo *bo;
    +	struct dma_buf *dmabuf;
     	struct list_head attachments;
     	/* protected by amdkfd_process_info.lock */
     	struct ttm_validate_buffer validate_list;
    diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
    index 9eeedd0c7920..18a1f9222a59 100644
    --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
    +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
    @@ -524,6 +524,16 @@ kfd_mem_dmamap_userptr(struct kgd_mem *mem,
     	return ret;
     }

    +static int
    +kfd_mem_dmamap_dmabuf(struct kfd_mem_attachment *attachment)
    +{
    +	struct ttm_operation_ctx ctx = {.interruptible = true};
    +	struct amdgpu_bo *bo = attachment->bo_va->base.bo;
    +
    +	amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_GTT);
    +	return ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
How does this work? The function name says this is dma mapping a buffer but from the implementation, it is just a placement and validation
    +}
    +
     static int
     kfd_mem_dmamap_attachment(struct kgd_mem *mem,
     			  struct kfd_mem_attachment *attachment)
    @@ -533,6 +543,8 @@ kfd_mem_dmamap_attachment(struct kgd_mem *mem,
     		return 0;
     	case KFD_MEM_ATT_USERPTR:
     		return kfd_mem_dmamap_userptr(mem, attachment);
    +	case KFD_MEM_ATT_DMABUF:
    +		return kfd_mem_dmamap_dmabuf(attachment);
     	default:
     		WARN_ON_ONCE(1);
     	}
    @@ -562,6 +574,19 @@ kfd_mem_dmaunmap_userptr(struct kgd_mem *mem,
     	ttm->sg = NULL;
     }

    +static void
    +kfd_mem_dmaunmap_dmabuf(struct kfd_mem_attachment *attachment)
    +{
    +	struct ttm_operation_ctx ctx = {.interruptible = true};
    +	struct amdgpu_bo *bo = attachment->bo_va->base.bo;
    +
    +	amdgpu_bo_placement_from_domain(bo, AMDGPU_GEM_DOMAIN_CPU);
    +	ttm_bo_validate(&bo->tbo, &bo->placement, &ctx);
    +	/* FIXME: This does not guarantee that amdgpu_ttm_tt_unpopulate is
    +	 * called
    +	 */
    +}
    +
     static void
     kfd_mem_dmaunmap_attachment(struct kgd_mem *mem,
     			    struct kfd_mem_attachment *attachment)
    @@ -572,6 +597,9 @@ kfd_mem_dmaunmap_attachment(struct kgd_mem *mem,
     	case KFD_MEM_ATT_USERPTR:
     		kfd_mem_dmaunmap_userptr(mem, attachment);
     		break;
    +	case KFD_MEM_ATT_DMABUF:
    +		kfd_mem_dmaunmap_dmabuf(attachment);
    +		break;
     	default:
     		WARN_ON_ONCE(1);
     	}
    @@ -605,6 +633,38 @@ kfd_mem_attach_userptr(struct amdgpu_device *adev, struct kgd_mem *mem,
     	return 0;
     }

    +static int
    +kfd_mem_attach_dmabuf(struct amdgpu_device *adev, struct kgd_mem *mem,
    +		      struct amdgpu_bo **bo)
    +{
    +	struct drm_gem_object *gobj;
    +
    +	if (!mem->dmabuf) {
    +		mem->dmabuf = amdgpu_gem_prime_export(&mem->bo->tbo.base,
    +			mem->alloc_flags & KFD_IOC_ALLOC_MEM_FLAGS_WRITABLE ?
    +				DRM_RDWR : 0);
    +		if (IS_ERR(mem->dmabuf)) {
    +			mem->dmabuf = NULL;
    +			return PTR_ERR(mem->dmabuf);
    +		}
    +	}
    +
    +	gobj = amdgpu_gem_prime_import(&adev->ddev, mem->dmabuf);
    +	if (IS_ERR(gobj))
    +		return PTR_ERR(gobj);
    +
    +	/* Import takes an extra reference on the dmabuf. Drop it now to
    +	 * avoid leaking it. We only need the one reference in
    +	 * kgd_mem->dmabuf.
    +	 */
    +	dma_buf_put(mem->dmabuf);
    +
    +	*bo = gem_to_amdgpu_bo(gobj);
    +	(*bo)->parent = amdgpu_bo_ref(mem->bo);
    +
    +	return 0;
    +}
    +
     /* kfd_mem_attach - Add a BO to a VM
      *
      * Everything that needs to bo done only once when a BO is first added
    @@ -662,8 +722,20 @@ static int kfd_mem_attach(struct amdgpu_device *adev, struct kgd_mem *mem,
     			ret = kfd_mem_attach_userptr(adev, mem, &bo[i]);
     			if (ret)
     				goto unwind;
    +		} else if (mem->domain == AMDGPU_GEM_DOMAIN_GTT &&
    +			   mem->bo->tbo.type != ttm_bo_type_sg) {
    +			/* GTT BOs use DMA-mapping ability of dynamic-attach
    +			 * DMA bufs. TODO: The same should work for VRAM on
    +			 * large-BAR GPUs.
    +			 */
    +			attachment[i]->type = KFD_MEM_ATT_DMABUF;
    +			ret = kfd_mem_attach_dmabuf(adev, mem, &bo[i]);
    +			if (ret)
    +				goto unwind;
     		} else {
    -			/* FIXME: Need to DMA-map other BO types */
    +			/* FIXME: Need to DMA-map other BO types:
    +			 * large-BAR VRAM, doorbells, MMIO remap
    +			 */
     			attachment[i]->type = KFD_MEM_ATT_SHARED;
     			bo[i] = mem->bo;
     			drm_gem_object_get(&bo[i]->tbo.base);
    @@ -1522,6 +1594,8 @@ int amdgpu_amdkfd_gpuvm_free_memory_of_gpu(

     	/* Free the BO*/
     	drm_vma_node_revoke(&mem->bo->tbo.base.vma_node, drm_priv);
    +	if (mem->dmabuf)
    +		dma_buf_put(mem->dmabuf);
     	drm_gem_object_put(&mem->bo->tbo.base);
     	mutex_destroy(&mem->lock);
     	kfree(mem);
    -- 
    2.31.1

    _______________________________________________
    amd-gfx mailing list
    amd-gfx@lists.freedesktop.org
    https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.freedesktop.org%2Fmailman%2Flistinfo%2Famd-gfx&amp;data=04%7C01%7Coak.zeng%40amd.com%7Ca14e8f1d4ba6450b5f1308d9052e630b%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637546519053906547%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;sdata=AD%2FnbE6kQDFHLTr0kbzZ2sl3jKwuOqUKfpPEcPHwwfY%3D&amp;reserved=0

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

  reply	other threads:[~2021-04-27  0:35 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-22  1:30 [PATCH v2 00/10] Implement multi-GPU DMA mappings for KFD Felix Kuehling
2021-04-22  1:30 ` Felix Kuehling
2021-04-22  1:30 ` [PATCH v2 01/10] rock-dbg_defconfig: Enable Intel IOMMU Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-04-22  1:30 ` [PATCH v2 02/10] drm/amdgpu: Rename kfd_bo_va_list to kfd_mem_attachment Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-05-10 22:00   ` Errabolu, Ramesh
2021-05-10 22:00     ` Errabolu, Ramesh
2021-04-22  1:30 ` [PATCH v2 03/10] drm/amdgpu: Keep a bo-reference per-attachment Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-05-10 22:00   ` Errabolu, Ramesh
2021-05-10 22:00     ` Errabolu, Ramesh
2021-04-22  1:30 ` [PATCH v2 04/10] drm/amdgpu: Simplify AQL queue mapping Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-04-23  1:33   ` Zeng, Oak
2021-04-23  1:33     ` Zeng, Oak
2021-04-23  7:23     ` Felix Kuehling
2021-04-23  7:23       ` Felix Kuehling
2021-05-10 22:03       ` Errabolu, Ramesh
2021-05-10 22:03         ` Errabolu, Ramesh
2021-04-22  1:30 ` [PATCH v2 05/10] drm/amdgpu: Add multi-GPU DMA mapping helpers Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-04-27  0:09   ` Zeng, Oak
2021-04-27  0:09     ` Zeng, Oak
2021-04-27  3:41     ` Felix Kuehling
2021-04-27  3:41       ` Felix Kuehling
2021-05-10 22:05       ` Errabolu, Ramesh
2021-05-10 22:05         ` Errabolu, Ramesh
2021-04-22  1:30 ` [PATCH v2 06/10] drm/amdgpu: DMA map/unmap when updating GPU mappings Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-04-27  0:23   ` Zeng, Oak
2021-04-27  0:23     ` Zeng, Oak
2021-04-27  3:47     ` Felix Kuehling
2021-04-27  3:47       ` Felix Kuehling
2021-05-10 22:06       ` Errabolu, Ramesh
2021-05-10 22:06         ` Errabolu, Ramesh
2021-04-22  1:30 ` [PATCH v2 07/10] drm/amdgpu: Move kfd_mem_attach outside reservation Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-05-10 22:06   ` Errabolu, Ramesh
2021-05-10 22:06     ` Errabolu, Ramesh
2021-04-22  1:30 ` [PATCH v2 08/10] drm/amdgpu: Add DMA mapping of GTT BOs Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-04-27  0:35   ` Zeng, Oak [this message]
2021-04-27  0:35     ` Zeng, Oak
2021-04-27  3:56     ` Felix Kuehling
2021-04-27  3:56       ` Felix Kuehling
2021-04-27 14:29       ` Zeng, Oak
2021-04-27 14:29         ` Zeng, Oak
2021-04-27 15:08         ` Felix Kuehling
2021-04-27 15:08           ` Felix Kuehling
2021-05-10 22:07           ` Errabolu, Ramesh
2021-05-10 22:07             ` Errabolu, Ramesh
2021-04-22  1:30 ` [PATCH v2 09/10] drm/ttm: Don't count pages in SG BOs against pages_limit Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-05-10 22:08   ` Errabolu, Ramesh
2021-05-10 22:08     ` Errabolu, Ramesh
2021-04-22  1:30 ` [PATCH v2 10/10] drm/amdgpu: Move dmabuf attach/detach to backend_(un)bind Felix Kuehling
2021-04-22  1:30   ` Felix Kuehling
2021-04-22 11:20   ` Christian König
2021-04-22 11:20     ` Christian König
2021-05-10 22:09     ` Errabolu, Ramesh
2021-05-10 22:09       ` Errabolu, Ramesh
2021-04-27 15:16 ` [PATCH v2 00/10] Implement multi-GPU DMA mappings for KFD Zeng, Oak
2021-04-27 15:16   ` Zeng, Oak

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=41596C42-CA28-4912-A47A-741916D6A4D9@amd.com \
    --to=oak.zeng@amd.com \
    --cc=Felix.Kuehling@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=dri-devel@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.