UPSTREAM: dma-buf: add initial vmap documentation
authorDave Airlie <airlied@redhat.com>
Tue, 22 May 2012 12:34:38 +0000 (13:34 +0100)
committerSubash Patel <subash.rp@samsung.com>
Thu, 14 Jun 2012 22:12:11 +0000 (15:12 -0700)
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
(cherry picked from commit b25b086d23eb852bf3cfdeb60409b4967ebb3c0c)

Signed-off-by: Subash Patel <subash.rp@samsung.com>
Documentation/dma-buf-sharing.txt

index 5ff4d2b..ad86fb8 100644 (file)
@@ -293,6 +293,17 @@ Access to a dma_buf from the kernel context involves three steps:
    Note that these calls need to always succeed. The exporter needs to complete
    any preparations that might fail in begin_cpu_access.
 
+   For some cases the overhead of kmap can be too high, a vmap interface
+   is introduced. This interface should be used very carefully, as vmalloc
+   space is a limited resources on many architectures.
+
+   Interfaces:
+      void *dma_buf_vmap(struct dma_buf *dmabuf)
+      void dma_buf_vunmap(struct dma_buf *dmabuf, void *vaddr)
+
+   The vmap call can fail if there is no vmap support in the exporter, or if it
+   runs out of vmalloc space. Fallback to kmap should be implemented.
+
 3. Finish access
 
    When the importer is done accessing the range specified in begin_cpu_access,