Name
struct dma_buf_attachment —
holds device-buffer attachment data
Synopsis
struct dma_buf_attachment {
struct dma_buf * dmabuf;
struct device * dev;
struct list_head node;
void * priv;
};
Members
- dmabuf
buffer for this attachment.
- dev
device attached to the buffer.
- node
list of dma_buf_attachment.
- priv
exporter specific attachment data.
Description
This structure holds the attachment information between the dma_buf buffer
and its user device(s). The list contains one attachment struct per device
attached to the buffer.