'\" t .\" Title: struct dma_buf_attachment .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: January 2017 .\" Manual: Device drivers infrastructure .\" Source: Kernel Hackers Manual 4.8.15 .\" Language: English .\" .TH "STRUCT DMA_BUF_ATTAC" "9" "January 2017" "Kernel Hackers Manual 4\&.8\&." "Device drivers infrastructure" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" struct_dma_buf_attachment \- holds device\-buffer attachment data .SH "SYNOPSIS" .sp .nf struct dma_buf_attachment { struct dma_buf * dmabuf; struct device * dev; struct list_head node; void * priv; }; .fi .SH "MEMBERS" .PP dmabuf .RS 4 buffer for this attachment\&. .RE .PP dev .RS 4 device attached to the buffer\&. .RE .PP node .RS 4 list of dma_buf_attachment\&. .RE .PP priv .RS 4 exporter specific attachment data\&. .RE .SH "DESCRIPTION" .PP 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\&. .SH "COPYRIGHT" .br