11cd3db01b
Documentation/DMA-API-HOWTO.txt: fix typo
...
Noted by Jesper
Cc: Jesper Juhl <jj@chaosbits.net >
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com >
Cc: Shuah Khan <shuah.khan@hp.com >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2013-02-27 19:10:23 -08:00
be62bc4100
Documentation/DMA-API-HOWTO.txt: minor grammar corrections
...
Signed-off-by: Shuah Khan <shuah.khan@hp.com >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2013-02-27 19:10:11 -08:00
8d7f62e6a7
Documentation DMA-API-HOWTO.txt Add dma mapping error check usage examples
...
Enhance the document to discuss the importance of dma
mapping error checks after dma_map_single() and
dma_map_page() calls. Also added usage examples that include
unmap examples in error paths when dma mapping error is
returned. Includes correct and incorrect usages to high
light some common mistakes in error paths especially when
dma mapping fails when more than one dma mapping call is
made.
Signed-off-by: Shuah Khan <shuah.khan@hp.com >
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com >
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com >
2012-10-24 17:07:43 +02:00
3f0fb4e85b
Documentation/DMA-API-HOWTO.txt: fix misleading example
...
See: DMA-API.txt, part Id, DMA_FROM_DEVICE description.
Signed-off-by: Michal Miroslaw <mirq-linux@rere.qmqm.pl >
Cc: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2011-07-26 16:49:45 -07:00
ce00f7feb0
Documentation: DMA-API-HOWTO.txt: rename ARCH_KMALLOC_MINALIGN to ARCH_DMA_MINALIGN
...
ARCH_KMALLOC_MINALIGN was renamed to ARCH_DMA_MINALIGN (the commit
a6eb9fe105 ).
ARCH_DMA_MINALIGN must be defined instead of ARCH_KMALLOC_MINALIGN to
ensure that kmalloc'ed buffer is DMA-safe.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2010-08-14 11:56:46 -07:00
c31e74c4c3
Documentation: DMA-API-HOWTO.txt: add multiple types of IOMMUs support
...
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2010-08-11 08:59:21 -07:00
2fd74e25df
Documentation/DMA-API-HOWTO: add ARCH_KMALLOC_MINALIGN description
...
Add ARCH_KMALLOC_MINALIGN description in "Platform Issues" section.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Cc: "David S. Miller" <davem@davemloft.net >
Cc: Matt Mackall <mpm@selenic.com >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2010-05-27 09:12:53 -07:00
4ae9ca825e
Documentation: move the error handling to the better place in DMA-API-HOWTO
...
Handing DMA mapping errors is essential. Let's put it in the more
appropriate place rather than the end of the doc.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2010-05-27 09:12:53 -07:00
b02de87161
Documentation: update scatterlist struct description in DMA-API-HOWTO
...
Now we have <asm-generic/scatterlist.h>. Architectures should use it
instead of inventing the own scatterlist struct. Let's update the
description.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2010-05-27 09:12:53 -07:00
7cdcc8e476
Documentation: add SCSI drivers' mapping error handling to DMA-API-HOWTO
...
Add the concrete DMA mapping error handling for SCSI drivers on the
queuecommand path.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Cc: James Bottomley <James.Bottomley@suse.de >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2010-05-27 09:12:53 -07:00
f671be04dc
Documentation: add networking driver's mapping error handling to DMA-API-HOWTO
...
Adds the concrete DMA mapping error handling for Networking drivers on the
transmit path.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Acked-by: David S. Miller <davem@davemloft.net >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2010-05-27 09:12:52 -07:00
a33f32244d
Documentation/: it's -> its where appropriate
...
Fix obvious cases of "it's" being used when "its" was meant.
Signed-off-by: Francis Galiegue <fgaliegue@gmail.com >
Acked-by: Randy Dunlap <rdunlap@xenotime.net >
Signed-off-by: Jiri Kosina <jkosina@suse.cz >
2010-04-23 02:09:52 +02:00
5e07c2c730
Documentation: rename PCI/PCI-DMA-mapping.txt to DMA-API-HOWTO.txt
...
This patch renames PCI/PCI-DMA-mapping.txt to DMA-API-HOWTO.txt.
The commit 51e7364ef2 "Documentation: rename
PCI-DMA-mapping.txt to DMA-API-HOWTO.txt" was supposed to do this but it
didn't.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp >
Acked-by: Randy Dunlap <randy.dunlap@oracle.com >
Signed-off-by: Andrew Morton <akpm@linux-foundation.org >
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org >
2010-03-24 16:31:20 -07:00