[PATCH 2/2] kmemtrace: fix build breakage inlib/decompress_inflate.c

From: Pekka Enberg
Date: Tue Mar 24 2009 - 05:14:05 EST


From: Pekka Enberg <penberg@xxxxxxxxxxxxxx>

Impact: fix build

This patch fixes up the following build breakage caused by commit
e251ea2fa52321009940fad02238ef1c369531ae ("rcu: don't include unnecessary
headers, allow kmemtrace w/ tracepoints"):

CC lib/decompress_inflate.o
lib/decompress_inflate.c: In function âgunzipâ:
lib/decompress_inflate.c:45: error: implicit declaration of function âkmallocâ
lib/decompress_inflate.c:45: warning: assignment makes pointer from integer without a cast
lib/decompress_inflate.c:57: warning: assignment makes pointer from integer without a cast
lib/decompress_inflate.c:65: warning: assignment makes pointer from integer without a cast
lib/decompress_inflate.c:71: warning: assignment makes pointer from integer without a cast
lib/decompress_inflate.c:154: error: implicit declaration of function âkfreeâ
make[1]: *** [lib/decompress_inflate.o] Error 1
make: *** [lib/] Error 2

Cc: Eduard - Gabriel Munteanu <eduard.munteanu@xxxxxxxxxxx>
Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxxxxxx>
---
lib/decompress_inflate.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/lib/decompress_inflate.c b/lib/decompress_inflate.c
index 839a329..e36b296 100644
--- a/lib/decompress_inflate.c
+++ b/lib/decompress_inflate.c
@@ -23,6 +23,7 @@
#endif /* STATIC */

#include <linux/decompress/mm.h>
+#include <linux/slab.h>

#define INBUF_LEN (16*1024)

--
1.5.4.3



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/