1DMA_BUF_END_CPU_ACCE(9) Device drivers infrastructure DMA_BUF_END_CPU_ACCE(9)
2
3
4
6 dma_buf_end_cpu_access - Must be called after accessing a dma_buf from
7 the cpu in the kernel context. Calls end_cpu_access to allow
8 exporter-specific actions. Coherency is only guaranteed in the
9 specified range for the specified access direction.
10
12 void dma_buf_end_cpu_access(struct dma_buf * dmabuf, size_t start,
13 size_t len,
14 enum dma_data_direction direction);
15
17 dmabuf
18 [in] buffer to complete cpu access for.
19
20 start
21 [in] start of range for cpu access.
22
23 len
24 [in] length of range for cpu access.
25
26 direction
27 [in] length of range for cpu access.
28
30 This call must always succeed.
31
33Kernel Hackers Manual 2.6. June 2019 DMA_BUF_END_CPU_ACCE(9)