]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
zcache/debug: Coalesce all debug under CONFIG_ZCACHE_DEBUG
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Mon, 4 Mar 2013 18:18:20 +0000 (13:18 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 5 Mar 2013 08:43:10 +0000 (16:43 +0800)
and also define this extra attribute in the Kconfig entry.

Acked-by: Dan Magenheimer <dan.magenheimer@oracle.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/zcache/Kconfig
drivers/staging/zcache/debug.c
drivers/staging/zcache/zcache-main.c

index 73582705e8c5bc71081494a7e4481b7eb36d42e8..2da6cc444c7e50d4758ba84d36c9e9026699871e 100644 (file)
@@ -10,6 +10,14 @@ config ZCACHE
          memory to store clean page cache pages and swap in RAM,
          providing a noticeable reduction in disk I/O.
 
+config ZCACHE_DEBUG
+       bool "Enable debug statistics"
+       depends on DEBUG_FS && ZCACHE
+       default n
+       help
+         This is used to provide an debugfs directory with counters of
+         how zcache is doing. You probably want to set this to 'N'.
+
 config RAMSTER
        bool "Cross-machine RAM capacity sharing, aka peer-to-peer tmem"
        depends on CONFIGFS_FS=y && SYSFS=y && !HIGHMEM && ZCACHE=y
index cf19adc233236ce29740ee98d057cd16959d0977..e951c64a13dc7c46c0c70be09fe4d08efafe188e 100644 (file)
@@ -1,7 +1,7 @@
 #include <linux/atomic.h>
 #include "debug.h"
 
-#ifdef CONFIG_DEBUG_FS
+#ifdef CONFIG_ZCACHE_DEBUG
 #include <linux/debugfs.h>
 
 #define ATTR(x)  { .name = #x, .val = &zcache_##x, }
index 4b9ee7f0218fac307213c71b78b163ca21750fa5..7c0fda4106a084bceb274731de102959768210eb 100644 (file)
@@ -306,7 +306,7 @@ static void zcache_free_page(struct page *page)
                max_pageframes = curr_pageframes;
        if (curr_pageframes < min_pageframes)
                min_pageframes = curr_pageframes;
-#ifdef ZCACHE_DEBUG
+#ifdef CONFIG_ZCACHE_DEBUG
        if (curr_pageframes > 2L || curr_pageframes < -2L) {
                /* pr_info here */
        }
@@ -1774,7 +1774,7 @@ static int __init zcache_init(void)
                old_ops = zcache_cleancache_register_ops();
                pr_info("%s: cleancache enabled using kernel transcendent "
                        "memory and compression buddies\n", namestr);
-#ifdef ZCACHE_DEBUG
+#ifdef CONFIG_ZCACHE_DEBUG
                pr_info("%s: cleancache: ignorenonactive = %d\n",
                        namestr, !disable_cleancache_ignore_nonactive);
 #endif
@@ -1789,7 +1789,7 @@ static int __init zcache_init(void)
                        frontswap_tmem_exclusive_gets(true);
                pr_info("%s: frontswap enabled using kernel transcendent "
                        "memory and compression buddies\n", namestr);
-#ifdef ZCACHE_DEBUG
+#ifdef CONFIG_ZCACHE_DEBUG
                pr_info("%s: frontswap: excl gets = %d active only = %d\n",
                        namestr, frontswap_has_exclusive_gets,
                        !disable_frontswap_ignore_nonactive);