Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dma-buf: Couple of documentation typo fixes

Fix a couple of typos: "as" -> "has" and "int" -> "in".

Signed-off-by: Gal Pressman <galpress@amazon.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20200420074115.23931-1-galpress@amazon.com

authored by

Gal Pressman and committed by
Daniel Vetter
776d5882 871c6015

+2 -2
+2 -2
Documentation/driver-api/dma-buf.rst
··· 11 11 The three main components of this are: (1) dma-buf, representing a 12 12 sg_table and exposed to userspace as a file descriptor to allow passing 13 13 between devices, (2) fence, which provides a mechanism to signal when 14 - one device as finished access, and (3) reservation, which manages the 14 + one device has finished access, and (3) reservation, which manages the 15 15 shared or exclusive fence(s) associated with the buffer. 16 16 17 17 Shared DMA Buffers ··· 31 31 - implements and manages operations in :c:type:`struct dma_buf_ops 32 32 <dma_buf_ops>` for the buffer, 33 33 - allows other users to share the buffer by using dma_buf sharing APIs, 34 - - manages the details of buffer allocation, wrapped int a :c:type:`struct 34 + - manages the details of buffer allocation, wrapped in a :c:type:`struct 35 35 dma_buf <dma_buf>`, 36 36 - decides about the actual backing storage where this allocation happens, 37 37 - and takes care of any migration of scatterlist - for all (shared) users of