]> Pileus Git - ~andy/linux/commitdiff
staging: zcache: fix zcache writeback in debugfs
authorWanpeng Li <liwanp@linux.vnet.ibm.com>
Tue, 2 Apr 2013 02:46:17 +0000 (10:46 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 2 Apr 2013 19:55:37 +0000 (12:55 -0700)
commit 9c0ad59ef ("zcache/debug: Use an array to initialize/use debugfs attributes")
use an array to initialize/use debugfs attributes, .name = #x, .val = &zcache_##x.
For zcache writeback, this commit set .name = zcache_outstanding_writeback_pages and
.name = zcache_writtenback_pages seperately, however, corresponding .val =
&zcache_zcache_outstanding_writeback_pages and .val = &zcache_zcache_writtenback_pages,
which are not correct.

Signed-off-by: Wanpeng Li <liwanp@linux.vnet.ibm.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/zcache/debug.c

index 254dada16ea0f3cf7343b63612b1ba5421526a4b..d2d1fdfd6ca46995215c2b2da96036656304625b 100644 (file)
@@ -31,8 +31,8 @@ static struct debug_entry {
        ATTR(eph_nonactive_puts_ignored),
        ATTR(pers_nonactive_puts_ignored),
 #ifdef CONFIG_ZCACHE_WRITEBACK
-       ATTR(zcache_outstanding_writeback_pages),
-       ATTR(zcache_writtenback_pages),
+       ATTR(outstanding_writeback_pages),
+       ATTR(writtenback_pages),
 #endif
 };
 #undef ATTR