diff options
Diffstat (limited to 'lib/Kconfig.debug')
-rw-r--r-- | lib/Kconfig.debug | 50 |
1 files changed, 37 insertions, 13 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 6982094a7e74..dbf94a7d25a8 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -1556,17 +1556,6 @@ config PROVIDE_OHCI1394_DMA_INIT | |||
1556 | 1556 | ||
1557 | See Documentation/debugging-via-ohci1394.txt for more information. | 1557 | See Documentation/debugging-via-ohci1394.txt for more information. |
1558 | 1558 | ||
1559 | config FIREWIRE_OHCI_REMOTE_DMA | ||
1560 | bool "Remote debugging over FireWire with firewire-ohci" | ||
1561 | depends on FIREWIRE_OHCI | ||
1562 | help | ||
1563 | This option lets you use the FireWire bus for remote debugging | ||
1564 | with help of the firewire-ohci driver. It enables unfiltered | ||
1565 | remote DMA in firewire-ohci. | ||
1566 | See Documentation/debugging-via-ohci1394.txt for more information. | ||
1567 | |||
1568 | If unsure, say N. | ||
1569 | |||
1570 | config BUILD_DOCSRC | 1559 | config BUILD_DOCSRC |
1571 | bool "Build targets in Documentation/ tree" | 1560 | bool "Build targets in Documentation/ tree" |
1572 | depends on HEADERS_CHECK | 1561 | depends on HEADERS_CHECK |
@@ -1584,8 +1573,43 @@ config DMA_API_DEBUG | |||
1584 | With this option you will be able to detect common bugs in device | 1573 | With this option you will be able to detect common bugs in device |
1585 | drivers like double-freeing of DMA mappings or freeing mappings that | 1574 | drivers like double-freeing of DMA mappings or freeing mappings that |
1586 | were never allocated. | 1575 | were never allocated. |
1587 | This option causes a performance degredation. Use only if you want | 1576 | |
1588 | to debug device drivers. If unsure, say N. | 1577 | This also attempts to catch cases where a page owned by DMA is |
1578 | accessed by the cpu in a way that could cause data corruption. For | ||
1579 | example, this enables cow_user_page() to check that the source page is | ||
1580 | not undergoing DMA. | ||
1581 | |||
1582 | This option causes a performance degradation. Use only if you want to | ||
1583 | debug device drivers and dma interactions. | ||
1584 | |||
1585 | If unsure, say N. | ||
1586 | |||
1587 | config TEST_MODULE | ||
1588 | tristate "Test module loading with 'hello world' module" | ||
1589 | default n | ||
1590 | depends on m | ||
1591 | help | ||
1592 | This builds the "test_module" module that emits "Hello, world" | ||
1593 | on printk when loaded. It is designed to be used for basic | ||
1594 | evaluation of the module loading subsystem (for example when | ||
1595 | validating module verification). It lacks any extra dependencies, | ||
1596 | and will not normally be loaded by the system unless explicitly | ||
1597 | requested by name. | ||
1598 | |||
1599 | If unsure, say N. | ||
1600 | |||
1601 | config TEST_USER_COPY | ||
1602 | tristate "Test user/kernel boundary protections" | ||
1603 | default n | ||
1604 | depends on m | ||
1605 | help | ||
1606 | This builds the "test_user_copy" module that runs sanity checks | ||
1607 | on the copy_to/from_user infrastructure, making sure basic | ||
1608 | user/kernel boundary testing is working. If it fails to load, | ||
1609 | a regression has been detected in the user/kernel memory boundary | ||
1610 | protections. | ||
1611 | |||
1612 | If unsure, say N. | ||
1589 | 1613 | ||
1590 | source "samples/Kconfig" | 1614 | source "samples/Kconfig" |
1591 | 1615 | ||