staging: zcache/debug: compiler failure on PPC64 and revert commit.
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Thu, 7 Mar 2013 18:50:47 +0000 (13:50 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Mar 2013 23:17:30 +0000 (07:17 +0800)
On PPC64 we get this:
In file included from drivers/staging/zcache/debug.c:2:
drivers/staging/zcache/debug.h: In function 'dec_zcache_obj_count':
drivers/staging/zcache/debug.h:16: error: implicit declaration of function 'BUG_ON'

This simple patch adds the appropiate header file to finish
the compile and reverts
"staging: zcache: disable ZCACHE_DEBUG due to build error"
(5db5a20a50cfd078c78b13a988f237cca81aedc5)

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
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.h

index ad47b4b..2da6cc4 100644 (file)
@@ -13,7 +13,6 @@ config ZCACHE
 config ZCACHE_DEBUG
        bool "Enable debug statistics"
        depends on DEBUG_FS && ZCACHE
-       depends on BROKEN
        default n
        help
          This is used to provide an debugfs directory with counters of
index eef67db..4bbe49b 100644 (file)
@@ -1,3 +1,5 @@
+#include <linux/bug.h>
+
 #ifdef CONFIG_ZCACHE_DEBUG
 
 /* we try to keep these statistics SMP-consistent */