Commit 67e2cba4 authored by Konrad Rzeszutek Wilk's avatar Konrad Rzeszutek Wilk Committed by Greg Kroah-Hartman

zcache/debug: Coalesce all debug under CONFIG_ZCACHE_DEBUG

and also define this extra attribute in the Kconfig entry.
Acked-by: default avatarDan Magenheimer <dan.magenheimer@oracle.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1dba904c
...@@ -10,6 +10,14 @@ config ZCACHE ...@@ -10,6 +10,14 @@ config ZCACHE
memory to store clean page cache pages and swap in RAM, memory to store clean page cache pages and swap in RAM,
providing a noticeable reduction in disk I/O. 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 config RAMSTER
bool "Cross-machine RAM capacity sharing, aka peer-to-peer tmem" bool "Cross-machine RAM capacity sharing, aka peer-to-peer tmem"
depends on CONFIGFS_FS=y && SYSFS=y && !HIGHMEM && ZCACHE=y depends on CONFIGFS_FS=y && SYSFS=y && !HIGHMEM && ZCACHE=y
......
#include <linux/atomic.h> #include <linux/atomic.h>
#include "debug.h" #include "debug.h"
#ifdef CONFIG_DEBUG_FS #ifdef CONFIG_ZCACHE_DEBUG
#include <linux/debugfs.h> #include <linux/debugfs.h>
#define ATTR(x) { .name = #x, .val = &zcache_##x, } #define ATTR(x) { .name = #x, .val = &zcache_##x, }
......
...@@ -306,7 +306,7 @@ static void zcache_free_page(struct page *page) ...@@ -306,7 +306,7 @@ static void zcache_free_page(struct page *page)
max_pageframes = curr_pageframes; max_pageframes = curr_pageframes;
if (curr_pageframes < min_pageframes) if (curr_pageframes < min_pageframes)
min_pageframes = curr_pageframes; min_pageframes = curr_pageframes;
#ifdef ZCACHE_DEBUG #ifdef CONFIG_ZCACHE_DEBUG
if (curr_pageframes > 2L || curr_pageframes < -2L) { if (curr_pageframes > 2L || curr_pageframes < -2L) {
/* pr_info here */ /* pr_info here */
} }
...@@ -1774,7 +1774,7 @@ static int __init zcache_init(void) ...@@ -1774,7 +1774,7 @@ static int __init zcache_init(void)
old_ops = zcache_cleancache_register_ops(); old_ops = zcache_cleancache_register_ops();
pr_info("%s: cleancache enabled using kernel transcendent " pr_info("%s: cleancache enabled using kernel transcendent "
"memory and compression buddies\n", namestr); "memory and compression buddies\n", namestr);
#ifdef ZCACHE_DEBUG #ifdef CONFIG_ZCACHE_DEBUG
pr_info("%s: cleancache: ignorenonactive = %d\n", pr_info("%s: cleancache: ignorenonactive = %d\n",
namestr, !disable_cleancache_ignore_nonactive); namestr, !disable_cleancache_ignore_nonactive);
#endif #endif
...@@ -1789,7 +1789,7 @@ static int __init zcache_init(void) ...@@ -1789,7 +1789,7 @@ static int __init zcache_init(void)
frontswap_tmem_exclusive_gets(true); frontswap_tmem_exclusive_gets(true);
pr_info("%s: frontswap enabled using kernel transcendent " pr_info("%s: frontswap enabled using kernel transcendent "
"memory and compression buddies\n", namestr); "memory and compression buddies\n", namestr);
#ifdef ZCACHE_DEBUG #ifdef CONFIG_ZCACHE_DEBUG
pr_info("%s: frontswap: excl gets = %d active only = %d\n", pr_info("%s: frontswap: excl gets = %d active only = %d\n",
namestr, frontswap_has_exclusive_gets, namestr, frontswap_has_exclusive_gets,
!disable_frontswap_ignore_nonactive); !disable_frontswap_ignore_nonactive);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment