diff options
-rw-r--r-- | Documentation/vm/kmemtrace.txt | 2 | ||||
-rw-r--r-- | lib/Kconfig.debug | 8 | ||||
-rw-r--r-- | mm/kmemtrace.c | 8 |
3 files changed, 4 insertions, 14 deletions
diff --git a/Documentation/vm/kmemtrace.txt b/Documentation/vm/kmemtrace.txt index f656cac3558c..a956d9b7f943 100644 --- a/Documentation/vm/kmemtrace.txt +++ b/Documentation/vm/kmemtrace.txt | |||
@@ -61,7 +61,7 @@ III. Quick usage guide | |||
61 | ====================== | 61 | ====================== |
62 | 62 | ||
63 | 1) Get a kernel that supports kmemtrace and build it accordingly (i.e. enable | 63 | 1) Get a kernel that supports kmemtrace and build it accordingly (i.e. enable |
64 | CONFIG_KMEMTRACE and CONFIG_KMEMTRACE_DEFAULT_ENABLED). | 64 | CONFIG_KMEMTRACE). |
65 | 65 | ||
66 | 2) Get the userspace tool and build it: | 66 | 2) Get the userspace tool and build it: |
67 | $ git-clone git://repo.or.cz/kmemtrace-user.git # current repository | 67 | $ git-clone git://repo.or.cz/kmemtrace-user.git # current repository |
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index 78d669b461d2..b5417e23ba94 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug | |||
@@ -823,14 +823,6 @@ config KMEMTRACE | |||
823 | 823 | ||
824 | If unsure, say N. | 824 | If unsure, say N. |
825 | 825 | ||
826 | config KMEMTRACE_DEFAULT_ENABLED | ||
827 | bool "Enabled by default at boot" | ||
828 | depends on KMEMTRACE | ||
829 | help | ||
830 | Say Y here to enable kmemtrace at boot-time by default. Whatever | ||
831 | the choice, the behavior can be overridden by a kernel parameter, | ||
832 | as described in documentation. | ||
833 | |||
834 | menuconfig BUILD_DOCSRC | 826 | menuconfig BUILD_DOCSRC |
835 | bool "Build targets in Documentation/ tree" | 827 | bool "Build targets in Documentation/ tree" |
836 | depends on HEADERS_CHECK | 828 | depends on HEADERS_CHECK |
diff --git a/mm/kmemtrace.c b/mm/kmemtrace.c index f7a49c077df2..f7704f52c4b1 100644 --- a/mm/kmemtrace.c +++ b/mm/kmemtrace.c | |||
@@ -19,11 +19,9 @@ static struct rchan *kmemtrace_chan; | |||
19 | static u32 kmemtrace_buf_overruns; | 19 | static u32 kmemtrace_buf_overruns; |
20 | 20 | ||
21 | static unsigned int kmemtrace_n_subbufs; | 21 | static unsigned int kmemtrace_n_subbufs; |
22 | #ifdef CONFIG_KMEMTRACE_DEFAULT_ENABLED | 22 | |
23 | static unsigned int kmemtrace_enabled = 1; | 23 | /* disabled by default */ |
24 | #else | 24 | static unsigned int kmemtrace_enabled; |
25 | static unsigned int kmemtrace_enabled = 0; | ||
26 | #endif | ||
27 | 25 | ||
28 | /* | 26 | /* |
29 | * The sequence number is used for reordering kmemtrace packets | 27 | * The sequence number is used for reordering kmemtrace packets |