diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 16:41:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-03-30 16:41:00 -0400 |
commit | 712b0006bf3a9ed0b14a56c3291975e582127766 (patch) | |
tree | aff33e947673137ae21734321e1f036600297223 /lib/Kconfig.debug | |
parent | e1c502482853f84606928f5a2f2eb6da1993cda1 (diff) | |
parent | b0d44c0dbbd52effb731b1c0af9afd56215c48de (diff) |
Merge branch 'iommu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'iommu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: (60 commits)
dma-debug: make memory range checks more consistent
dma-debug: warn of unmapping an invalid dma address
dma-debug: fix dma_debug_add_bus() definition for !CONFIG_DMA_API_DEBUG
dma-debug/x86: register pci bus for dma-debug leak detection
dma-debug: add a check dma memory leaks
dma-debug: add checks for kernel text and rodata
dma-debug: print stacktrace of mapping path on unmap error
dma-debug: Documentation update
dma-debug: x86 architecture bindings
dma-debug: add function to dump dma mappings
dma-debug: add checks for sync_single_sg_*
dma-debug: add checks for sync_single_range_*
dma-debug: add checks for sync_single_*
dma-debug: add checking for [alloc|free]_coherent
dma-debug: add add checking for map/unmap_sg
dma-debug: add checking for map/unmap_page/single
dma-debug: add core checking functions
dma-debug: add debugfs interface
dma-debug: add kernel command line parameters
dma-debug: add initialization code
...
Fix trivial conflicts due to whitespace changes in arch/x86/kernel/pci-nommu.c
Diffstat (limited to 'lib/Kconfig.debug')
-rw-r--r-- | lib/Kconfig.debug | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 0626fa4856e6..58bfe7e8faba 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -912,6 +912,17 @@ config DYNAMIC_DEBUG | |||
912 | 912 | ||
913 | See Documentation/dynamic-debug-howto.txt for additional information. | 913 | See Documentation/dynamic-debug-howto.txt for additional information. |
914 | 914 | ||
915 | config DMA_API_DEBUG | ||
916 | bool "Enable debugging of DMA-API usage" | ||
917 | depends on HAVE_DMA_API_DEBUG | ||
918 | help | ||
919 | Enable this option to debug the use of the DMA API by device drivers. | ||
920 | With this option you will be able to detect common bugs in device | ||
921 | drivers like double-freeing of DMA mappings or freeing mappings that | ||
922 | were never allocated. | ||
923 | This option causes a performance degredation. Use only if you want | ||
924 | to debug device drivers. If unsure, say N. | ||
925 | |||
915 | source "samples/Kconfig" | 926 | source "samples/Kconfig" |
916 | 927 | ||
917 | source "lib/Kconfig.kgdb" | 928 | source "lib/Kconfig.kgdb" |