Trying 2.6.34-rc5 on my minimal-config Ultra 1 gave me this error: CC arch/sparc/kernel/irq_64.o arch/sparc/kernel/irq_64.c: In function 'sun4v_build_virq': arch/sparc/kernel/irq_64.c:657: error: implicit declaration of function 'kmemleak_not_leak' make[1]: *** [arch/sparc/kernel/irq_64.o] Error 1 Fix it by including kmemleak.h for the inline function. Signed-off-by: Meelis Roos <mroos@xxxxxxxx> diff --git a/arch/sparc/kernel/irq_64.c b/arch/sparc/kernel/irq_64.c index 454ce3a..2b04c72 100644 --- a/arch/sparc/kernel/irq_64.c +++ b/arch/sparc/kernel/irq_64.c @@ -22,6 +22,7 @@ #include <linux/seq_file.h> #include <linux/ftrace.h> #include <linux/irq.h> +#include <linux/kmemleak.h> #include <asm/ptrace.h> #include <asm/processor.h> -- Meelis Roos (mroos@xxxxxxxx) -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html