mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-28 19:06:51 +01:00
After commit fcf463b92a ("types: move phys_vec definition to common header"),
we can use the shared phys_vec type instead of the DMABUF‑specific
dma_buf_phys_vec, which duplicated the same structure and semantics.
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Link: https://lore.kernel.org/r/20260107-convert-to-pvec-v1-1-6e3ab8079708@nvidia.com
Signed-off-by: Alex Williamson <alex@shazbot.org>
18 lines
515 B
C
18 lines
515 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* DMA BUF Mapping Helpers
|
|
*
|
|
*/
|
|
#ifndef __DMA_BUF_MAPPING_H__
|
|
#define __DMA_BUF_MAPPING_H__
|
|
#include <linux/dma-buf.h>
|
|
|
|
struct sg_table *dma_buf_phys_vec_to_sgt(struct dma_buf_attachment *attach,
|
|
struct p2pdma_provider *provider,
|
|
struct phys_vec *phys_vec,
|
|
size_t nr_ranges, size_t size,
|
|
enum dma_data_direction dir);
|
|
void dma_buf_free_sgt(struct dma_buf_attachment *attach, struct sg_table *sgt,
|
|
enum dma_data_direction dir);
|
|
#endif
|