diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.debug | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 12327b2bb785..43173c4e0ade 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -790,6 +790,21 @@ config DEBUG_BLOCK_EXT_DEVT | |||
790 | 790 | ||
791 | Say N if you are unsure. | 791 | Say N if you are unsure. |
792 | 792 | ||
793 | config DEBUG_FORCE_WEAK_PER_CPU | ||
794 | bool "Force weak per-cpu definitions" | ||
795 | depends on DEBUG_KERNEL | ||
796 | help | ||
797 | s390 and alpha require percpu variables in modules to be | ||
798 | defined weak to work around addressing range issue which | ||
799 | puts the following two restrictions on percpu variable | ||
800 | definitions. | ||
801 | |||
802 | 1. percpu symbols must be unique whether static or not | ||
803 | 2. percpu variables can't be defined inside a function | ||
804 | |||
805 | To ensure that generic code follows the above rules, this | ||
806 | option forces all percpu variables to be defined as weak. | ||
807 | |||
793 | config LKDTM | 808 | config LKDTM |
794 | tristate "Linux Kernel Dump Test Tool Module" | 809 | tristate "Linux Kernel Dump Test Tool Module" |
795 | depends on DEBUG_KERNEL | 810 | depends on DEBUG_KERNEL |