'\" t .\" Title: struct dma_buf_export_info .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] .\" Generator: DocBook XSL Stylesheets v1.78.1 .\" Date: January 2017 .\" Manual: Device drivers infrastructure .\" Source: Kernel Hackers Manual 4.8.15 .\" Language: English .\" .TH "STRUCT DMA_BUF_EXPOR" "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_export_info \- holds information needed to export a dma_buf .SH "SYNOPSIS" .sp .nf struct dma_buf_export_info { const char * exp_name; struct module * owner; const struct dma_buf_ops * ops; size_t size; int flags; struct reservation_object * resv; void * priv; }; .fi .SH "MEMBERS" .PP exp_name .RS 4 name of the exporter \- useful for debugging\&. .RE .PP owner .RS 4 pointer to exporter module \- used for refcounting kernel module .RE .PP ops .RS 4 Attach allocator\-defined dma buf ops to the new buffer .RE .PP size .RS 4 Size of the buffer .RE .PP flags .RS 4 mode flags for the file .RE .PP resv .RS 4 reservation\-object, NULL to allocate default one .RE .PP priv .RS 4 Attach private data of allocator to this buffer .RE .SH "DESCRIPTION" .PP This structure holds the information required to export the buffer\&. Used with \fBdma_buf_export\fR only\&. .SH "COPYRIGHT" .br