Prev: vfs: Add open by file handle support
Next: rwsem: use single atomic update for sem count when waking up readers.
From: Peter Hüwe on 12 May 2010 20:10 From: Peter Huewe <peterhuewe(a)gmx.de>: This patch fixes a build-failure[1] by adding the missing include file (linux/kernel.h) for printk and KERN_INFO. Signed-off-by: Peter Huewe <peterhuewe(a)gmx.de> --- KernelVersion: linux-next 20100512 References: [1] http://kisskb.ellerman.id.au/kisskb/buildresult/2601239/ lib/atomic64_test.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/atomic64_test.c b/lib/atomic64_test.c index 65e482c..9087d71 100644 --- a/lib/atomic64_test.c +++ b/lib/atomic64_test.c @@ -9,6 +9,7 @@ * (at your option) any later version. */ #include <linux/init.h> +#include <linux/kernel.h> #include <asm/atomic.h> #define INIT(c) do { atomic64_set(&v, c); r = c; } while (0) -- 1.6.4.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |